From: Minchan Kim <minchan.kim@gmail.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: lkml <linux-kernel@vger.kernel.org>,
linux-mm <linux-mm@kvack.org>,
Hugh Dickins <hugh.dickins@tiscali.co.uk>,
Rik van Riel <riel@redhat.com>,
KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Subject: [PATCH -mmotm-2009-12-10-17-19] Prevent churning of zero page in LRU list.
Date: Mon, 28 Dec 2009 11:53:15 +0900 [thread overview]
Message-ID: <20091228115315.76b1ecd0.minchan.kim@barrios-desktop> (raw)
VM doesn't add zero page to LRU list.
It means zero page's churning in LRU list is pointless.
As a matter of fact, zero page can't be promoted by mark_page_accessed
since it doesn't have PG_lru.
This patch prevent unecessary mark_page_accessed call of zero page
alghouth caller want FOLL_TOUCH.
Signed-off-by: Minchan Kim <minchan.kim@gmail.com>
---
mm/memory.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/mm/memory.c b/mm/memory.c
index 09e4b1b..485f727 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -1152,6 +1152,7 @@ struct page *follow_page(struct vm_area_struct *vma, unsigned long address,
spinlock_t *ptl;
struct page *page;
struct mm_struct *mm = vma->vm_mm;
+ int zero_pfn = 0;
page = follow_huge_addr(mm, address, flags & FOLL_WRITE);
if (!IS_ERR(page)) {
@@ -1196,15 +1197,15 @@ struct page *follow_page(struct vm_area_struct *vma, unsigned long address,
page = vm_normal_page(vma, address, pte);
if (unlikely(!page)) {
- if ((flags & FOLL_DUMP) ||
- !is_zero_pfn(pte_pfn(pte)))
+ zero_pfn = is_zero_pfn(pte_pfn(pte));
+ if ((flags & FOLL_DUMP) || !zero_pfn )
goto bad_page;
page = pte_page(pte);
}
if (flags & FOLL_GET)
get_page(page);
- if (flags & FOLL_TOUCH) {
+ if (flags & FOLL_TOUCH && !zero_pfn) {
if ((flags & FOLL_WRITE) &&
!pte_dirty(pte) && !PageDirty(page))
set_page_dirty(page);
--
1.5.6.3
--
Kind regards,
Minchan Kim
--
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:[~2009-12-28 2:55 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-28 2:53 Minchan Kim [this message]
2009-12-28 2:57 ` KAMEZAWA Hiroyuki
2009-12-28 3:18 ` KOSAKI Motohiro
2009-12-28 3:22 ` Rik van Riel
2009-12-28 3:56 ` Balbir Singh
2009-12-28 3:57 ` Balbir Singh
2009-12-28 4:12 ` Rik van Riel
2009-12-28 4:17 ` Balbir Singh
2009-12-28 4:09 ` Minchan Kim
2009-12-30 17:03 ` Hugh Dickins
2009-12-31 2:26 ` 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=20091228115315.76b1ecd0.minchan.kim@barrios-desktop \
--to=minchan.kim@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=hugh.dickins@tiscali.co.uk \
--cc=kosaki.motohiro@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox