Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b7a71e66 authored by Jens Axboe's avatar Jens Axboe
Browse files

blk-mq: add warning to __blk_mq_run_hw_queue() for ints disabled



We recently had a bug in the IPR SCSI driver, where it would end up
making the SCSI mid layer run the mq hardware queue with interrupts
disabled. This isn't legal, since the software queue locking relies
on never being grabbed from interrupt context. Additionally, drivers
that set BLK_MQ_F_BLOCKING may schedule from this context.

Add a WARN_ON_ONCE() to catch bad users up front.

Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 18e9781d
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -1097,9 +1097,19 @@ static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
{
{
	int srcu_idx;
	int srcu_idx;


	/*
	 * We should be running this queue from one of the CPUs that
	 * are mapped to it.
	 */
	WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
	WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
		cpu_online(hctx->next_cpu));
		cpu_online(hctx->next_cpu));


	/*
	 * We can't run the queue inline with ints disabled. Ensure that
	 * we catch bad users of this early.
	 */
	WARN_ON_ONCE(in_interrupt());

	if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
	if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
		rcu_read_lock();
		rcu_read_lock();
		blk_mq_sched_dispatch_requests(hctx);
		blk_mq_sched_dispatch_requests(hctx);