mm: double mark_page_accessed() in read_cache_page_async()
authorPeter Zijlstra <peterz@infradead.org>
Sun, 8 Jul 2007 08:13:06 +0000 (01:13 -0700)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Sun, 8 Jul 2007 17:13:21 +0000 (10:13 -0700)
commit4e99325b462ba18075768582621af74a6b79d2a5
treec10d5cca6c42dda86faa3881e406475d8d645764
parent95511ad4342cd094e62c807f6631b9a19cc6b129
mm: double mark_page_accessed() in read_cache_page_async()

Fix a post-2.6.21 regression.

read_cache_page_async() has two invocations of mark_page_accessed() which will
launch pages right onto the active list.

Remove the first one, keeping the latter one.  This avoids marking unwanted
pages active (in the retry loop).

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Acked-by: Nick Piggin <nickpiggin@yahoo.com.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/filemap.c