]> git.karo-electronics.de Git - karo-tx-linux.git/commit
vmscan: add block plug for page reclaim
authorShaohua Li <shaohua.li@intel.com>
Wed, 28 Sep 2011 00:50:01 +0000 (10:50 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 30 Sep 2011 04:53:18 +0000 (14:53 +1000)
commit1ab0ee94bc80e4ffb44150d63c363304414a68e0
tree1c61e52f3c711fe2580ebcd64c4ce21f015f0cff
parentaf7af2b280c62feda093e0e9f98abc08e41e1f00
vmscan: add block plug for page reclaim

per-task block plug can reduce block queue lock contention and increase
request merge.  Currently page reclaim doesn't support it.  I originally
thought page reclaim doesn't need it, because kswapd thread count is
limited and file cache write is done at flusher mostly.

When I test a workload with heavy swap in a 4-node machine, each CPU is
doing direct page reclaim and swap.  This causes block queue lock
contention.  In my test, without below patch, the CPU utilization is about
2% ~ 7%.  With the patch, the CPU utilization is about 1% ~ 3%.  Disk
throughput isn't changed.  This should improve normal kswapd write and
file cache write too (increase request merge for example), but might not
be so obvious as I explain above.

Signed-off-by: Shaohua Li <shaohua.li@intel.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Minchan Kim <minchan.kim@gmail.com>
Signed-off-by: Andrew Morton <>
mm/vmscan.c