]> git.baikalelectronics.ru Git - kernel.git/commit
vmstat: Reduce time interval to stat update on idle cpu
authorChristoph Lameter <cl@linux.com>
Wed, 11 Feb 2015 23:28:36 +0000 (15:28 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 12 Feb 2015 01:06:07 +0000 (17:06 -0800)
commit2d7d6f9adc718fb633098dd86284784af990ae12
tree9d93d542a10f9ceb3c0ef914b6847975aff445e9
parentfe5cf299baaaa1790852791092c4d051d7f9405a
vmstat: Reduce time interval to stat update on idle cpu

It was noted that the vm stat shepherd runs every 2 seconds and that the
vmstat update is then scheduled 2 seconds in the future.

This yields an interval of double the time interval which is not desired.

Change the shepherd so that it does not delay the vmstat update on the
other cpu.  We stil have to use schedule_delayed_work since we are using a
delayed_work_struct but we can set the delay to 0.

Signed-off-by: Christoph Lameter <cl@linux.com>
Acked-by: Michal Hocko <mhocko@suse.cz>
Cc: Vinayak Menon <vinmenon@codeaurora.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/vmstat.c