summaryrefslogtreecommitdiff
path: root/flowtop
diff options
context:
space:
mode:
Diffstat (limited to 'flowtop')
0 files changed, 0 insertions, 0 deletions
fd04ceeba576a2c3acb parent46f3cc176210b2db5db89d9c0e62796cad7e3cdc (diff)
block: immediately dispatch big size request
Currently block plug holds up to 16 non-mergeable requests. This makes sense if the request size is small, eg, reduce lock contention. But if request size is big enough, we don't need to worry about lock contention. Holding such request makes no sense and it lows the disk utilization. In practice, this improves 10% throughput for my raid5 sequential write workload. The size (128k) is arbitrary right now, but it makes sure lock contention is small. This probably could be more intelligent, eg, check average request size holded. Since this is mainly for sequential IO, probably not worthy. V2: check the last request instead of the first request, so as long as there is one big size request we flush the plug. Signed-off-by: Shaohua Li <shli@fb.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat
-rw-r--r--block/blk-core.c4
-rw-r--r--include/linux/blkdev.h1
2 files changed, 4 insertions, 1 deletions
diff --git a/block/blk-core.c b/block/blk-core.c