From: Johannes Weiner <hannes@cmpxchg.org>
To: Minchan Kim <minchan.kim@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
Rik van Riel <riel@redhat.com>,
linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [patch 1/3] vmscan: factor out page reference checks
Date: Tue, 23 Feb 2010 15:21:58 +0100 [thread overview]
Message-ID: <20100223142158.GA29762@cmpxchg.org> (raw)
In-Reply-To: <1266932303.2723.13.camel@barrios-desktop>
Hello Minchan,
On Tue, Feb 23, 2010 at 10:38:23PM +0900, Minchan Kim wrote:
> Hi, Hannes.
>
> On Mon, 2010-02-22 at 20:49 +0100, Johannes Weiner wrote:
> > Moving the big conditional into its own predicate function makes the
> > code a bit easier to read and allows for better commenting on the
> > checks one-by-one.
> >
> > This is just cleaning up, no semantics should have been changed.
> >
> > Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
> > ---
> > mm/vmscan.c | 53 ++++++++++++++++++++++++++++++++++++++++-------------
> > 1 files changed, 40 insertions(+), 13 deletions(-)
> >
> > diff --git a/mm/vmscan.c b/mm/vmscan.c
> > index c26986c..c2db55b 100644
> > --- a/mm/vmscan.c
> > +++ b/mm/vmscan.c
> > @@ -579,6 +579,37 @@ redo:
> > put_page(page); /* drop ref from isolate */
> > }
> >
> > +enum page_references {
> > + PAGEREF_RECLAIM,
> > + PAGEREF_RECLAIM_CLEAN,
> > + PAGEREF_ACTIVATE,
> > +};
> > +
> > +static enum page_references page_check_references(struct page *page,
> > + struct scan_control *sc)
> > +{
> > + unsigned long vm_flags;
> > + int referenced;
> > +
> > + referenced = page_referenced(page, 1, sc->mem_cgroup, &vm_flags);
> > + if (!referenced)
> > + return PAGEREF_RECLAIM;
> > +
> > + /* Lumpy reclaim - ignore references */
> > + if (sc->order > PAGE_ALLOC_COSTLY_ORDER)
> > + return PAGEREF_RECLAIM;
> > +
> > + /* Mlock lost isolation race - let try_to_unmap() handle it */
>
> How doest try_to_unamp handle it?
>
> /* Page which PG_mlocked lost isolation race - let try_to_unmap() move
> the page to unevitable list */
>
> The point is to move the page into unevictable list in case of race.
> Let's write down comment more clearly.
> As it was, it was clear, I think. :)
Okay, I do not feel strongly about it. I just figured it would be enough
at this point to say 'page is special, pass it on to try_to_unmap(), it
knows how to handle it. We do not care.'. But maybe you are right.
I attached an incremental patch below.
> > + if (vm_flags & VM_LOCKED)
> > + return PAGEREF_RECLAIM;
> > +
> > + if (page_mapping_inuse(page))
> > + return PAGEREF_ACTIVATE;
> > +
> > + /* Reclaim if clean, defer dirty pages to writeback */
> > + return PAGEREF_RECLAIM_CLEAN;
> > +}
> > +
> > /*
> > * shrink_page_list() returns the number of reclaimed pages
> > */
> > @@ -590,16 +621,15 @@ static unsigned long shrink_page_list(struct list_head *page_list,
> > struct pagevec freed_pvec;
> > int pgactivate = 0;
> > unsigned long nr_reclaimed = 0;
> > - unsigned long vm_flags;
> >
> > cond_resched();
> >
> > pagevec_init(&freed_pvec, 1);
> > while (!list_empty(page_list)) {
> > + enum page_references references;
> > struct address_space *mapping;
> > struct page *page;
> > int may_enter_fs;
> > - int referenced;
> >
> > cond_resched();
> >
> > @@ -641,17 +671,14 @@ static unsigned long shrink_page_list(struct list_head *page_list,
> > goto keep_locked;
> > }
> >
> > - referenced = page_referenced(page, 1,
> > - sc->mem_cgroup, &vm_flags);
> > - /*
> > - * In active use or really unfreeable? Activate it.
> > - * If page which have PG_mlocked lost isoltation race,
> > - * try_to_unmap moves it to unevictable list
> > - */
> > - if (sc->order <= PAGE_ALLOC_COSTLY_ORDER &&
> > - referenced && page_mapping_inuse(page)
> > - && !(vm_flags & VM_LOCKED))
> > + references = page_check_references(page, sc);
> > + switch (references) {
> > + case PAGEREF_ACTIVATE:
> > goto activate_locked;
> > + case PAGEREF_RECLAIM:
> > + case PAGEREF_RECLAIM_CLEAN:
> > + ; /* try to reclaim the page below */
> > + }
> >
> > /*
> > * Anonymous process memory has backing store?
> > @@ -685,7 +712,7 @@ static unsigned long shrink_page_list(struct list_head *page_list,
> > }
> >
> > if (PageDirty(page)) {
> > - if (sc->order <= PAGE_ALLOC_COSTLY_ORDER && referenced)
> > + if (references == PAGEREF_RECLAIM_CLEAN)
>
> How equal PAGEREF_RECLAIM_CLEAN and sc->order <= PAGE_ALLOC_COSTLY_ORDER
> && referenced by semantic?
It is encoded in page_check_references(). When
sc->order <= PAGE_ALLOC_COSTLY_ORDER && referenced
it returns PAGEREF_RECLAIM_CLEAN.
So
- PageDirty() && order < COSTLY && referenced
+ PageDirty() && references == PAGEREF_RECLAIM_CLEAN
is an equivalent transformation. Does this answer your question?
Hannes
---
From: Johannes Weiner <hannes@cmpxchg.org>
Subject: vmscan: improve comment on mlocked page in reclaim
Signed-off-by: Johannes Weiner <hannes@cmpxchg.org>
---
diff --git a/mm/vmscan.c b/mm/vmscan.c
index 674a78b..819fff7 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -578,7 +578,10 @@ static enum page_references page_check_references(struct page *page,
if (sc->order > PAGE_ALLOC_COSTLY_ORDER)
return PAGEREF_RECLAIM;
- /* Mlock lost isolation race - let try_to_unmap() handle it */
+ /*
+ * Mlock lost the isolation race with us. Let try_to_unmap()
+ * move the page to the unevictable list.
+ */
if (vm_flags & VM_LOCKED)
return PAGEREF_RECLAIM;
--
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 prev parent reply other threads:[~2010-02-23 14:22 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-22 19:49 mm: used-once mapped file page detection Johannes Weiner
2010-02-22 19:49 ` [patch 1/3] vmscan: factor out page reference checks Johannes Weiner
2010-02-22 20:27 ` Rik van Riel
2010-02-23 13:38 ` Minchan Kim
2010-02-23 14:21 ` Johannes Weiner [this message]
2010-02-23 14:31 ` Rik van Riel
2010-02-23 14:44 ` Minchan Kim
2010-02-23 15:40 ` Johannes Weiner
2010-02-23 16:04 ` Minchan Kim
2010-02-22 19:49 ` [patch 2/3] vmscan: drop page_mapping_inuse() Johannes Weiner
2010-02-22 20:28 ` Rik van Riel
2010-02-23 14:03 ` Minchan Kim
2010-02-23 14:32 ` Johannes Weiner
2010-02-23 14:48 ` Minchan Kim
2010-02-22 19:49 ` [patch 3/3] vmscan: detect mapped file pages used only once Johannes Weiner
2010-02-22 20:34 ` Rik van Riel
2010-02-23 15:03 ` Minchan Kim
2010-02-23 15:45 ` Johannes Weiner
2010-02-24 21:39 ` mm: used-once mapped file page detection Andrew Morton
2010-02-26 14:32 ` Johannes Weiner
2010-02-28 17:49 ` Rik van Riel
2010-02-28 20:36 ` Johannes Weiner
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=20100223142158.GA29762@cmpxchg.org \
--to=hannes@cmpxchg.org \
--cc=akpm@linux-foundation.org \
--cc=kosaki.motohiro@jp.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=minchan.kim@gmail.com \
--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