]> git.baikalelectronics.ru Git - kernel.git/commit
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>
Tue, 11 Nov 2014 18:04:47 +0000 (11:04 -0700)
commit64b7649d00a040b470a62333ddeefdd985547e27
tree2b7ce3ddc4029a15f7efbe4bb1e5711b9607dfc3
parent424bcce1895e13f3fc83a2054df8365afd3cd5d2
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