]> git.baikalelectronics.ru Git - kernel.git/commit
block: recursive merge requests
authorShaohua Li <shli@fusionio.com>
Fri, 9 Nov 2012 07:44:27 +0000 (08:44 +0100)
committerJens Axboe <axboe@kernel.dk>
Fri, 9 Nov 2012 07:44:27 +0000 (08:44 +0100)
commita16315f77b82d961939bc6bcdcb4aa1ed909c1e3
treeeabe7526c63a6a965cf0aa5574c222ff2f431e13
parent7da026ee880c03568a78b4c97e2b345e808b33a2
block: recursive merge requests

In a workload, thread 1 accesses a, a+2, ..., thread 2 accesses a+1, a+3,....
When the requests are flushed to queue, a and a+1 are merged to (a, a+1), a+2
and a+3 too to (a+2, a+3), but (a, a+1) and (a+2, a+3) aren't merged.

If we do recursive merge for such interleave access, some workloads throughput
get improvement. A recent worload I'm checking on is swap, below change
boostes the throughput around 5% ~ 10%.

Signed-off-by: Shaohua Li <shli@fusionio.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/elevator.c