From: Andrew Morton <akpm@osdl.org>
To: Shantanu Goel <sgoel01@yahoo.com>
Cc: nickpiggin@yahoo.com.au, linux-kernel@vger.kernel.org
Subject: Re: [VM PATCH 2.6.6-rc3-bk5] Dirty balancing in the presence of mapped pages
Date: Tue, 4 May 2004 22:25:24 -0700 [thread overview]
Message-ID: <20040504222524.23a83c02.akpm@osdl.org> (raw)
In-Reply-To: <20040505043115.92441.qmail@web12823.mail.yahoo.com>
Shantanu Goel <sgoel01@yahoo.com> wrote:
>
> > In this case, given that we have an actively mapped
> > MAP_SHARED pagecache
> > page, marking it dirty will cause it to be written
> > by pdflush. Even though
> > we're not about to reclaim it, and even though the
> > process which is mapping
> > the page may well modify it again. This patch will
> > cause additional I/O.
> >
>
> True, but is that really very different from normal
> file I/O where we actively balance # dirty pages?
> Also, the I/O will only happen if the dirty thresholds
> are exceeded. It probably makes sense though to skip
> SwapCache pages to more closely mimic file I/O
> behaviour.
We need to think about why real applications (as opposed to benchmarks) use
MAP_SHARED. I suspect many of them will modify pages again and again and
again. We really want to avoid writing these pages out until the
application has truly finished with them.
I think it is probably the case that pages which were dirtied with write(2)
are much less likely to be redirtied than pages which were dirtied via
MAP_SHARED.
One thing you might like to look at is to give these pages another trip
around the LRU after they have been unmapped from pagetables, and to give
pdflush a poke. Add instrumentation to record how many pages end up
getting written via vmscan's writepage versus via pdflush (use
current_is_pdflush()).
diff -puN mm/vmscan.c~a mm/vmscan.c
--- 25/mm/vmscan.c~a 2004-05-04 22:21:41.613856240 -0700
+++ 25-akpm/mm/vmscan.c 2004-05-04 22:23:16.016504856 -0700
@@ -318,7 +318,9 @@ shrink_list(struct list_head *page_list,
rmap_unlock(page);
goto keep_locked;
case SWAP_SUCCESS:
- ; /* try to free the page below */
+ if (PageDirty(page))
+ goto keep_locked;
+ break;
}
}
rmap_unlock(page);
_
next prev parent reply other threads:[~2004-05-05 5:25 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-05-05 0:20 Shantanu Goel
2004-05-05 1:03 ` Andrew Morton
2004-05-05 2:16 ` Nick Piggin
2004-05-05 2:57 ` Andrew Morton
2004-05-05 3:16 ` Nick Piggin
2004-05-05 3:24 ` Nick Piggin
2004-05-09 17:24 ` Bill Davidsen
2004-05-05 4:31 ` Shantanu Goel
2004-05-05 5:25 ` Andrew Morton [this message]
2004-05-05 16:56 ` Nikita Danilov
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=20040504222524.23a83c02.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nickpiggin@yahoo.com.au \
--cc=sgoel01@yahoo.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
all inboxes | Powered by JetHome®