]> git.baikalelectronics.ru Git - kernel.git/commit
Do dirty page accounting when removing a page from the page cache
authorLinus Torvalds <torvalds@woody.linux-foundation.org>
Wed, 19 Dec 2007 22:05:13 +0000 (14:05 -0800)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Wed, 19 Dec 2007 22:05:13 +0000 (14:05 -0800)
commitb37964378c81b78bb9a09a81ae150a543eda24c4
treeef5b9dce5fd1b27be027fcff0a749547e9319ff0
parent8e255df26c2e7c4ee2c06b59241bde10941d6532
Do dirty page accounting when removing a page from the page cache

Krzysztof Oledzki noticed a dirty page accounting leak on some of his
machines, causing the machine to eventually lock up when the kernel
decided that there was too much dirty data, but nobody could actually
write anything out to fix it.

The culprit turns out to be filesystems (cough ext3 with data=journal
cough) that re-dirty the page when the "->invalidatepage()" callback is
called.

Fix it up by doing a final dirty page accounting check when we actually
remove the page from the page cache.

This fixes bugzilla entry 9182:

http://bugzilla.kernel.org/show_bug.cgi?id=9182

Tested-by: Ingo Molnar <mingo@elte.hu>
Tested-by: Krzysztof Oledzki <olel@ans.pl>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Nick Piggin <nickpiggin@yahoo.com.au>
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/filemap.c