diff options
author | Konstantin Khebnikov <khlebnikov@yandex-team.ru> | 2015-02-11 15:26:55 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-11 17:06:04 -0800 |
commit | 8d38633c3b4093aca7524945f1e9249d7d3a44da (patch) | |
tree | c2220d43cd690f94dccb8d0f4917199ed5689a9c /fs/btrfs | |
parent | b30fe6c7ced70f62862c3d09357e7e8084e98d9f (diff) | |
download | linux-stable-8d38633c3b4093aca7524945f1e9249d7d3a44da.tar.gz linux-stable-8d38633c3b4093aca7524945f1e9249d7d3a44da.tar.bz2 linux-stable-8d38633c3b4093aca7524945f1e9249d7d3a44da.zip |
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')
-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) while (index <= end_index) { page = find_get_page(inode->i_mapping, index); BUG_ON(!page); /* Pages should be in the extent_io_tree */ - account_page_redirty(page); __set_page_dirty_nobuffers(page); + account_page_redirty(page); page_cache_release(page); index++; } |