All of lore.kernel.org
 help / color / mirror / Atom feed
From: Johannes Weiner <hannes@cmpxchg.org>
To: Minchan Kim <minchan.kim@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Rik van Riel <riel@redhat.com>,
	KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
	linux-mm <linux-mm@kvack.org>,
	LKML <linux-kernel@vger.kernel.org>,
	Wu Fengguang <fengguang.wu@intel.com>,
	Nick Piggin <npiggin@kernel.dk>
Subject: Re: [PATCH v4 4/7] Reclaim invalidated page ASAP
Date: Tue, 7 Dec 2010 16:05:25 +0100	[thread overview]
Message-ID: <20101207150525.GD2356@cmpxchg.org> (raw)
In-Reply-To: <0724024711222476a0c8deadb5b366265b8e5824.1291568905.git.minchan.kim@gmail.com>

On Mon, Dec 06, 2010 at 02:29:12AM +0900, Minchan Kim wrote:
> --- a/mm/swap.c
> +++ b/mm/swap.c
> @@ -275,26 +275,59 @@ void add_page_to_unevictable_list(struct page *page)
>   * head of the list, rather than the tail, to give the flusher
>   * threads some time to write it out, as this is much more
>   * effective than the single-page writeout from reclaim.
> + *
> + * If the page isn't page_mapped and dirty/writeback, the page
> + * could reclaim asap using PG_reclaim.
> + *
> + * 1. active, mapped page -> none
> + * 2. active, dirty/writeback page -> inactive, head, PG_reclaim
> + * 3. inactive, mapped page -> none
> + * 4. inactive, dirty/writeback page -> inactive, head, PG_reclaim

         inactive, clean -> inactive, tail

