]> git.baikalelectronics.ru Git - kernel.git/commit
mm: vmscan: only update per-cpu thresholds for online CPU
authorMel Gorman <mgorman@suse.de>
Wed, 6 Aug 2014 23:07:18 +0000 (16:07 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Thu, 7 Aug 2014 01:01:20 +0000 (18:01 -0700)
commitdafcd5a3e319822d619af6da7a0977970f695d12
tree43769dceca0502355d6853e90e62dae6769eea48
parenta23b4341a34b89e5041dac7e8df8fb1445c7a9f1
mm: vmscan: only update per-cpu thresholds for online CPU

When kswapd is awake reclaiming, the per-cpu stat thresholds are lowered
to get more accurate counts to avoid breaching watermarks.  This
threshold update iterates over all possible CPUs which is unnecessary.
Only online CPUs need to be updated.  If a new CPU is onlined,
refresh_zone_stat_thresholds() will set the thresholds correctly.

Signed-off-by: Mel Gorman <mgorman@suse.de>
Acked-by: Johannes Weiner <hannes@cmpxchg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/vmstat.c