linux-scsi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] scsi: fixup scsi_device_from_queue()
@ 2019-10-18 14:03 Hannes Reinecke
  2019-10-18 14:24 ` Steffen Maier
  0 siblings, 1 reply; 2+ messages in thread
From: Hannes Reinecke @ 2019-10-18 14:03 UTC (permalink / raw)
  To: Martin K. Petersen
  Cc: Christoph Hellwig, James Bottomley, Martin Wilck, linux-scsi,
	Hannes Reinecke, Hannes Reinecke

After commit 8930a6c20791 ("scsi: core: add support for request batching")
scsi_device_from_queue() will not work for devices implementing the
new scsi_mq_ops_no_commit template.
Hence multipath is not able to detect the underlying scsi devices
and multipath startup will fail.

Fixes: 8930a6c20791 ("scsi: core: add support for request batching")
Signed-off-by: Hannes Reinecke <hare@suse.com>
---
 drivers/scsi/scsi_lib.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c
index c1c2998297b2..cd3e21a0098c 100644
--- a/drivers/scsi/scsi_lib.c
+++ b/drivers/scsi/scsi_lib.c
@@ -1924,7 +1924,8 @@ struct scsi_device *scsi_device_from_queue(struct request_queue *q)
 {
 	struct scsi_device *sdev = NULL;
 
-	if (q->mq_ops == &scsi_mq_ops)
+	if (q->mq_ops == &scsi_mq_ops ||
+	    q->mq_ops == &scsi_mq_ops_no_commit)
 		sdev = q->queuedata;
 	if (!sdev || !get_device(&sdev->sdev_gendev))
 		sdev = NULL;
-- 
2.16.4


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

* Re: [PATCH] scsi: fixup scsi_device_from_queue()
  2019-10-18 14:03 [PATCH] scsi: fixup scsi_device_from_queue() Hannes Reinecke
@ 2019-10-18 14:24 ` Steffen Maier
  0 siblings, 0 replies; 2+ messages in thread
From: Steffen Maier @ 2019-10-18 14:24 UTC (permalink / raw)
  To: Hannes Reinecke, Martin K. Petersen
  Cc: Christoph Hellwig, James Bottomley, Martin Wilck, linux-scsi,
	Hannes Reinecke

Hannes, this is already in 
https://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git/log/?h=5.4/scsi-postmerge 
from 
https://lore.kernel.org/linux-block/20190807144948.28265-1-maier@linux.ibm.com/T/ 
and Martin just sent a pull request to Linus 
https://lore.kernel.org/linux-scsi/yq1pniui429.fsf@oracle.com/T/#m91f5b9098c369dc0d9bfef84aa53ee35533a31be

On 10/18/19 4:03 PM, Hannes Reinecke wrote:
> After commit 8930a6c20791 ("scsi: core: add support for request batching")
> scsi_device_from_queue() will not work for devices implementing the
> new scsi_mq_ops_no_commit template.
> Hence multipath is not able to detect the underlying scsi devices
> and multipath startup will fail.
> 
> Fixes: 8930a6c20791 ("scsi: core: add support for request batching")
> Signed-off-by: Hannes Reinecke <hare@suse.com>
> ---
>   drivers/scsi/scsi_lib.c | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c
> index c1c2998297b2..cd3e21a0098c 100644
> --- a/drivers/scsi/scsi_lib.c
> +++ b/drivers/scsi/scsi_lib.c
> @@ -1924,7 +1924,8 @@ struct scsi_device *scsi_device_from_queue(struct request_queue *q)
>   {
>   	struct scsi_device *sdev = NULL;
> 
> -	if (q->mq_ops == &scsi_mq_ops)
> +	if (q->mq_ops == &scsi_mq_ops ||
> +	    q->mq_ops == &scsi_mq_ops_no_commit)
>   		sdev = q->queuedata;
>   	if (!sdev || !get_device(&sdev->sdev_gendev))
>   		sdev = NULL;
> 


-- 
Mit freundlichen Gruessen / Kind regards
Steffen Maier

Linux on IBM Z Development

https://www.ibm.com/privacy/us/en/
IBM Deutschland Research & Development GmbH
Vorsitzender des Aufsichtsrats: Matthias Hartmann
Geschaeftsfuehrung: Dirk Wittkopp
Sitz der Gesellschaft: Boeblingen
Registergericht: Amtsgericht Stuttgart, HRB 243294


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

end of thread, other threads:[~2019-10-18 14:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-18 14:03 [PATCH] scsi: fixup scsi_device_from_queue() Hannes Reinecke
2019-10-18 14:24 ` Steffen Maier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).