> + * 5. Others -> none
> + *
> + * In 4, why it moves inactive's head, the VM expects the page would
> + * be write it out by flusher threads as this is much more effective
> + * than the single-page writeout from reclaim.
>   */
>  static void lru_deactivate(struct page *page, struct zone *zone)
>  {
>  	int lru, file;
> +	bool active;
>  
> -	if (!PageLRU(page) || !PageActive(page))
> +	if (!PageLRU(page))
>  		return;
>  
>  	/* Some processes are using the page */
>  	if (page_mapped(page))
>  		return;
>  
> +	active = PageActive(page);
> +
>  	file = page_is_file_cache(page);
>  	lru = page_lru_base_type(page);
> -	del_page_from_lru_list(zone, page, lru + LRU_ACTIVE);
> +	del_page_from_lru_list(zone, page, lru + active);
>  	ClearPageActive(page);
>  	ClearPageReferenced(page);
>  	add_page_to_lru_list(zone, page, lru);
> -	__count_vm_event(PGDEACTIVATE);
>
> +	if (PageWriteback(page) || PageDirty(page)) {
> +		/*
> +		 * PG_reclaim could be raced with end_page_writeback
> +		 * It can make readahead confusing.  But race window
> +		 * is _really_ small and  it's non-critical problem.
> +		 */
> +		SetPageReclaim(page);
> +	} else {
> +		/*
> +		 * The page's writeback ends up during pagevec
> +		 * We moves tha page into tail of inactive.
> +		 */
> +		list_move_tail(&page->lru, &zone->lru[lru].list);
> +		mem_cgroup_rotate_reclaimable_page(page);

I think you also need to increase PGROTATED here.

Other than that,
Reviewed-by: Johannes Weiner <hannes@cmpxchg.org>

WARNING: multiple messages have this Message-ID (diff)
From: Johannes Weiner <hannes@cmpxchg.org>
To: Minchan Kim <minchan.kim@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Rik van Riel <riel@redhat.com>,
	KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
	linux-mm <linux-mm@kvack.org>,
	LKML <linux-kernel@vger.kernel.org>,
	Wu Fengguang <fengguang.wu@intel.com>,
	Nick Piggin <npiggin@kernel.dk>
Subject: Re: [PATCH v4 4/7] Reclaim invalidated page ASAP
Date: Tue, 7 Dec 2010 16:05:25 +0100	[thread overview]
Message-ID: <20101207150525.GD2356@cmpxchg.org> (raw)
In-Reply-To: <0724024711222476a0c8deadb5b366265b8e5824.1291568905.git.minchan.kim@gmail.com>

On Mon, Dec 06, 2010 at 02:29:12AM +0900, Minchan Kim wrote:
> --- a/mm/swap.c
> +++ b/mm/swap.c
> @@ -275,26 +275,59 @@ void add_page_to_unevictable_list(struct page *page)
>   * head of the list, rather than the tail, to give the flusher
>   * threads some time to write it out, as this is much more
>   * effective than the single-page writeout from reclaim.
> + *
> + * If the page isn't page_mapped and dirty/writeback, the page
> + * could reclaim asap using PG_reclaim.
> + *
> + * 1. active, mapped page -> none
> + * 2. active, dirty/writeback page -> inactive, head, PG_reclaim
> + * 3. inactive, mapped page -> none
> + * 4. inactive, dirty/writeback page -> inactive, head, PG_reclaim

         inactive, clean -> inactive, tail

> + * 5. Others -> none
> + *
> + * In 4, why it moves inactive's head, the VM expects the page would
> + * be write it out by flusher threads as this is much more effective
> + * than the single-page writeout from reclaim.
>   */
>  static void lru_deactivate(struct page *page, struct zone *zone)
>  {
>  	int lru, file;
> +	bool active;
>  
> -	if (!PageLRU(page) || !PageActive(page))
> +	if (!PageLRU(page))
>  		return;
>  
>  	/* Some processes are using the page */
>  	if (page_mapped(page))
>  		return;
>  
> +	active = PageActive(page);
> +
>  	file = page_is_file_cache(page);
>  	lru = page_lru_base_type(page);
> -	del_page_from_lru_list(zone, page, lru + LRU_ACTIVE);
> +	del_page_from_lru_list(zone, page, lru + active);
>  	ClearPageActive(page);
>  	ClearPageReferenced(page);
>  	add_page_to_lru_list(zone, page, lru);
> -	__count_vm_event(PGDEACTIVATE);
>
> +	if (PageWriteback(page) || PageDirty(page)) {
> +		/*
> +		 * PG_reclaim could be raced with end_page_writeback
> +		 * It can make readahead confusing.  But race window
> +		 * is _really_ small and  it's non-critical problem.
> +		 */
> +		SetPageReclaim(page);
> +	} else {
> +		/*
> +		 * The page's writeback ends up during pagevec
> +		 * We moves tha page into tail of inactive.
> +		 */
> +		list_move_tail(&page->lru, &zone->lru[lru].list);
> +		mem_cgroup_rotate_reclaimable_page(page);

I think you also need to increase PGROTATED here.

Other than that,
Reviewed-by: Johannes Weiner <hannes@cmpxchg.org>

--
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 policy in Canada: sign http://dissolvethecrtc.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2010-12-07 15:05 UTC|newest]

Thread overview: 109+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-12-05 17:29 [PATCH v4 0/7] f/madivse(DONTNEED) support Minchan Kim
2010-12-05 17:29 ` Minchan Kim
2010-12-05 17:29 ` [PATCH v4 1/7] Fix checkpatch's report in swap.c Minchan Kim
2010-12-05 17:29   ` Minchan Kim
2010-12-06  1:47   ` Rik van Riel
2010-12-06  1:47     ` Rik van Riel
2010-12-07 14:37   ` Johannes Weiner
2010-12-07 14:37     ` Johannes Weiner
2010-12-05 17:29 ` [PATCH v4 2/7] deactivate invalidated pages Minchan Kim
2010-12-05 17:29   ` Minchan Kim
2010-12-06 14:53   ` Mel Gorman
2010-12-06 14:53     ` Mel Gorman
2010-12-07 14:49   ` Johannes Weiner
2010-12-07 14:49     ` Johannes Weiner
2010-12-07 15:07     ` Minchan Kim
2010-12-07 15:07       ` Minchan Kim
2010-12-07 15:19       ` Johannes Weiner
2010-12-07 15:19         ` Johannes Weiner
2010-12-07 15:26         ` Minchan Kim
2010-12-07 15:26           ` Minchan Kim
2010-12-07 15:56           ` Johannes Weiner
2010-12-07 15:56             ` Johannes Weiner
2010-12-07 22:51             ` Minchan Kim
2010-12-07 22:51               ` Minchan Kim
2010-12-08  0:56               ` KAMEZAWA Hiroyuki
2010-12-08  0:56                 ` KAMEZAWA Hiroyuki
2010-12-08  1:43                 ` Minchan Kim
2010-12-08  1:43                   ` Minchan Kim
2010-12-08  1:56                   ` KAMEZAWA Hiroyuki
2010-12-08  1:56                     ` KAMEZAWA Hiroyuki
2010-12-08  2:15                     ` Minchan Kim
2010-12-08  2:15                       ` Minchan Kim
2010-12-08  6:56                       ` Balbir Singh
2010-12-08  6:56                         ` Balbir Singh
2010-12-09  0:19                         ` Minchan Kim
2010-12-09  0:19                           ` Minchan Kim
2010-12-05 17:29 ` [PATCH v4 3/7] move memcg reclaimable page into tail of inactive list Minchan Kim
2010-12-05 17:29   ` Minchan Kim
2010-12-06  0:04   ` KAMEZAWA Hiroyuki
2010-12-06  0:04     ` KAMEZAWA Hiroyuki
2010-12-06  3:04   ` Rik van Riel
2010-12-06  3:04     ` Rik van Riel
2010-12-07  0:17     ` Minchan Kim
2010-12-07  0:17       ` Minchan Kim
2010-12-06  3:34   ` Balbir Singh
2010-12-06  3:34     ` Balbir Singh
2010-12-07  0:20     ` Minchan Kim
2010-12-07  0:20       ` Minchan Kim
2010-12-07 14:52   ` Johannes Weiner
2010-12-07 14:52     ` Johannes Weiner
2010-12-08  8:08   ` KOSAKI Motohiro
2010-12-08  8:08     ` KOSAKI Motohiro
2010-12-05 17:29 ` [PATCH v4 4/7] Reclaim invalidated page ASAP Minchan Kim
2010-12-05 17:29   ` Minchan Kim
2010-12-07 15:05   ` Johannes Weiner [this message]
2010-12-07 15:05     ` Johannes Weiner
2010-12-07 15:21     ` Minchan Kim
2010-12-07 15:21       ` Minchan Kim
2010-12-08  8:04   ` KOSAKI Motohiro
2010-12-08  8:04     ` KOSAKI Motohiro
2010-12-08  8:16     ` Minchan Kim
2010-12-08  8:16       ` Minchan Kim
2010-12-08 13:01       ` Ben Gamari
2010-12-08 13:01         ` Ben Gamari
2010-12-08 23:10         ` Minchan Kim
2010-12-08 23:10           ` Minchan Kim
2010-12-13 15:31           ` Minchan Kim
2010-12-13 15:31             ` Minchan Kim
2010-12-13 20:06             ` Ben Gamari
2010-12-13 20:06               ` Ben Gamari
2010-12-14  2:36               ` Minchan Kim
2010-12-14  2:36                 ` Minchan Kim
2011-07-25  3:08                 ` Ben Gamari
2011-07-25  3:08                   ` Ben Gamari
2011-07-25  3:47                   ` Minchan Kim
2011-07-25  3:47                     ` Minchan Kim
2010-12-14  2:07             ` KAMEZAWA Hiroyuki
2010-12-14  2:07               ` KAMEZAWA Hiroyuki
2010-12-14  2:34               ` Minchan Kim
2010-12-14  2:34                 ` Minchan Kim
2010-12-05 17:29 ` [PATCH v4 5/7] add profile information for invalidated page reclaim Minchan Kim
2010-12-05 17:29   ` Minchan Kim
2010-12-06  3:24   ` Rik van Riel
2010-12-06  3:24     ` Rik van Riel
2010-12-08  8:02   ` KOSAKI Motohiro
2010-12-08  8:02     ` KOSAKI Motohiro
2010-12-08  8:13     ` Minchan Kim
2010-12-08  8:13       ` Minchan Kim
2010-12-08  8:36       ` KOSAKI Motohiro
2010-12-08  8:36         ` KOSAKI Motohiro
2010-12-05 17:29 ` [PATCH v4 6/7] Remove zap_details NULL dependency Minchan Kim
2010-12-05 17:29   ` Minchan Kim
2010-12-06  3:25   ` Rik van Riel
2010-12-06  3:25     ` Rik van Riel
2010-12-07  4:26   ` Hugh Dickins
2010-12-07  4:26     ` Hugh Dickins
2010-12-07  5:30     ` Minchan Kim
2010-12-07  5:30       ` Minchan Kim
2010-12-05 17:29 ` [PATCH v4 7/7] Prevent activation of page in madvise_dontneed Minchan Kim
2010-12-05 17:29   ` Minchan Kim
2010-12-07  4:48   ` Hugh Dickins
2010-12-07  4:48     ` Hugh Dickins
2010-12-07  5:44     ` Minchan Kim
2010-12-08  7:26       ` Hugh Dickins
2010-12-08  7:26         ` Hugh Dickins
2010-12-08  7:55         ` Minchan Kim
2010-12-08  7:55           ` Minchan Kim
     [not found] ` <AANLkTim71krrCcmhTTCZTzxeUDkvOdBTOkeYQu6EXt32@mail.gmail.com>
2010-12-07  1:52   ` [PATCH v4 0/7] f/madivse(DONTNEED) support Ben Gamari
2010-12-07  2:16     ` Minchan Kim

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=20101207150525.GD2356@cmpxchg.org \
    --to=hannes@cmpxchg.org \
    --cc=akpm@linux-foundation.org \
    --cc=fengguang.wu@intel.com \
    --cc=kosaki.motohiro@jp.fujitsu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=minchan.kim@gmail.com \
    --cc=npiggin@kernel.dk \
    --cc=riel@redhat.com \
    /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.