Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp718512imm; Thu, 13 Sep 2018 06:46:52 -0700 (PDT) X-Google-Smtp-Source: ANB0VdYxcsLEeozvfMED9O+Y7NwxUAXKZjcAujA29d/zPRXd/PhPqxaApr/HHlr4pfzVxPgIbaXr X-Received: by 2002:a62:3703:: with SMTP id e3-v6mr7536064pfa.117.1536846412086; Thu, 13 Sep 2018 06:46:52 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1536846412; cv=none; d=google.com; s=arc-20160816; b=0DdURU+/JKzHtMDnOOoOgsWzV29tvYLMxBACeh8ApGpavbAUqd76DahXHL+WpHipRO IdBlQu5y31rfhMV+ciirpO3kqfruxftz9jYDNUtZYGNSf2fpruWbKMF5yaD/hbk6LTwM C01QgcMRnL78XkrQDsnmcMpk34gUa41wGOXlYV0zQfjvvTt6iehNMi0EKlV7mEwd+nUn tgcY8I+ElVZEPRyqHV26hyVwFtRBRe1AKE8/BdOsEHdeGCJFaaB2zESjR3vBzl7IJJhZ 9ul1Y2lzkDZrGTZaHSXohtABt/Hr0KCAnXTcjq50PEIxzli1OqgeAmRof5yJS8E/pT98 2utw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :user-agent:references:in-reply-to:message-id:date:subject:cc:to :from; bh=J9kw9gouNgQlA/Reo8lrzfmNjVsNOS2+tcdlKSRyhtg=; b=nGIO1u9V8gTgpxBHJapkPMdvpySiQ6cd1I8wKHZL6EWfiLx7/lGdP4jgIqVpe+CRc1 Me6ItzfivlptetWePZsqOqLBFeslXrfw6OC/wsoinNrm0btI4z2f5fR4xq9cHPJbg67t xc/B+5VVtlerdVLQhSx3Gvo/K+bjmPGANJkQSf4RqNRlygRM6zWNZWqWl6DkpyNehZcT 91nD3XmunrS7tUqahSW5ZhKTFgEAjaOtugqTCrdnZGMyxX7wFz//OoW546iVPporlBg0 2ik805L+gHdSc8ABkWBtqqGBFidwqkP4MX7QHsWC2QCizi4FO/Jx9a83tHclkpuqhS01 oTIw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id c10-v6si4358451pgg.315.2018.09.13.06.46.36; Thu, 13 Sep 2018 06:46:52 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730128AbeIMSyp (ORCPT + 99 others); Thu, 13 Sep 2018 14:54:45 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:60674 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728813AbeIMSyp (ORCPT ); Thu, 13 Sep 2018 14:54:45 -0400 Received: from localhost (ip-213-127-77-73.ip.prioritytelecom.net [213.127.77.73]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 69696D10; Thu, 13 Sep 2018 13:45:12 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Gabriel Bercarug , =?UTF-8?q?Roger=20Pau=20Monn=C3=A9?= , Juergen Gross , Boris Ostrovsky , Sasha Levin Subject: [PATCH 4.14 063/115] xen/balloon: fix balloon initialization for PVH Dom0 Date: Thu, 13 Sep 2018 15:31:23 +0200 Message-Id: <20180913131827.583224588@linuxfoundation.org> X-Mailer: git-send-email 2.19.0 In-Reply-To: <20180913131823.327472833@linuxfoundation.org> References: <20180913131823.327472833@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Roger Pau Monne [ Upstream commit 3596924a233e45aa918c961a902170fc4916461b ] The current balloon code tries to calculate a delta factor for the balloon target when running in HVM mode in order to account for memory used by the firmware. This workaround for memory accounting doesn't work properly on a PVH Dom0, that has a static-max value different from the target value even at startup. Note that this is not a problem for DomUs because guests are started with a static-max value that matches the amount of RAM in the memory map. Fix this by forcefully setting target_diff for Dom0, regardless of it's mode. Reported-by: Gabriel Bercarug Signed-off-by: Roger Pau Monné Reviewed-by: Juergen Gross Signed-off-by: Boris Ostrovsky Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- drivers/xen/xen-balloon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/xen/xen-balloon.c +++ b/drivers/xen/xen-balloon.c @@ -81,7 +81,7 @@ static void watch_target(struct xenbus_w static_max = new_target; else static_max >>= PAGE_SHIFT - 10; - target_diff = xen_pv_domain() ? 0 + target_diff = (xen_pv_domain() || xen_initial_domain()) ? 0 : static_max - balloon_stats.target_pages; }