[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <4F03BBA1.7090606@gmail.com>
Date: Tue, 03 Jan 2012 21:38:25 -0500
From: KOSAKI Motohiro <kosaki.motohiro@...il.com>
To: Minchan Kim <minchan@...nel.org>
CC: linux-mm@...ck.org, linux-kernel@...r.kernel.org,
KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>,
David Rientjes <rientjes@...gle.com>,
Minchan Kim <minchan.kim@...il.com>,
Mel Gorman <mel@....ul.ie>,
Johannes Weiner <jweiner@...hat.com>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: Re: [PATCH 1/2] mm,mlock: drain pagevecs asynchronously
>> @@ -704,10 +747,23 @@ static void ____pagevec_lru_add_fn(struct page *page, void *arg)
>> VM_BUG_ON(PageLRU(page));
>>
>> SetPageLRU(page);
>> - if (active)
>> - SetPageActive(page);
>> - update_page_reclaim_stat(zone, page, file, active);
>> - add_page_to_lru_list(zone, page, lru);
>> + redo:
>> + if (page_evictable(page, NULL)) {
>> + if (active)
>> + SetPageActive(page);
>> + update_page_reclaim_stat(zone, page, file, active);
>> + add_page_to_lru_list(zone, page, lru);
>> + } else {
>> + SetPageUnevictable(page);
>> + add_page_to_lru_list(zone, page, LRU_UNEVICTABLE);
>> + smp_mb();
>
> Why do we need barrier in here? Please comment it.
To cut-n-paste a comment from putback_lru_page() is good idea? :)
+ /*
+ * When racing with an mlock clearing (page is
+ * unlocked), make sure that if the other thread does
+ * not observe our setting of PG_lru and fails
+ * isolation, we see PG_mlocked cleared below and move
+ * the page back to the evictable list.
+ *
+ * The other side is TestClearPageMlocked().
+ */
+ smp_mb();
>> + if (page_evictable(page, NULL)) {
>> + del_page_from_lru_list(zone, page, LRU_UNEVICTABLE);
>> + ClearPageUnevictable(page);
>> + goto redo;
>> + }
>> + }
>
> I am not sure it's a good idea.
> mlock is very rare event but ____pagevec_lru_add_fn is called frequently.
> We are adding more overhead in ____pagevec_lru_add_fn.
> Is it valuable?
dunno.
Personally, I think tao's case is too artificial and I haven't observed
any real world application do such crazy mlock/munlock repeatness. But
he said he has a such application.
If my remember is correct, ltp or some test suite depend on current
meminfo synching behavior. then I'm afraid simple removing bring us
new annoying bug report.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists