diff options
author | akpm@osdl.org <akpm@osdl.org> | 2005-04-16 15:24:06 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 15:24:06 -0700 |
commit | 323aca6c0bda611d0f31b3234d9fe291d31a9207 (patch) | |
tree | d1ece2a5bd91f56981f7773f264843828e9b71c6 /mm/vmscan.c | |
parent | 79befd0c08c4766f8fa27e37ac2a70e40840a56a (diff) | |
download | op-kernel-dev-323aca6c0bda611d0f31b3234d9fe291d31a9207.zip op-kernel-dev-323aca6c0bda611d0f31b3234d9fe291d31a9207.tar.gz |
[PATCH] vmscan: pageout(): remove unneeded test
)
We only call pageout() for dirty pages, so this test is redundant.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm/vmscan.c')
-rw-r--r-- | mm/vmscan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/vmscan.c b/mm/vmscan.c index 4003c05..269eded 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -318,7 +318,7 @@ static pageout_t pageout(struct page *page, struct address_space *mapping) * Some data journaling orphaned pages can have * page->mapping == NULL while being dirty with clean buffers. */ - if (PageDirty(page) && PagePrivate(page)) { + if (PagePrivate(page)) { if (try_to_free_buffers(page)) { ClearPageDirty(page); printk("%s: orphaned page\n", __FUNCTION__); |