diff options
author | Konstantin Khebnikov <khlebnikov@yandex-team.ru> | 2015-02-11 18:26:55 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-11 20:06:04 -0500 |
commit | 8d38633c3b4093aca7524945f1e9249d7d3a44da (patch) | |
tree | c2220d43cd690f94dccb8d0f4917199ed5689a9c /fs/btrfs/extent_io.c | |
parent | b30fe6c7ced70f62862c3d09357e7e8084e98d9f (diff) |
page_writeback: put account_page_redirty() after set_page_dirty()
Helper account_page_redirty() fixes dirty pages counter for redirtied
pages. This patch puts it after dirtying and prevents temporary
underflows of dirtied pages counters on zone/bdi and current->nr_dirtied.
Signed-off-by: Konstantin Khebnikov <khlebnikov@yandex-team.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/btrfs/extent_io.c')
-rw-r--r-- | fs/btrfs/extent_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/extent_io.c b/fs/btrfs/extent_io.c index 790dbae3343c..c73df6a7c9b6 100644 --- a/fs/btrfs/extent_io.c +++ b/fs/btrfs/extent_io.c | |||
@@ -1407,8 +1407,8 @@ int extent_range_redirty_for_io(struct inode *inode, u64 start, u64 end) | |||
1407 | while (index <= end_index) { | 1407 | while (index <= end_index) { |
1408 | page = find_get_page(inode->i_mapping, index); | 1408 | page = find_get_page(inode->i_mapping, index); |
1409 | BUG_ON(!page); /* Pages should be in the extent_io_tree */ | 1409 | BUG_ON(!page); /* Pages should be in the extent_io_tree */ |
1410 | account_page_redirty(page); | ||
1411 | __set_page_dirty_nobuffers(page); | 1410 | __set_page_dirty_nobuffers(page); |
1411 | account_page_redirty(page); | ||
1412 | page_cache_release(page); | 1412 | page_cache_release(page); |
1413 | index++; | 1413 | index++; |
1414 | } | 1414 | } |