aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/writeback.h2
-rw-r--r--mm/page-writeback.c19
2 files changed, 21 insertions, 0 deletions
diff --git a/include/linux/writeback.h b/include/linux/writeback.h
index 05eaf5e3aad7..b30419cd425e 100644
--- a/include/linux/writeback.h
+++ b/include/linux/writeback.h
@@ -197,6 +197,8 @@ void writeback_set_ratelimit(void);
197void tag_pages_for_writeback(struct address_space *mapping, 197void tag_pages_for_writeback(struct address_space *mapping,
198 pgoff_t start, pgoff_t end); 198 pgoff_t start, pgoff_t end);
199 199
200void account_page_redirty(struct page *page);
201
200/* pdflush.c */ 202/* pdflush.c */
201extern int nr_pdflush_threads; /* Global so it can be exported to sysctl 203extern int nr_pdflush_threads; /* Global so it can be exported to sysctl
202 read-only. */ 204 read-only. */
diff --git a/mm/page-writeback.c b/mm/page-writeback.c
index 5d1ef5d8613a..96b3e7aa705c 100644
--- a/mm/page-writeback.c
+++ b/mm/page-writeback.c
@@ -1825,6 +1825,24 @@ int __set_page_dirty_nobuffers(struct page *page)
1825EXPORT_SYMBOL(__set_page_dirty_nobuffers); 1825EXPORT_SYMBOL(__set_page_dirty_nobuffers);
1826 1826
1827/* 1827/*
1828 * Call this whenever redirtying a page, to de-account the dirty counters
1829 * (NR_DIRTIED, BDI_DIRTIED, tsk->nr_dirtied), so that they match the written
1830 * counters (NR_WRITTEN, BDI_WRITTEN) in long term. The mismatches will lead to
1831 * systematic errors in balanced_dirty_ratelimit and the dirty pages position
1832 * control.
1833 */
1834void account_page_redirty(struct page *page)
1835{
1836 struct address_space *mapping = page->mapping;
1837 if (mapping && mapping_cap_account_dirty(mapping)) {
1838 current->nr_dirtied--;
1839 dec_zone_page_state(page, NR_DIRTIED);
1840 dec_bdi_stat(mapping->backing_dev_info, BDI_DIRTIED);
1841 }
1842}
1843EXPORT_SYMBOL(account_page_redirty);
1844
1845/*
1828 * When a writepage implementation decides that it doesn't want to write this 1846 * When a writepage implementation decides that it doesn't want to write this
1829 * page for some reason, it should redirty the locked page via 1847 * page for some reason, it should redirty the locked page via
1830 * redirty_page_for_writepage() and it should then unlock the page and return 0 1848 * redirty_page_for_writepage() and it should then unlock the page and return 0
@@ -1832,6 +1850,7 @@ EXPORT_SYMBOL(__set_page_dirty_nobuffers);
1832int redirty_page_for_writepage(struct writeback_control *wbc, struct page *page) 1850int redirty_page_for_writepage(struct writeback_control *wbc, struct page *page)
1833{ 1851{
1834 wbc->pages_skipped++; 1852 wbc->pages_skipped++;
1853 account_page_redirty(page);
1835 return __set_page_dirty_nobuffers(page); 1854 return __set_page_dirty_nobuffers(page);
1836} 1855}
1837EXPORT_SYMBOL(redirty_page_for_writepage); 1856EXPORT_SYMBOL(redirty_page_for_writepage);