Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 73685
b: refs/heads/master
c: 5fce25a
h: refs/heads/master
i:
  73683: fb5bfd1
v: v3
  • Loading branch information
Peter Zijlstra authored and Linus Torvalds committed Nov 15, 2007
1 parent 6fb80cf commit be302ef
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 546040dc4872f807d40b69bed86605636082564c
refs/heads/master: 5fce25a9df4865bdd5e3dc4853b269dc1677a02a
19 changes: 17 additions & 2 deletions trunk/mm/page-writeback.c
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,8 @@ get_dirty_limits(long *pbackground, long *pdirty, long *pbdi_dirty,
*/
static void balance_dirty_pages(struct address_space *mapping)
{
long bdi_nr_reclaimable;
long bdi_nr_writeback;
long nr_reclaimable, bdi_nr_reclaimable;
long nr_writeback, bdi_nr_writeback;
long background_thresh;
long dirty_thresh;
long bdi_thresh;
Expand All @@ -376,11 +376,26 @@ static void balance_dirty_pages(struct address_space *mapping)

get_dirty_limits(&background_thresh, &dirty_thresh,
&bdi_thresh, bdi);

nr_reclaimable = global_page_state(NR_FILE_DIRTY) +
global_page_state(NR_UNSTABLE_NFS);
nr_writeback = global_page_state(NR_WRITEBACK);

bdi_nr_reclaimable = bdi_stat(bdi, BDI_RECLAIMABLE);
bdi_nr_writeback = bdi_stat(bdi, BDI_WRITEBACK);

if (bdi_nr_reclaimable + bdi_nr_writeback <= bdi_thresh)
break;

/*
* Throttle it only when the background writeback cannot
* catch-up. This avoids (excessively) small writeouts
* when the bdi limits are ramping up.
*/
if (nr_reclaimable + nr_writeback <
(background_thresh + dirty_thresh) / 2)
break;

if (!bdi->dirty_exceeded)
bdi->dirty_exceeded = 1;

Expand Down

0 comments on commit be302ef

Please sign in to comment.