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>
This commit is contained in:

committed by
Linus Torvalds

parent
b30fe6c7ce
commit
8d38633c3b
@@ -2168,9 +2168,12 @@ EXPORT_SYMBOL(account_page_redirty);
|
||||
*/
|
||||
int redirty_page_for_writepage(struct writeback_control *wbc, struct page *page)
|
||||
{
|
||||
int ret;
|
||||
|
||||
wbc->pages_skipped++;
|
||||
ret = __set_page_dirty_nobuffers(page);
|
||||
account_page_redirty(page);
|
||||
return __set_page_dirty_nobuffers(page);
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL(redirty_page_for_writepage);
|
||||
|
||||
|
Reference in New Issue
Block a user