All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] blk-mq-sched: add might_sleep() check for flush/fua insert
@ 2017-04-20 22:45 Jens Axboe
  2017-04-20 22:57 ` Bart Van Assche
  0 siblings, 1 reply; 4+ messages in thread
From: Jens Axboe @ 2017-04-20 22:45 UTC (permalink / raw)
  To: linux-block@vger.kernel.org

If we're doing a flush/fua insert, insertion might block on getting
a driver tag, if can_block == true. Add a might_sleep check for that,
since we just had a bug like that. This will help us catch a similar
issue quicker in the future.

diff --git a/block/blk-mq-sched.c b/block/blk-mq-sched.c
index 9e3c0f92851b..57aec8462e93 100644
--- a/block/blk-mq-sched.c
+++ b/block/blk-mq-sched.c
@@ -372,6 +372,7 @@ void blk_mq_sched_insert_request(struct request *rq, bool at_head,
 	struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
 
 	if (rq->tag == -1 && op_is_flush(rq->cmd_flags)) {
+		might_sleep_if(can_block);
 		blk_mq_sched_insert_flush(hctx, rq, can_block);
 		return;
 	}

Signed-off-by: Jens Axboe <axboe@fb.com>

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] blk-mq-sched: add might_sleep() check for flush/fua insert
  2017-04-20 22:45 [PATCH] blk-mq-sched: add might_sleep() check for flush/fua insert Jens Axboe
@ 2017-04-20 22:57 ` Bart Van Assche
  2017-04-20 23:09   ` Jens Axboe
  0 siblings, 1 reply; 4+ messages in thread
From: Bart Van Assche @ 2017-04-20 22:57 UTC (permalink / raw)
  To: linux-block@vger.kernel.org, axboe@kernel.dk

On Thu, 2017-04-20 at 16:45 -0600, Jens Axboe wrote:
> If we're doing a flush/fua insert, insertion might block on getting
> a driver tag, if can_block =3D=3D true. Add a might_sleep check for that,
> since we just had a bug like that. This will help us catch a similar
> issue quicker in the future.
>=20
> diff --git a/block/blk-mq-sched.c b/block/blk-mq-sched.c
> index 9e3c0f92851b..57aec8462e93 100644
> --- a/block/blk-mq-sched.c
> +++ b/block/blk-mq-sched.c
> @@ -372,6 +372,7 @@ void blk_mq_sched_insert_request(struct request *rq, =
bool at_head,
>  	struct blk_mq_hw_ctx *hctx =3D blk_mq_map_queue(q, ctx->cpu);
> =20
>  	if (rq->tag =3D=3D -1 && op_is_flush(rq->cmd_flags)) {
> +		might_sleep_if(can_block);
>  		blk_mq_sched_insert_flush(hctx, rq, can_block);
>  		return;
>  	}

Hello Jens,

The above patch looks fine to me. But seeing that patch made me wonder
whether it would be useful to move that might_sleep_if() call into
blk_mq_get_driver_tag() such that if ever an additional call to
blk_mq_get_driver_tag() is added that might sleep would also be covered?

Bart.=

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] blk-mq-sched: add might_sleep() check for flush/fua insert
  2017-04-20 22:57 ` Bart Van Assche
@ 2017-04-20 23:09   ` Jens Axboe
  2017-04-20 23:20     ` Bart Van Assche
  0 siblings, 1 reply; 4+ messages in thread
From: Jens Axboe @ 2017-04-20 23:09 UTC (permalink / raw)
  To: Bart Van Assche, linux-block@vger.kernel.org

On 04/20/2017 04:57 PM, Bart Van Assche wrote:
> On Thu, 2017-04-20 at 16:45 -0600, Jens Axboe wrote:
>> If we're doing a flush/fua insert, insertion might block on getting
>> a driver tag, if can_block == true. Add a might_sleep check for that,
>> since we just had a bug like that. This will help us catch a similar
>> issue quicker in the future.
>>
>> diff --git a/block/blk-mq-sched.c b/block/blk-mq-sched.c
>> index 9e3c0f92851b..57aec8462e93 100644
>> --- a/block/blk-mq-sched.c
>> +++ b/block/blk-mq-sched.c
>> @@ -372,6 +372,7 @@ void blk_mq_sched_insert_request(struct request *rq, bool at_head,
>>  	struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
>>  
>>  	if (rq->tag == -1 && op_is_flush(rq->cmd_flags)) {
>> +		might_sleep_if(can_block);
>>  		blk_mq_sched_insert_flush(hctx, rq, can_block);
>>  		return;
>>  	}
> 
> Hello Jens,
> 
> The above patch looks fine to me. But seeing that patch made me wonder
> whether it would be useful to move that might_sleep_if() call into
> blk_mq_get_driver_tag() such that if ever an additional call to
> blk_mq_get_driver_tag() is added that might sleep would also be covered?

Yes, that's not a bad suggestion. Below:

From: Jens Axboe <axboe@fb.com>
Subject: [PATCH] blk-mq: add might_sleep check to blk_mq_get_driver_tag()

If the caller passes in wait=true, it has to be able to block
for a driver tag. We just had a bug where flush insertion
would block on tag allocation, while we had preempt disabled.
Ensure that we catch cases like that earlier next time.

Signed-off-by: Jens Axboe <axboe@fb.com>

diff --git a/block/blk-mq.c b/block/blk-mq.c
index 992f09772f8a..dd6e5dd62804 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -866,6 +866,8 @@ bool blk_mq_get_driver_tag(struct request *rq, struct blk_mq_hw_ctx **hctx,
 		.flags = wait ? 0 : BLK_MQ_REQ_NOWAIT,
 	};
 
+	might_sleep_if(wait);
+
 	if (rq->tag != -1)
 		goto done;
 

-- 
Jens Axboe

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] blk-mq-sched: add might_sleep() check for flush/fua insert
  2017-04-20 23:09   ` Jens Axboe
@ 2017-04-20 23:20     ` Bart Van Assche
  0 siblings, 0 replies; 4+ messages in thread
From: Bart Van Assche @ 2017-04-20 23:20 UTC (permalink / raw)
  To: linux-block@vger.kernel.org, axboe@kernel.dk

On Thu, 2017-04-20 at 17:09 -0600, Jens Axboe wrote:
> From: Jens Axboe <axboe@fb.com>
> Subject: [PATCH] blk-mq: add might_sleep check to blk_mq_get_driver_tag()
>=20
> If the caller passes in wait=3Dtrue, it has to be able to block
> for a driver tag. We just had a bug where flush insertion
> would block on tag allocation, while we had preempt disabled.
> Ensure that we catch cases like that earlier next time.
>=20
> Signed-off-by: Jens Axboe <axboe@fb.com>
>=20
> diff --git a/block/blk-mq.c b/block/blk-mq.c
> index 992f09772f8a..dd6e5dd62804 100644
> --- a/block/blk-mq.c
> +++ b/block/blk-mq.c
> @@ -866,6 +866,8 @@ bool blk_mq_get_driver_tag(struct request *rq, struct=
 blk_mq_hw_ctx **hctx,
>  		.flags =3D wait ? 0 : BLK_MQ_REQ_NOWAIT,
>  	};
> =20
> +	might_sleep_if(wait);
> +
>  	if (rq->tag !=3D -1)
>  		goto done;
> =20
>=20

Thanks!

Reviewed-by: Bart Van Assche <Bart.VanAssche@sandisk.com>=

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-04-20 23:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-20 22:45 [PATCH] blk-mq-sched: add might_sleep() check for flush/fua insert Jens Axboe
2017-04-20 22:57 ` Bart Van Assche
2017-04-20 23:09   ` Jens Axboe
2017-04-20 23:20     ` Bart Van Assche

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.