diff options
author | Nick Piggin <npiggin@suse.de> | 2007-07-19 04:47:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 13:04:41 -0400 |
commit | 79352894b28550ee0eee919149f57626ec1b3572 (patch) | |
tree | 849e6aa148c69b9df3920199255ca14792eeffa2 /mm/memory.c | |
parent | 83c54070ee1a2d05c89793884bea1a03f2851ed4 (diff) |
mm: fix clear_page_dirty_for_io vs fault race
Fix msync data loss and (less importantly) dirty page accounting
inaccuracies due to the race remaining in clear_page_dirty_for_io().
The deleted comment explains what the race was, and the added comments
explain how it is fixed.
Signed-off-by: Nick Piggin <npiggin@suse.de>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Miklos Szeredi <miklos@szeredi.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/memory.c')
-rw-r--r-- | mm/memory.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mm/memory.c b/mm/memory.c index 61d51da7e17c..50dd3d1f4d18 100644 --- a/mm/memory.c +++ b/mm/memory.c | |||
@@ -1765,6 +1765,15 @@ gotten: | |||
1765 | unlock: | 1765 | unlock: |
1766 | pte_unmap_unlock(page_table, ptl); | 1766 | pte_unmap_unlock(page_table, ptl); |
1767 | if (dirty_page) { | 1767 | if (dirty_page) { |
1768 | /* | ||
1769 | * Yes, Virginia, this is actually required to prevent a race | ||
1770 | * with clear_page_dirty_for_io() from clearing the page dirty | ||
1771 | * bit after it clear all dirty ptes, but before a racing | ||
1772 | * do_wp_page installs a dirty pte. | ||
1773 | * | ||
1774 | * do_no_page is protected similarly. | ||
1775 | */ | ||
1776 | wait_on_page_locked(dirty_page); | ||
1768 | set_page_dirty_balance(dirty_page); | 1777 | set_page_dirty_balance(dirty_page); |
1769 | put_page(dirty_page); | 1778 | put_page(dirty_page); |
1770 | } | 1779 | } |