]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit615150293827f9679c1d2d9c799d7e1c3994b698
treec10d5cca6c42dda86faa3881e406475d8d645764
parentefcdd6f72e3c183e84fc9d6b1cd10fd51755c64e
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