Skip to content

Commit

Permalink
writeback: disable periodic old data writeback for !dirty_writeback_c…
Browse files Browse the repository at this point in the history
…entisecs

Prior to 2.6.32, setting /proc/sys/vm/dirty_writeback_centisecs disabled
periodic dirty writeback from kupdate. This got broken and now causes
excessive sys CPU usage if set to zero, as we'll keep beating on
schedule().

Cc: stable@kernel.org
Reported-by: Justin Maggard <jmaggard10@gmail.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
  • Loading branch information
Jens Axboe committed May 17, 2010
1 parent 2395e46 commit 69b62d0
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions fs/fs-writeback.c
Original file line number Diff line number Diff line change
Expand Up @@ -852,6 +852,12 @@ static long wb_check_old_data_flush(struct bdi_writeback *wb)
unsigned long expired;
long nr_pages;

/*
* When set to zero, disable periodic writeback
*/
if (!dirty_writeback_interval)
return 0;

expired = wb->last_old_flush +
msecs_to_jiffies(dirty_writeback_interval * 10);
if (time_before(jiffies, expired))
Expand Down Expand Up @@ -947,8 +953,12 @@ int bdi_writeback_task(struct bdi_writeback *wb)
break;
}

wait_jiffies = msecs_to_jiffies(dirty_writeback_interval * 10);
schedule_timeout_interruptible(wait_jiffies);
if (dirty_writeback_interval) {
wait_jiffies = msecs_to_jiffies(dirty_writeback_interval * 10);
schedule_timeout_interruptible(wait_jiffies);
} else
schedule();

try_to_freeze();
}

Expand Down

0 comments on commit 69b62d0

Please sign in to comment.