All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vlastimil Babka <vbabka@suse.cz>
To: js1304@gmail.com, Andrew Morton <akpm@linux-foundation.org>
Cc: Rik van Riel <riel@redhat.com>,
	Johannes Weiner <hannes@cmpxchg.org>,
	Mel Gorman <mgorman@suse.de>,
	Laura Abbott <lauraa@codeaurora.org>,
	Minchan Kim <minchan@kernel.org>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Michal Nazarewicz <mina86@mina86.com>,
	"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Joonsoo Kim <iamjoonsoo.kim@lge.com>
Subject: Re: [PATCH 4/6] mm/vmstat: add zone range overlapping check
Date: Wed, 23 Mar 2016 15:47:46 +0100	[thread overview]
Message-ID: <56F2AC92.9070600@suse.cz> (raw)
In-Reply-To: <1457940697-2278-5-git-send-email-iamjoonsoo.kim@lge.com>

On 03/14/2016 08:31 AM, js1304@gmail.com wrote:
> From: Joonsoo Kim <iamjoonsoo.kim@lge.com>
>
> There is a system that node's pfn are overlapped like as following.
>
> -----pfn-------->
> N0 N1 N2 N0 N1 N2
>
> Therefore, we need to care this overlapping when iterating pfn range.
>
> There are two places in vmstat.c that iterates pfn range and
> they don't consider this overlapping. Add it.
>
> Without this patch, above system could over count pageblock number
> on a zone.
>
> Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
> ---
>   mm/vmstat.c | 7 +++++++
>   1 file changed, 7 insertions(+)
>
> diff --git a/mm/vmstat.c b/mm/vmstat.c
> index 5e43004..0a726e3 100644
> --- a/mm/vmstat.c
> +++ b/mm/vmstat.c
> @@ -1010,6 +1010,9 @@ static void pagetypeinfo_showblockcount_print(struct seq_file *m,
>   		if (!memmap_valid_within(pfn, page, zone))
>   			continue;

The above already does this for each page within the block, but it's 
guarded by CONFIG_ARCH_HAS_HOLES_MEMORYMODEL. I guess that's not the 
case of your system, right?

I guess your added check should go above this, though. Also what about 
employing pageblock_pfn_to_page() here and in all other applicable 
places, so it's unified and optimized by zone->contiguous?

>
> +		if (page_zone(page) != zone)
> +			continue;
> +
>   		mtype = get_pageblock_migratetype(page);
>
>   		if (mtype < MIGRATE_TYPES)
> @@ -1076,6 +1079,10 @@ static void pagetypeinfo_showmixedcount_print(struct seq_file *m,
>   				continue;
>
>   			page = pfn_to_page(pfn);
> +
> +			if (page_zone(page) != zone)
> +				continue;
> +
>   			if (PageBuddy(page)) {
>   				pfn += (1UL << page_order(page)) - 1;
>   				continue;
>

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

WARNING: multiple messages have this Message-ID (diff)
From: Vlastimil Babka <vbabka@suse.cz>
To: js1304@gmail.com, Andrew Morton <akpm@linux-foundation.org>
Cc: Rik van Riel <riel@redhat.com>,
	Johannes Weiner <hannes@cmpxchg.org>,
	Mel Gorman <mgorman@suse.de>,
	Laura Abbott <lauraa@codeaurora.org>,
	Minchan Kim <minchan@kernel.org>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Michal Nazarewicz <mina86@mina86.com>,
	"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Joonsoo Kim <iamjoonsoo.kim@lge.com>
Subject: Re: [PATCH 4/6] mm/vmstat: add zone range overlapping check
Date: Wed, 23 Mar 2016 15:47:46 +0100	[thread overview]
Message-ID: <56F2AC92.9070600@suse.cz> (raw)
In-Reply-To: <1457940697-2278-5-git-send-email-iamjoonsoo.kim@lge.com>

On 03/14/2016 08:31 AM, js1304@gmail.com wrote:
> From: Joonsoo Kim <iamjoonsoo.kim@lge.com>
>
> There is a system that node's pfn are overlapped like as following.
>
> -----pfn-------->
> N0 N1 N2 N0 N1 N2
>
> Therefore, we need to care this overlapping when iterating pfn range.
>
> There are two places in vmstat.c that iterates pfn range and
> they don't consider this overlapping. Add it.
>
> Without this patch, above system could over count pageblock number
> on a zone.
>
> Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
> ---
>   mm/vmstat.c | 7 +++++++
>   1 file changed, 7 insertions(+)
>
> diff --git a/mm/vmstat.c b/mm/vmstat.c
> index 5e43004..0a726e3 100644
> --- a/mm/vmstat.c
> +++ b/mm/vmstat.c
> @@ -1010,6 +1010,9 @@ static void pagetypeinfo_showblockcount_print(struct seq_file *m,
>   		if (!memmap_valid_within(pfn, page, zone))
>   			continue;

The above already does this for each page within the block, but it's 
guarded by CONFIG_ARCH_HAS_HOLES_MEMORYMODEL. I guess that's not the 
case of your system, right?

I guess your added check should go above this, though. Also what about 
employing pageblock_pfn_to_page() here and in all other applicable 
places, so it's unified and optimized by zone->contiguous?

>
> +		if (page_zone(page) != zone)
> +			continue;
> +
>   		mtype = get_pageblock_migratetype(page);
>
>   		if (mtype < MIGRATE_TYPES)
> @@ -1076,6 +1079,10 @@ static void pagetypeinfo_showmixedcount_print(struct seq_file *m,
>   				continue;
>
>   			page = pfn_to_page(pfn);
> +
> +			if (page_zone(page) != zone)
> +				continue;
> +
>   			if (PageBuddy(page)) {
>   				pfn += (1UL << page_order(page)) - 1;
>   				continue;
>

  reply	other threads:[~2016-03-23 14:47 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-14  7:31 [PATCH 0/6] Add zone overlapping check js1304
2016-03-14  7:31 ` js1304
2016-03-14  7:31 ` [PATCH 1/6] mm/page_alloc: fix same zone check in __pageblock_pfn_to_page() js1304
2016-03-14  7:31   ` js1304
2016-03-21 11:37   ` Mel Gorman
2016-03-21 11:37     ` Mel Gorman
2016-03-22  5:02     ` Joonsoo Kim
2016-03-22  5:02       ` Joonsoo Kim
2016-03-14  7:31 ` [PATCH 2/6] mm/hugetlb: add same zone check in pfn_range_valid_gigantic() js1304
2016-03-14  7:31   ` js1304
2016-03-23 14:38   ` Vlastimil Babka
2016-03-23 14:38     ` Vlastimil Babka
2016-03-14  7:31 ` [PATCH 3/6] mm/memory_hotplug: add comment to some functions related to memory hotplug js1304
2016-03-14  7:31   ` js1304
2016-03-23 14:38   ` Vlastimil Babka
2016-03-23 14:38     ` Vlastimil Babka
2016-03-14  7:31 ` [PATCH 4/6] mm/vmstat: add zone range overlapping check js1304
2016-03-14  7:31   ` js1304
2016-03-23 14:47   ` Vlastimil Babka [this message]
2016-03-23 14:47     ` Vlastimil Babka
2016-03-24  0:08     ` Joonsoo Kim
2016-03-24  0:08       ` Joonsoo Kim
2016-03-14  7:31 ` [PATCH 5/6] mm/page_owner: " js1304
2016-03-14  7:31   ` js1304
2016-03-14  7:31 ` [PATCH 6/6] power: " js1304
2016-03-14  7:31   ` js1304

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=56F2AC92.9070600@suse.cz \
    --to=vbabka@suse.cz \
    --cc=akpm@linux-foundation.org \
    --cc=aneesh.kumar@linux.vnet.ibm.com \
    --cc=hannes@cmpxchg.org \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=js1304@gmail.com \
    --cc=lauraa@codeaurora.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=m.szyprowski@samsung.com \
    --cc=mgorman@suse.de \
    --cc=mina86@mina86.com \
    --cc=minchan@kernel.org \
    --cc=riel@redhat.com \
    --cc=rjw@rjwysocki.net \
    /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.