If you call blk_start_queue() and blk_run_queue(), you better mean it.
There should be no delay. The only reason it does blk_plug_device() is
so that the work queue function will actually do some work. In the newer
kernels we just do:
set_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags);
kblockd_schedule_work(q, &q->unplug_work);
instead, which is much better.
--
Jens Axboe
--