linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: David Hildenbrand <david@redhat.com>
To: Michal Hocko <mhocko@kernel.org>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	Oscar Salvador <osalvador@suse.de>,
	Andrew Morton <akpm@linux-foundation.org>,
	Anshuman Khandual <anshuman.khandual@arm.com>,
	Pingfan Liu <kernelfans@gmail.com>, Qian Cai <cai@lca.pw>,
	Pavel Tatashin <pasha.tatashin@soleen.com>,
	Dan Williams <dan.j.williams@intel.com>,
	Vlastimil Babka <vbabka@suse.cz>,
	Mel Gorman <mgorman@techsingularity.net>,
	Mike Rapoport <rppt@linux.vnet.ibm.com>,
	Alexander Duyck <alexander.h.duyck@linux.intel.com>
Subject: Re: [PATCH v1 2/2] mm/page_isolation.c: Convert SKIP_HWPOISON to MEMORY_OFFLINE
Date: Mon, 21 Oct 2019 17:04:50 +0200	[thread overview]
Message-ID: <bed9336d-3bff-b7e3-dfba-42506a274858@redhat.com> (raw)
In-Reply-To: <20191021150237.GU9379@dhcp22.suse.cz>

On 21.10.19 17:02, Michal Hocko wrote:
> On Mon 21-10-19 16:19:26, David Hildenbrand wrote:
>> We have two types of users of page isolation:
>> 1. Memory offlining: Offline memory so it can be unplugged. Memory won't
>> 		     be touched.
>> 2. Memory allocation: Allocate memory (e.g., alloc_contig_range()) to
>> 		      become the owner of the memory and make use of it.
>>
>> For example, in case we want to offline memory, we can ignore (skip over)
>> PageHWPoison() pages, as the memory won't get used. We can allow to
>> offline memory. In contrast, we don't want to allow to allocate such
>> memory.
>>
>> Let's generalize the approach so we can special case other types of
>> pages we want to skip over in case we offline memory. While at it, also
>> pass the same flags to test_pages_isolated().
>>
>> Cc: Michal Hocko <mhocko@suse.com>
>> Cc: Oscar Salvador <osalvador@suse.de>
>> Cc: Andrew Morton <akpm@linux-foundation.org>
>> Cc: Anshuman Khandual <anshuman.khandual@arm.com>
>> Cc: David Hildenbrand <david@redhat.com>
>> Cc: Pingfan Liu <kernelfans@gmail.com>
>> Cc: Qian Cai <cai@lca.pw>
>> Cc: Pavel Tatashin <pasha.tatashin@soleen.com>
>> Cc: Dan Williams <dan.j.williams@intel.com>
>> Cc: Vlastimil Babka <vbabka@suse.cz>
>> Cc: Mel Gorman <mgorman@techsingularity.net>
>> Cc: Mike Rapoport <rppt@linux.vnet.ibm.com>
>> Cc: Alexander Duyck <alexander.h.duyck@linux.intel.com>
>> Suggested-by: Michal Hocko <mhocko@suse.com>
>> Signed-off-by: David Hildenbrand <david@redhat.com>
> 
> Yes, a highlevel flag makes more sense than requesting specific types of
> pages to skip over.
> 
> Acked-by: Michal Hocko <mhocko@suse.com>
> 
> Please make the code easier to follow ...
>> ---
>>   include/linux/page-isolation.h |  4 ++--
>>   mm/memory_hotplug.c            |  8 +++++---
>>   mm/page_alloc.c                |  4 ++--
>>   mm/page_isolation.c            | 12 ++++++------
>>   4 files changed, 15 insertions(+), 13 deletions(-)
>>
>> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
>> index bf6b21f02154..b44712c7fdd7 100644
>> --- a/mm/page_alloc.c
>> +++ b/mm/page_alloc.c
>> @@ -8270,7 +8270,7 @@ bool has_unmovable_pages(struct zone *zone, struct page *page, int count,
>>   		 * The HWPoisoned page may be not in buddy system, and
>>   		 * page_count() is not 0.
>>   		 */
>> -		if ((flags & SKIP_HWPOISON) && PageHWPoison(page))
>> +		if (flags & MEMORY_OFFLINE && PageHWPoison(page))
>>   			continue;
>>   
>>   		if (__PageMovable(page))
> [...]
>> @@ -257,7 +258,7 @@ void undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
>>    */
>>   static unsigned long
>>   __test_page_isolated_in_pageblock(unsigned long pfn, unsigned long end_pfn,
>> -				  bool skip_hwpoisoned_pages)
>> +				  int flags)
>>   {
>>   	struct page *page;
>>   
>> @@ -274,7 +275,7 @@ __test_page_isolated_in_pageblock(unsigned long pfn, unsigned long end_pfn,
>>   			 * simple way to verify that as VM_BUG_ON(), though.
>>   			 */
>>   			pfn += 1 << page_order(page);
>> -		else if (skip_hwpoisoned_pages && PageHWPoison(page))
>> +		else if (flags & MEMORY_OFFLINE && PageHWPoison(page))
>>   			/* A HWPoisoned page cannot be also PageBuddy */
>>   			pfn++;
>>   		else
> 
> .. and use parentheses for the flag check.
> 

Can do if you prefer :)

Thanks!

I'll resend both patches.

-- 

Thanks,

David / dhildenb



      reply	other threads:[~2019-10-21 15:05 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
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 [this message]

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=bed9336d-3bff-b7e3-dfba-42506a274858@redhat.com \
    --to=david@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=alexander.h.duyck@linux.intel.com \
    --cc=anshuman.khandual@arm.com \
    --cc=cai@lca.pw \
    --cc=dan.j.williams@intel.com \
    --cc=kernelfans@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mgorman@techsingularity.net \
    --cc=mhocko@kernel.org \
    --cc=osalvador@suse.de \
    --cc=pasha.tatashin@soleen.com \
    --cc=rppt@linux.vnet.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