linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
To: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Hugh Dickins <hugh@veritas.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Balbir Singh <balbir@linux.vnet.ibm.com>,
	linux-mm@kvack.org
Subject: Re: [PATCH] memcg: memswap controller core swapcache fixes
Date: Mon, 24 Nov 2008 15:15:42 +0900	[thread overview]
Message-ID: <20081124151542.3c1a4c88.kamezawa.hiroyu@jp.fujitsu.com> (raw)
In-Reply-To: <20081124144344.d2703a60.kamezawa.hiroyu@jp.fujitsu.com>

On Mon, 24 Nov 2008 14:43:44 +0900
KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> wrote:

> On Sun, 23 Nov 2008 22:11:07 +0000 (GMT)
> Hugh Dickins <hugh@veritas.com> wrote:
> 
> > Two SwapCache bug fixes to mmotm's memcg-memswap-controller-core.patch:
> > 
> > One bug is independent of my current changes: there is no guarantee that
> > the page passed to mem_cgroup_try_charge_swapin() is still in SwapCache.
> > 
> 
> Ah, yes. I'm wrong that the page may not be SwapCache when lock_page() is
> called...

Ah...sorry again,

> > +	/*
> > +	 * A racing thread's fault, or swapoff, may have already updated
> > +	 * the pte, and even removed page from swap cache: return success
> > +	 * to go on to do_swap_page()'s pte_same() test, which should fail.
> > +	 */
> > +	if (!PageSwapCache(page))
> > +		return 0;
> > +
> >  	ent.val = page_private(page);

I think 
==
	if (!PageSwapCache(page))
		goto charge_cur_mm;
==
is better.

In following case,
==
	CPUA				CPUB
				    remove_from_swapcache
	lock_page()                 <==========================(*)
	try_charge_swapin()          
	....
	commit_charge()
==
At (*), the page may be fully unmapped and not charged
(and PCG_USED bit is cleared.)
If so, returing without any charge here means leak of charge.

Even if *charged* here,
  - mem_cgroup_cancel_charge_swapin (handles !pte_same() case.)
  - mem_cgroup_commit_charge_swapin (handles page is doubly charged case.)

try-commit-cancel is introduced to handle this kind of case and bug in my code
is accessing page->private without checking PageSwapCache().

Thanks,
-Kame


--
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>

  reply	other threads:[~2008-11-24  6:16 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-23 21:53 [PATCH 0/8] mm: from gup to vmscan Hugh Dickins
2008-11-23 21:55 ` [PATCH 1/8] mm: gup persist for write permission Hugh Dickins
2008-11-23 21:56 ` [PATCH 2/8] mm: wp lock page before deciding cow Hugh Dickins
2008-11-23 21:58 ` [PATCH 3/8] mm: reuse_swap_page replaces can_share_swap_page Hugh Dickins
2008-11-23 22:11   ` [PATCH] memcg: memswap controller core swapcache fixes Hugh Dickins
2008-11-24  5:43     ` KAMEZAWA Hiroyuki
2008-11-24  6:15       ` KAMEZAWA Hiroyuki [this message]
2008-11-24 12:29         ` Hugh Dickins
2008-11-24 12:57           ` KAMEZAWA Hiroyuki
2008-11-23 22:43   ` [PATCH 3/8] mm: reuse_swap_page replaces can_share_swap_page Rik van Riel
2008-11-23 22:00 ` [PATCH 4/8] mm: try_to_free_swap replaces remove_exclusive_swap_page Hugh Dickins
2008-11-23 22:01 ` [PATCH 5/8] mm: try_to_unuse check removing right swap Hugh Dickins
2008-11-23 22:03 ` [PATCH 6/8] mm: remove try_to_munlock from vmscan Hugh Dickins
2008-11-23 22:53   ` Rik van Riel
2008-11-24 17:34   ` Lee Schermerhorn
2008-11-24 19:29     ` Hugh Dickins
2008-12-01 20:16       ` Lee Schermerhorn
2008-12-02  0:51         ` Hugh Dickins
2008-11-23 22:05 ` [PATCH 7/8] mm: remove gfp_mask from add_to_swap Hugh Dickins
2008-11-23 22:07 ` [PATCH 8/8] mm: add add_to_swap stub Hugh Dickins
2008-11-23 22:55   ` Rik van Riel
2008-11-24 13:49     ` Hugh Dickins
2008-11-24 13:53       ` [PATCH 9/8] mm: optimize get_scan_ratio for no swap Hugh Dickins
2008-11-24 14:11         ` Rik van Riel

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=20081124151542.3c1a4c88.kamezawa.hiroyu@jp.fujitsu.com \
    --to=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=akpm@linux-foundation.org \
    --cc=balbir@linux.vnet.ibm.com \
    --cc=hugh@veritas.com \
    --cc=linux-mm@kvack.org \
    /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