From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Subject: Re: [PATCH v1 4/8] xen/balloon: mark inflated pages PG_offline To: David Hildenbrand , linux-mm@kvack.org Cc: linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, devel@linuxdriverproject.org, linux-fsdevel@vger.kernel.org, linux-pm@vger.kernel.org, xen-devel@lists.xenproject.org, kexec-ml , pv-drivers@vmware.com, Boris Ostrovsky , Stefano Stabellini , Andrew Morton , Matthew Wilcox , Michal Hocko , "Michael S. Tsirkin" References: <20181119101616.8901-1-david@redhat.com> <20181119101616.8901-5-david@redhat.com> From: Juergen Gross Message-ID: Date: Mon, 19 Nov 2018 13:22:22 +0100 MIME-Version: 1.0 In-Reply-To: <20181119101616.8901-5-david@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: de-DE Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: On 19/11/2018 11:16, David Hildenbrand wrote: > Mark inflated and never onlined pages PG_offline, to tell the world that > the content is stale and should not be dumped. > > Cc: Boris Ostrovsky > Cc: Juergen Gross > Cc: Stefano Stabellini > Cc: Andrew Morton > Cc: Matthew Wilcox > Cc: Michal Hocko > Cc: "Michael S. Tsirkin" > Signed-off-by: David Hildenbrand > --- > drivers/xen/balloon.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c > index 12148289debd..14dd6b814db3 100644 > --- a/drivers/xen/balloon.c > +++ b/drivers/xen/balloon.c > @@ -425,6 +425,7 @@ static int xen_bring_pgs_online(struct page *pg, unsigned int order) > for (i = 0; i < size; i++) { > p = pfn_to_page(start_pfn + i); > __online_page_set_limits(p); > + __SetPageOffline(p); > __balloon_append(p); > } This seems not to be based on current master. Could you please tell against which tree this should be reviewed? Juergen