blk_mq: call preempt_disable/enable in blk_mq_run_hw_queue, and only if needed
authorPaolo Bonzini <pbonzini@redhat.com>
Fri, 7 Nov 2014 22:03:59 +0000 (23:03 +0100)
committerJens Axboe <axboe@fb.com>
Mon, 30 Mar 2015 18:54:56 +0000 (12:54 -0600)
commit2bba6dba646b283a92f9ebaefb2dac7d64cbc8da
tree05f6b038abedb3113bd10fef89891f5e253a3130
parent0f14871cbcd2e5066b92e2cd323bbf48ab5f5874
blk_mq: call preempt_disable/enable in blk_mq_run_hw_queue, and only if needed

preempt_disable/enable surrounds every call to blk_mq_run_hw_queue,
except the one in blk-flush.c.  In fact that one is always asynchronous,
and it does not need smp_processor_id().

We can do the same for all other calls, avoiding preempt_disable when
async is true.  This avoids peppering blk-mq.c with preemption-disabled
regions.

Cc: Jens Axboe <axboe@kernel.dk>
Cc: Thomas Gleixner <tglx@linutronix.de>
Reported-by: Clark Williams <williams@redhat.com>
Tested-by: Clark Williams <williams@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
block/blk-mq.c