On 2011-04-15 06:26, hch@xxxxxxxxxxxxx wrote: > Btw, "block: move queue run on unplug to kblockd" currently moves > the __blk_run_queue call to kblockd unconditionally currently. But > I'm not sure that's correct - if we do an explicit blk_finish_plug > there's no point in forcing the context switch. It's correct, but yes it's not optimal for the explicit unplug. Well I think it really depends - for the single sync case, it's not ideal to punt to kblockd. But if you have a bunch of threads doing IO, you probably DO want to punt it to kblockd to avoid too many threads hammering on the queue lock at the same time. Would need testing to be sure, the below would a way to accomplish that. diff --git a/block/blk-core.c b/block/blk-core.c index b598fa7..995e995 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -2662,16 +2662,16 @@ static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b) return !(rqa->q <= rqb->q); } -static void queue_unplugged(struct request_queue *q, unsigned int depth) +static void queue_unplugged(struct request_queue *q, unsigned int depth, bool run_from_wq) { trace_block_unplug_io(q, depth); - __blk_run_queue(q, true); + __blk_run_queue(q, run_from_wq); if (q->unplugged_fn) q->unplugged_fn(q); } -void blk_flush_plug_list(struct blk_plug *plug) +void blk_flush_plug_list(struct blk_plug *plug, bool run_from_wq) { struct request_queue *q; unsigned long flags; @@ -2706,7 +2706,7 @@ void blk_flush_plug_list(struct blk_plug *plug) BUG_ON(!rq->q); if (rq->q != q) { if (q) { - queue_unplugged(q, depth); + queue_unplugged(q, depth, run_from_wq); spin_unlock(q->queue_lock); } q = rq->q; @@ -2727,7 +2727,7 @@ void blk_flush_plug_list(struct blk_plug *plug) } if (q) { - queue_unplugged(q, depth); + queue_unplugged(q, depth, run_from_wq); spin_unlock(q->queue_lock); } @@ -2737,7 +2737,7 @@ EXPORT_SYMBOL(blk_flush_plug_list); void blk_finish_plug(struct blk_plug *plug) { - blk_flush_plug_list(plug); + blk_flush_plug_list(plug, false); if (plug == current->plug) current->plug = NULL; diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index ffe48ff..1c76506 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -865,14 +865,14 @@ struct blk_plug { extern void blk_start_plug(struct blk_plug *); extern void blk_finish_plug(struct blk_plug *); -extern void blk_flush_plug_list(struct blk_plug *); +extern void blk_flush_plug_list(struct blk_plug *, bool); static inline void blk_flush_plug(struct task_struct *tsk) { struct blk_plug *plug = tsk->plug; if (plug) - blk_flush_plug_list(plug); + blk_flush_plug_list(plug, true); } static inline bool blk_needs_flush_plug(struct task_struct *tsk) -- Jens Axboe -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel