aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens Axboe2008-11-19 07:38:39 -0600
committerJens Axboe2008-12-29 01:28:42 -0600
commit70ed28b92a786f44750ab64117b03d126dd14656 (patch)
tree03e84c48c262b380fbcccb21f55ff979aaeb4e77 /block/blk-core.c
parent65d3618ccfe686e8d7b3f01a838d0578182406df (diff)
downloadkernel-common-70ed28b92a786f44750ab64117b03d126dd14656.tar.gz
kernel-common-70ed28b92a786f44750ab64117b03d126dd14656.tar.xz
kernel-common-70ed28b92a786f44750ab64117b03d126dd14656.zip
block: leave the request timeout timer running even on an empty list
For sync IO, we'll often do them serialized. This means we'll be touching the queue timer for every IO, as opposed to only occasionally like we do for queued IO. Instead of deleting the timer when the last request is removed, just let continue running. If a new request comes up soon we then don't have to readd the timer again. If no new requests arrive, the timer will expire without side effect later. This improves high iops sync IO by ~1%. Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block/blk-core.c')
-rw-r--r--block/blk-core.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/block/blk-core.c b/block/blk-core.c
index 561e8a1b43a..243d18b4ceb 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -404,6 +404,7 @@ EXPORT_SYMBOL(blk_stop_queue);
404void blk_sync_queue(struct request_queue *q) 404void blk_sync_queue(struct request_queue *q)
405{ 405{
406 del_timer_sync(&q->unplug_timer); 406 del_timer_sync(&q->unplug_timer);
407 del_timer_sync(&q->timeout);
407 kblockd_flush_work(&q->unplug_work); 408 kblockd_flush_work(&q->unplug_work);
408} 409}
409EXPORT_SYMBOL(blk_sync_queue); 410EXPORT_SYMBOL(blk_sync_queue);