From: Juergen Gross <jgross@suse.com>
To: Daniel Kiper <daniel.kiper@oracle.com>
Cc: linux-kernel@vger.kernel.org, xen-devel@lists.xensource.com,
konrad.wilk@oracle.com, david.vrabel@citrix.com,
boris.ostrovsky@oracle.com, pebolle@tiscali.nl
Subject: Re: [Patch V2 2/2] xen: before ballooning hotplugged memory, set frames to invalid
Date: Fri, 20 Mar 2015 15:27:54 +0100 [thread overview]
Message-ID: <550C2E6A.4040602@suse.com> (raw)
In-Reply-To: <20150320134642.GJ27971@olila.local.net-space.pl>
On 03/20/2015 02:46 PM, Daniel Kiper wrote:
> On Fri, Mar 20, 2015 at 01:55:39PM +0100, Juergen Gross wrote:
>> Commit 25b884a83d487fd62c3de7ac1ab5549979188482 ("x86/xen: set
>> regions above the end of RAM as 1:1") introduced a regression.
>>
>> To be able to add memory pages which were added via memory hotplug to
>> a pv domain, the pages must be "invalid" instead of "identity" in the
>> p2m list before they can be added.
>>
>> Suggested-by: David Vrabel <david.vrabel@citrix.com>
>> Signed-off-by: Juergen Gross <jgross@suse.com>
>
> In general...
>
> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
>
> ... but...
>
>> ---
>> drivers/xen/balloon.c | 13 +++++++++++++
>> 1 file changed, 13 insertions(+)
>>
>> diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c
>> index 0b52d92..65fedb8 100644
>> --- a/drivers/xen/balloon.c
>> +++ b/drivers/xen/balloon.c
>> @@ -229,6 +229,19 @@ static enum bp_state reserve_additional_memory(long credit)
>> balloon_hotplug = round_up(balloon_hotplug, PAGES_PER_SECTION);
>> nid = memory_add_physaddr_to_nid(hotplug_start_paddr);
>>
>> +#ifdef CONFIG_XEN_HAVE_PVMMU
>> + if (!xen_feature(XENFEAT_auto_translated_physmap)) {
>> + unsigned long pfn, i;
>> +
>> + pfn = PFN_DOWN(hotplug_start_paddr);
>> + for (i = 0; i < balloon_hotplug; i++)
>> + if (!set_phys_to_machine(pfn + i, INVALID_P2M_ENTRY)) {
>> + pr_warn("set_phys_to_machine() failed, no memory added\n");
>> + return BP_ECANCELED;
>> + }
>> + }
>> +#endif
>
> Should not we fill everything above "maxmem" with
> INVALID_P2M_ENTRY at boot time?
In this case we shouldn't report "identity" for pfns above maxmem, too.
Otherwise we could change behaviour of the kernel regarding PCI
passthrough just by changing CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT
which doesn't sound right.
Juergen
next prev parent reply other threads:[~2015-03-20 14:27 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-20 12:55 [Patch V2 0/2] xen: fix regressions regarding memory hotplug in pv domains Juergen Gross
2015-03-20 12:55 ` [Patch V2 1/2] xen: prepare p2m list for memory hotplug Juergen Gross
2015-03-20 13:42 ` Daniel Kiper
2015-03-23 12:46 ` [Xen-devel] " David Vrabel
2015-03-23 12:46 ` David Vrabel
2015-03-23 14:29 ` Juergen Gross
2015-03-23 14:57 ` David Vrabel
2015-03-23 14:57 ` David Vrabel
2015-03-20 12:55 ` [Patch V2 2/2] xen: before ballooning hotplugged memory, set frames to invalid Juergen Gross
2015-03-20 13:44 ` Boris Ostrovsky
2015-03-20 14:35 ` Juergen Gross
2015-03-23 11:47 ` [Xen-devel] " David Vrabel
2015-03-23 11:47 ` David Vrabel
2015-03-20 13:46 ` Daniel Kiper
2015-03-20 14:27 ` Juergen Gross [this message]
2015-03-23 11:59 ` David Vrabel
2015-03-23 11:59 ` David Vrabel
2015-03-23 15:17 ` [Xen-devel] [Patch V2 0/2] xen: fix regressions regarding memory hotplug in pv domains David Vrabel
2015-03-23 15:17 ` David Vrabel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=550C2E6A.4040602@suse.com \
--to=jgross@suse.com \
--cc=boris.ostrovsky@oracle.com \
--cc=daniel.kiper@oracle.com \
--cc=david.vrabel@citrix.com \
--cc=konrad.wilk@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=pebolle@tiscali.nl \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.