From: Lee Schermerhorn <lee.schermerhorn@hp.com>
To: linux-mm <linux-mm@kvack.org>
Cc: Martin Hicks <mort@sgi.com>,
lhms-devel <lhms-devel@lists.sourceforge.net>
Subject: [PATCH] shrink_list skip anon pages if not may_swap
Date: Mon, 12 Sep 2005 13:29:51 -0400 [thread overview]
Message-ID: <1126546191.5182.29.camel@localhost.localdomain> (raw)
Martin Hicks' page cache reclaim patch added the 'may_swap' flag to the
scan_control struct; and modified shrink_list() not to add anon pages to
the swap cache if may_swap is not asserted.
Ref: http://marc.theaimsgroup.com/?l=linux-mm&m=111461480725322&w=4
However, further down, if the page is mapped, shrink_list() calls
try_to_unmap() which will call try_to_unmap_one() via try_to_unmap_anon
(). try_to_unmap_one() will BUG_ON() an anon page that is NOT in the
swap cache. Martin says he never encountered this path in his testing,
but agrees that it might happen.
This patch modifies shrink_list() to skip anon pages that are not
already in the swap cache when !may_swap, rather than just not adding
them to the cache.
Cc to lhms-devel because memory hotplug page migration also uses
shrink_list.
Signed-off-by: Lee Schermerhorn <lee.schermerhorn@hp.com>
============================================================
--- shrink_list-skip-anon-pages-if-not-may_swap/mm/vmscan.c~original 2005-08-28 19:41:01.000000000 -0400
+++ shrink_list-skip-anon-pages-if-not-may_swap/mm/vmscan.c 2005-09-12 10:17:01.000000000 -0400
@@ -417,7 +417,9 @@ static int shrink_list(struct list_head
* Anonymous process memory has backing store?
* Try to allocate it some swap space here.
*/
- if (PageAnon(page) && !PageSwapCache(page) && sc->may_swap) {
+ if (PageAnon(page) && !PageSwapCache(page)) {
+ if (!sc->may_swap)
+ goto keep_locked;
if (!add_to_swap(page))
goto activate_locked;
}
--
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>
next reply other threads:[~2005-09-12 17:29 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-09-12 17:29 Lee Schermerhorn [this message]
2005-09-12 23:21 ` Rik van Riel
2005-09-13 1:21 ` Martin Hicks
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=1126546191.5182.29.camel@localhost.localdomain \
--to=lee.schermerhorn@hp.com \
--cc=lhms-devel@lists.sourceforge.net \
--cc=linux-mm@kvack.org \
--cc=mort@sgi.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox