linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Michal Hocko <mhocko@kernel.org>
To: David Hildenbrand <david@redhat.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	Andrew Morton <akpm@linux-foundation.org>,
	Vlastimil Babka <vbabka@suse.cz>,
	Oscar Salvador <osalvador@suse.de>,
	Mel Gorman <mgorman@techsingularity.net>,
	Mike Rapoport <rppt@linux.ibm.com>,
	Dan Williams <dan.j.williams@intel.com>,
	Wei Yang <richard.weiyang@gmail.com>,
	Alexander Duyck <alexander.h.duyck@linux.intel.com>,
	Anshuman Khandual <anshuman.khandual@arm.com>,
	Pavel Tatashin <pavel.tatashin@microsoft.com>
Subject: Re: [PATCH v1 1/2] mm/page_alloc.c: Don't set pages PageReserved() when offlining
Date: Tue, 22 Oct 2019 10:58:51 +0200	[thread overview]
Message-ID: <20191022085851.GF9379@dhcp22.suse.cz> (raw)
In-Reply-To: <c9517b78-c38f-4e1b-f8cb-8df67bf106ec@redhat.com>

On Tue 22-10-19 10:23:37, David Hildenbrand wrote:
> On 22.10.19 10:20, Michal Hocko wrote:
> > On Mon 21-10-19 17:54:35, David Hildenbrand wrote:
> > > On 21.10.19 17:47, Michal Hocko wrote:
> > > > On Mon 21-10-19 17:39:36, David Hildenbrand wrote:
> > > > > On 21.10.19 16:43, Michal Hocko wrote:
> > > > [...]
> > > > > > We still set PageReserved before onlining pages and that one should be
> > > > > > good to go as well (memmap_init_zone).
> > > > > > Thanks!
> > > > > 
> > > > > memmap_init_zone() is called when onlining memory. There, set all pages to
> > > > > reserved right now (on context == MEMMAP_HOTPLUG). We clear PG_reserved when
> > > > > onlining a page to the buddy (e.g., generic_online_page). If we would online
> > > > > a memory block with holes, we would want to keep all such pages
> > > > > (!pfn_valid()) set to reserved. Also, there might be other side effects.
> > > > 
> > > > Isn't it sufficient to have those pages in a poisoned state? They are
> > > > not onlined so their state is basically undefined anyway. I do not see
> > > > how PageReserved makes this any better.
> > > 
> > > It is what people have been using for a long time. Memory hole ->
> > > PG_reserved. The memmap is valid, but people want to tell "this here is
> > > crap, don't look at it".
> > 
> > The page is poisoned, right? If yes then setting the reserved bit
> > doesn't make any sense.
> 
> No it's not poisoned AFAIK. It should be initialized

Dohh, it seems I still keep confusing myself. You are right the page is
initialized at this stage. A potential hole in RAM or ZONE_DEVICE memory
will just not hit the page allocator. Sorry about the noise.

> - and I remember that PG_reserved on memory holes is relevant to
> detect MMIO pages. (e.g., looking at KVM code ...)

I can see kvm_is_reserved_pfn() which checks both pfn_valid and
PageReserved. How does this help to detect memory holes though?
Any driver might be setting the page reserved.
 
> > > > Also is the hole inside a hotplugable memory something we really have to
> > > > care about. Has anybody actually seen a platform to require that?
> > > 
> > > That's what I was asking. I can see "support" for this was added basically
> > > right from the beginning. I'd say we rip that out and cleanup/simplify. I am
> > > not aware of a platform that requires this. Especially, memory holes on
> > > DIMMs (detected during boot) seem like an unlikely thing.
> > 
> > The thing is that the hotplug development shows ad-hoc decisions
> > throughout the code. It is even worse that it is hard to guess whether
> > some hludges are a result of a careful design or ad-hoc trial and
> > failure approach on setups that never were production. Building on top
> > of that be preserving hacks is not going to improve the situation. So I
> > am perfectly fine to focus on making the most straightforward setups
> > work reliably. Even when there is a risk of breaking some odd setups. We
> > can fix them up later but we would have at least a specific example and
> > document it.
> > 
> 
> Alright, I'll prepare a simple patch that rejects offlining memory with

Is offlining an interesting path? I would expect onlining to be much
more interesting one.

> memory holes. We can apply that and see if anybody screams out loud. If not,
> we can clean up that crap.
-- 
Michal Hocko
SUSE Labs


  reply	other threads:[~2019-10-22  8:58 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-21 14:19 [PATCH v1 0/2] mm: Memory offlining + page isolation cleanups David Hildenbrand
2019-10-21 14:19 ` [PATCH v1 1/2] mm/page_alloc.c: Don't set pages PageReserved() when offlining David Hildenbrand
2019-10-21 14:43   ` Michal Hocko
2019-10-21 15:39     ` David Hildenbrand
2019-10-21 15:47       ` Michal Hocko
2019-10-21 15:54         ` David Hildenbrand
2019-10-22  8:20           ` Michal Hocko
2019-10-22  8:23             ` David Hildenbrand
2019-10-22  8:58               ` Michal Hocko [this message]
2019-10-22  9:03                 ` David Hildenbrand
2019-10-21 14:19 ` [PATCH v1 2/2] mm/page_isolation.c: Convert SKIP_HWPOISON to MEMORY_OFFLINE David Hildenbrand
2019-10-21 15:02   ` Michal Hocko
2019-10-21 15:04     ` David Hildenbrand

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=20191022085851.GF9379@dhcp22.suse.cz \
    --to=mhocko@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=alexander.h.duyck@linux.intel.com \
    --cc=anshuman.khandual@arm.com \
    --cc=dan.j.williams@intel.com \
    --cc=david@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mgorman@techsingularity.net \
    --cc=osalvador@suse.de \
    --cc=pavel.tatashin@microsoft.com \
    --cc=richard.weiyang@gmail.com \
    --cc=rppt@linux.ibm.com \
    --cc=vbabka@suse.cz \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox