[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200814095629.GJ975@Air-de-Roger>
Date: Fri, 14 Aug 2020 11:56:29 +0200
From: Roger Pau Monné <roger.pau@...rix.com>
To: Christoph Hellwig <hch@...radead.org>
CC: <linux-kernel@...r.kernel.org>,
Oleksandr Andrushchenko <oleksandr_andrushchenko@...m.com>,
David Airlie <airlied@...ux.ie>,
"Daniel Vetter" <daniel@...ll.ch>,
Boris Ostrovsky <boris.ostrovsky@...cle.com>,
Juergen Gross <jgross@...e.com>,
Stefano Stabellini <sstabellini@...nel.org>,
Dan Carpenter <dan.carpenter@...cle.com>, Wei Liu <wl@....org>,
"Yan Yankovskyi" <yyankovskyi@...il.com>,
<dri-devel@...ts.freedesktop.org>,
<xen-devel@...ts.xenproject.org>, <linux-mm@...ck.org>,
David Hildenbrand <david@...hat.com>,
Michal Hocko <mhocko@...nel.org>,
Dan Williams <dan.j.williams@...el.com>
Subject: Re: [PATCH v4 2/2] xen: add helpers to allocate unpopulated memory
On Fri, Aug 14, 2020 at 08:29:20AM +0100, Christoph Hellwig wrote:
> On Thu, Aug 13, 2020 at 09:54:20AM +0200, Roger Pau Monn?? wrote:
> > On Thu, Aug 13, 2020 at 08:33:37AM +0100, Christoph Hellwig wrote:
> > > On Tue, Aug 11, 2020 at 11:44:47AM +0200, Roger Pau Monne wrote:
> > > > If enabled (because ZONE_DEVICE is supported) the usage of the new
> > > > functionality untangles Xen balloon and RAM hotplug from the usage of
> > > > unpopulated physical memory ranges to map foreign pages, which is the
> > > > correct thing to do in order to avoid mappings of foreign pages depend
> > > > on memory hotplug.
> > >
> > > So please just select ZONE_DEVICE if this is so much better rather
> > > than maintaining two variants.
> >
> > We still need to other variant for Arm at least, so both need to be
> > maintained anyway, even if we force ZONE_DEVICE on x86.
>
> Well, it still really helps reproducability if you stick to one
> implementation of x86.
>
> The alternative would be an explicit config option to opt into it,
> but just getting a different implementation based on a random
> kernel option is strange.
Would adding something like the chunk below to the patch be OK?
---8<---
diff --git a/drivers/xen/Kconfig b/drivers/xen/Kconfig
index 018020b91baa..5f321a1319e6 100644
--- a/drivers/xen/Kconfig
+++ b/drivers/xen/Kconfig
@@ -328,7 +328,14 @@ config XEN_FRONT_PGDIR_SHBUF
tristate
config XEN_UNPOPULATED_ALLOC
- bool
- default y if ZONE_DEVICE && !ARM && !ARM64
+ bool "Use unpopulated memory ranges for guest mappings"
+ depends on X86
+ select ZONE_DEVICE
+ default y
+ help
+ Use unpopulated memory ranges in order to create mappings for guest
+ memory regions, including grants maps and foreign pages. This avoids
+ having to balloon out RAM regions in order to obtain physical memory
+ space to create such mappings.
endmenu
Powered by blists - more mailing lists