From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from psmtp.com (na3sys010amx125.postini.com [74.125.245.125]) by kanga.kvack.org (Postfix) with SMTP id 548CF6B016B for ; Mon, 12 Dec 2011 08:42:39 -0500 (EST) Date: Mon, 12 Dec 2011 13:42:35 +0000 From: Mel Gorman Subject: Re: [PATCH 01/11] mm: page_alloc: handle MIGRATE_ISOLATE in free_pcppages_bulk() Message-ID: <20111212134235.GB3277@csn.ul.ie> References: <1321634598-16859-1-git-send-email-m.szyprowski@samsung.com> <1321634598-16859-2-git-send-email-m.szyprowski@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <1321634598-16859-2-git-send-email-m.szyprowski@samsung.com> Sender: owner-linux-mm@kvack.org List-ID: To: Marek Szyprowski Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-media@vger.kernel.org, linux-mm@kvack.org, linaro-mm-sig@lists.linaro.org, Michal Nazarewicz , Kyungmin Park , Russell King , Andrew Morton , KAMEZAWA Hiroyuki , Ankita Garg , Daniel Walker , Arnd Bergmann , Jesse Barker , Jonathan Corbet , Shariq Hasnain , Chunsang Jeong , Dave Hansen On Fri, Nov 18, 2011 at 05:43:08PM +0100, Marek Szyprowski wrote: > From: Michal Nazarewicz > > If page is on PCP list while pageblock it belongs to gets isolated, > the page's private still holds the old migrate type. This means > that free_pcppages_bulk() will put the page on a freelist of the > old migrate type instead of MIGRATE_ISOLATE. > > This commit changes that by explicitly checking whether page's > pageblock's migrate type is MIGRATE_ISOLATE and if it is, overwrites > page's private data. > > Signed-off-by: Michal Nazarewicz > Signed-off-by: Marek Szyprowski > --- > mm/page_alloc.c | 12 ++++++++++++ > 1 files changed, 12 insertions(+), 0 deletions(-) > > diff --git a/mm/page_alloc.c b/mm/page_alloc.c > index 9dd443d..58d1a2e 100644 > --- a/mm/page_alloc.c > +++ b/mm/page_alloc.c > @@ -628,6 +628,18 @@ static void free_pcppages_bulk(struct zone *zone, int count, > page = list_entry(list->prev, struct page, lru); > /* must delete as __free_one_page list manipulates */ > list_del(&page->lru); > + > + /* > + * When page is isolated in set_migratetype_isolate() > + * function it's page_private is not changed since the > + * function has no way of knowing if it can touch it. > + * This means that when a page is on PCP list, it's > + * page_private no longer matches the desired migrate > + * type. > + */ > + if (get_pageblock_migratetype(page) == MIGRATE_ISOLATE) > + set_page_private(page, MIGRATE_ISOLATE); > + How much of a problem is this in practice? It's adding overhead to the free path for what should be a very rare case which is undesirable. I know we are already calling get_pageblock_migrate() when freeing pages but it should be unnecessary to call it again. I'd go as far to say that it would be preferable to drain the per-CPU lists after you set pageblocks MIGRATE_ISOLATE. The IPIs also have overhead but it will be incurred for the rare rather than the common case. -- Mel Gorman SUSE Labs -- 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/ . Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ Don't email: email@kvack.org