Skip to content
Commit 3d80636a authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Fix memory ordering bug in page reclaim



As noticed by Nick Piggin, we need to make sure that we check the page
count before we check for PageDirty, since the dirty check is only valid
if the count implies that we're the only possible ones holding the page.

We always did do this, but the code needs a read-memory-barrier to make
sure that the orderign is also honored by the CPU.

(The writer side is ordered due to the atomic decrement and test on the
page count, see the discussion on linux-kernel)

Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 688ce17b
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment