* [PATCH 2/2] block: only return started requests from blk_mq_tag_to_rq() @ 2020-06-19 14:01 Hannes Reinecke 2020-06-19 14:09 ` Hannes Reinecke 0 siblings, 1 reply; 6+ messages in thread From: Hannes Reinecke @ 2020-06-19 14:01 UTC (permalink / raw) To: Jens Axboe Cc: Christoph Hellwig, Martin K. Petersen, Keith Busch, Sagi Grimberg, James Bottomley, linux-block, linux-scsi, Hannes Reinecke blk_mq_tag_to_rq() is used from within the driver to map a tag to a request. As such it should only return requests which are already started (ie passed to the driver); otherwise the driver might trip over requests which it has never seen and random crashes will occur. Signed-off-by: Hannes Reinecke <hare@suse.de> --- block/blk-mq.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/block/blk-mq.c b/block/blk-mq.c index 4f57d27bfa73..f02d18113f9e 100644 --- a/block/blk-mq.c +++ b/block/blk-mq.c @@ -815,9 +815,13 @@ EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list); struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag) { + struct request *rq; + if (tag < tags->nr_tags) { prefetch(tags->rqs[tag]); - return tags->rqs[tag]; + rq = tags->rqs[tag]; + if (blk_mq_request_started(rq)) + return rq; } return NULL; -- 2.16.4 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] block: only return started requests from blk_mq_tag_to_rq() 2020-06-19 14:01 [PATCH 2/2] block: only return started requests from blk_mq_tag_to_rq() Hannes Reinecke @ 2020-06-19 14:09 ` Hannes Reinecke 2020-06-19 18:38 ` Jens Axboe 2020-06-19 21:59 ` Bart Van Assche 0 siblings, 2 replies; 6+ messages in thread From: Hannes Reinecke @ 2020-06-19 14:09 UTC (permalink / raw) To: Jens Axboe Cc: Christoph Hellwig, Martin K. Petersen, Keith Busch, Sagi Grimberg, James Bottomley, linux-block, linux-scsi On 6/19/20 4:01 PM, Hannes Reinecke wrote: > blk_mq_tag_to_rq() is used from within the driver to map a tag > to a request. As such it should only return requests which are > already started (ie passed to the driver); otherwise the driver > might trip over requests which it has never seen and random > crashes will occur. > > Signed-off-by: Hannes Reinecke <hare@suse.de> > --- > block/blk-mq.c | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/block/blk-mq.c b/block/blk-mq.c > index 4f57d27bfa73..f02d18113f9e 100644 > --- a/block/blk-mq.c > +++ b/block/blk-mq.c > @@ -815,9 +815,13 @@ EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list); > > struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag) > { > + struct request *rq; > + > if (tag < tags->nr_tags) { > prefetch(tags->rqs[tag]); > - return tags->rqs[tag]; > + rq = tags->rqs[tag]; > + if (blk_mq_request_started(rq)) > + return rq; > } > > return NULL; > This becomes particularly obnoxious for SCSI drivers using scsi_host_find_tag() for cleaning up stale commands (ie drivers like qla4xxx, fnic, and snic). All other drivers use it from the completion routine, so one can expect a valid (and started) tag here. So for those it shouldn't matter. But still, if there are objections I could look at fixing it within the SCSI stack; although that would most likely mean I'll have to implement the above patch as an additional function. Cheers, Hannes -- Dr. Hannes Reinecke Teamlead Storage & Networking hare@suse.de +49 911 74053 688 SUSE Software Solutions GmbH, Maxfeldstr. 5, 90409 Nürnberg HRB 36809 (AG Nürnberg), Geschäftsführer: Felix Imendörffer ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] block: only return started requests from blk_mq_tag_to_rq() 2020-06-19 14:09 ` Hannes Reinecke @ 2020-06-19 18:38 ` Jens Axboe 2020-06-19 23:49 ` Ming Lei 2020-06-19 21:59 ` Bart Van Assche 1 sibling, 1 reply; 6+ messages in thread From: Jens Axboe @ 2020-06-19 18:38 UTC (permalink / raw) To: Hannes Reinecke Cc: Christoph Hellwig, Martin K. Petersen, Keith Busch, Sagi Grimberg, James Bottomley, linux-block, linux-scsi On 6/19/20 8:09 AM, Hannes Reinecke wrote: > On 6/19/20 4:01 PM, Hannes Reinecke wrote: >> blk_mq_tag_to_rq() is used from within the driver to map a tag >> to a request. As such it should only return requests which are >> already started (ie passed to the driver); otherwise the driver >> might trip over requests which it has never seen and random >> crashes will occur. >> >> Signed-off-by: Hannes Reinecke <hare@suse.de> >> --- >> block/blk-mq.c | 6 +++++- >> 1 file changed, 5 insertions(+), 1 deletion(-) >> >> diff --git a/block/blk-mq.c b/block/blk-mq.c >> index 4f57d27bfa73..f02d18113f9e 100644 >> --- a/block/blk-mq.c >> +++ b/block/blk-mq.c >> @@ -815,9 +815,13 @@ EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list); >> >> struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag) >> { >> + struct request *rq; >> + >> if (tag < tags->nr_tags) { >> prefetch(tags->rqs[tag]); >> - return tags->rqs[tag]; >> + rq = tags->rqs[tag]; >> + if (blk_mq_request_started(rq)) >> + return rq; >> } >> >> return NULL; >> > This becomes particularly obnoxious for SCSI drivers using > scsi_host_find_tag() for cleaning up stale commands (ie drivers like > qla4xxx, fnic, and snic). > All other drivers use it from the completion routine, so one can expect > a valid (and started) tag here. So for those it shouldn't matter. > > But still, if there are objections I could look at fixing it within the > SCSI stack; although that would most likely mean I'll have to implement > the above patch as an additional function. The helper does exactly what it should, return a request associated with a tag. Either add the logic to the caller, or provide a new helper that does what you need. I'd be inclined to just add it to the caller that needs it. -- Jens Axboe ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] block: only return started requests from blk_mq_tag_to_rq() 2020-06-19 18:38 ` Jens Axboe @ 2020-06-19 23:49 ` Ming Lei 0 siblings, 0 replies; 6+ messages in thread From: Ming Lei @ 2020-06-19 23:49 UTC (permalink / raw) To: Jens Axboe Cc: Hannes Reinecke, Christoph Hellwig, Martin K. Petersen, Keith Busch, Sagi Grimberg, James Bottomley, linux-block, linux-scsi On Fri, Jun 19, 2020 at 12:38:01PM -0600, Jens Axboe wrote: > On 6/19/20 8:09 AM, Hannes Reinecke wrote: > > On 6/19/20 4:01 PM, Hannes Reinecke wrote: > >> blk_mq_tag_to_rq() is used from within the driver to map a tag > >> to a request. As such it should only return requests which are > >> already started (ie passed to the driver); otherwise the driver > >> might trip over requests which it has never seen and random > >> crashes will occur. > >> > >> Signed-off-by: Hannes Reinecke <hare@suse.de> > >> --- > >> block/blk-mq.c | 6 +++++- > >> 1 file changed, 5 insertions(+), 1 deletion(-) > >> > >> diff --git a/block/blk-mq.c b/block/blk-mq.c > >> index 4f57d27bfa73..f02d18113f9e 100644 > >> --- a/block/blk-mq.c > >> +++ b/block/blk-mq.c > >> @@ -815,9 +815,13 @@ EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list); > >> > >> struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag) > >> { > >> + struct request *rq; > >> + > >> if (tag < tags->nr_tags) { > >> prefetch(tags->rqs[tag]); > >> - return tags->rqs[tag]; > >> + rq = tags->rqs[tag]; > >> + if (blk_mq_request_started(rq)) > >> + return rq; > >> } > >> > >> return NULL; > >> > > This becomes particularly obnoxious for SCSI drivers using > > scsi_host_find_tag() for cleaning up stale commands (ie drivers like > > qla4xxx, fnic, and snic). > > All other drivers use it from the completion routine, so one can expect > > a valid (and started) tag here. So for those it shouldn't matter. > > > > But still, if there are objections I could look at fixing it within the > > SCSI stack; although that would most likely mean I'll have to implement > > the above patch as an additional function. > > The helper does exactly what it should, return a request associated > with a tag. Either add the logic to the caller, or provide a new > helper that does what you need. I'd be inclined to just add it to > the caller that needs it. I agree, even though the idea is good for most of driver usage since driver should only care started request. It may cause kernel oops in some corner case, such as blk_mq_poll_hybrid(), blk_poll() may see one not-started request, one example is nvme_execute_rq_polled(). Thanks, Ming ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] block: only return started requests from blk_mq_tag_to_rq() 2020-06-19 14:09 ` Hannes Reinecke 2020-06-19 18:38 ` Jens Axboe @ 2020-06-19 21:59 ` Bart Van Assche 2020-06-22 14:13 ` Hannes Reinecke 1 sibling, 1 reply; 6+ messages in thread From: Bart Van Assche @ 2020-06-19 21:59 UTC (permalink / raw) To: Hannes Reinecke, Jens Axboe Cc: Christoph Hellwig, Martin K. Petersen, Keith Busch, Sagi Grimberg, James Bottomley, linux-block, linux-scsi On 2020-06-19 07:09, Hannes Reinecke wrote: > On 6/19/20 4:01 PM, Hannes Reinecke wrote: >> blk_mq_tag_to_rq() is used from within the driver to map a tag >> to a request. As such it should only return requests which are >> already started (ie passed to the driver); otherwise the driver >> might trip over requests which it has never seen and random >> crashes will occur. >> >> Signed-off-by: Hannes Reinecke <hare@suse.de> >> --- >> block/blk-mq.c | 6 +++++- >> 1 file changed, 5 insertions(+), 1 deletion(-) >> >> diff --git a/block/blk-mq.c b/block/blk-mq.c >> index 4f57d27bfa73..f02d18113f9e 100644 >> --- a/block/blk-mq.c >> +++ b/block/blk-mq.c >> @@ -815,9 +815,13 @@ EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list); >> struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, >> unsigned int tag) >> { >> + struct request *rq; >> + >> if (tag < tags->nr_tags) { >> prefetch(tags->rqs[tag]); >> - return tags->rqs[tag]; >> + rq = tags->rqs[tag]; >> + if (blk_mq_request_started(rq)) >> + return rq; >> } >> return NULL; >> > This becomes particularly obnoxious for SCSI drivers using > scsi_host_find_tag() for cleaning up stale commands (ie drivers like > qla4xxx, fnic, and snic). > All other drivers use it from the completion routine, so one can expect > a valid (and started) tag here. So for those it shouldn't matter. > > But still, if there are objections I could look at fixing it within the > SCSI stack; although that would most likely mean I'll have to implement > the above patch as an additional function. Hi Hannes, Will the above patch make the fast path of every block driver slightly slower? Shouldn't SCSI drivers (and other block drivers) use blk_mq_tagset_busy_iter() to clean up stale commands instead of iterating over all tags and calling blk_mq_tag_to_rq() directly? Thanks, Bart. ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] block: only return started requests from blk_mq_tag_to_rq() 2020-06-19 21:59 ` Bart Van Assche @ 2020-06-22 14:13 ` Hannes Reinecke 0 siblings, 0 replies; 6+ messages in thread From: Hannes Reinecke @ 2020-06-22 14:13 UTC (permalink / raw) To: Bart Van Assche, Jens Axboe Cc: Christoph Hellwig, Martin K. Petersen, Keith Busch, Sagi Grimberg, James Bottomley, linux-block, linux-scsi On 6/19/20 11:59 PM, Bart Van Assche wrote: > On 2020-06-19 07:09, Hannes Reinecke wrote: >> On 6/19/20 4:01 PM, Hannes Reinecke wrote: >>> blk_mq_tag_to_rq() is used from within the driver to map a tag >>> to a request. As such it should only return requests which are >>> already started (ie passed to the driver); otherwise the driver >>> might trip over requests which it has never seen and random >>> crashes will occur. >>> >>> Signed-off-by: Hannes Reinecke <hare@suse.de> >>> --- >>> block/blk-mq.c | 6 +++++- >>> 1 file changed, 5 insertions(+), 1 deletion(-) >>> >>> diff --git a/block/blk-mq.c b/block/blk-mq.c >>> index 4f57d27bfa73..f02d18113f9e 100644 >>> --- a/block/blk-mq.c >>> +++ b/block/blk-mq.c >>> @@ -815,9 +815,13 @@ EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list); >>> struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, >>> unsigned int tag) >>> { >>> + struct request *rq; >>> + >>> if (tag < tags->nr_tags) { >>> prefetch(tags->rqs[tag]); >>> - return tags->rqs[tag]; >>> + rq = tags->rqs[tag]; >>> + if (blk_mq_request_started(rq)) >>> + return rq; >>> } >>> return NULL; >>> >> This becomes particularly obnoxious for SCSI drivers using >> scsi_host_find_tag() for cleaning up stale commands (ie drivers like >> qla4xxx, fnic, and snic). >> All other drivers use it from the completion routine, so one can expect >> a valid (and started) tag here. So for those it shouldn't matter. >> >> But still, if there are objections I could look at fixing it within the >> SCSI stack; although that would most likely mean I'll have to implement >> the above patch as an additional function. > > Hi Hannes, > > Will the above patch make the fast path of every block driver slightly > slower? > > Shouldn't SCSI drivers (and other block drivers) use > blk_mq_tagset_busy_iter() to clean up stale commands instead of > iterating over all tags and calling blk_mq_tag_to_rq() directly? > You can only iterate over all tags with blk_mq_tag_to_rq() if requests are identified with tags, ie if there is a 1:1 mapping between tags and internal commands. Quite some drivers have their internal housekeeping (like hpsa), or do not track all commands via tags (eg fnic or csiostor). For those the block layer iterator will not work as designed. I'm currently preparing a patchset to clean that up (cf my patchset 'reserved tags for SCSI'), but that will probably take some time until it'll be accepted. And even then some drivers have to rely on scsi_host_find_tag() in eg TMF completions to figure out if the command for which the TMF was sent is still active. But we can move the check into the drivers if you are worried about performance impacts; it's a bit lame if you ask me, but if that's the way it should be handled, fine by me. Cheers, Hannes -- Dr. Hannes Reinecke Teamlead Storage & Networking hare@suse.de +49 911 74053 688 SUSE Software Solutions GmbH, Maxfeldstr. 5, 90409 Nürnberg HRB 36809 (AG Nürnberg), Geschäftsführer: Felix Imendörffer ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-06-22 14:20 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-06-19 14:01 [PATCH 2/2] block: only return started requests from blk_mq_tag_to_rq() Hannes Reinecke 2020-06-19 14:09 ` Hannes Reinecke 2020-06-19 18:38 ` Jens Axboe 2020-06-19 23:49 ` Ming Lei 2020-06-19 21:59 ` Bart Van Assche 2020-06-22 14:13 ` Hannes Reinecke
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox