scsi: ibmvfc: Make ibmvfc_wait_for_ops() MQ aware
authorTyrel Datwyler <tyreld@linux.ibm.com>
Fri, 19 Mar 2021 20:50:29 +0000 (14:50 -0600)
committerMartin K. Petersen <martin.petersen@oracle.com>
Thu, 25 Mar 2021 01:42:30 +0000 (21:42 -0400)
commit62fc2661482b6beccfab8a5987419e96a9499fb4
treef4c20bcb88c305be0695e650e187b8af6adc7793
parent8b1c9b2025491d7c86255fb773b00ecf94b53acc
scsi: ibmvfc: Make ibmvfc_wait_for_ops() MQ aware

During MQ enablement of the ibmvfc driver ibmvfc_wait_for_ops() was
missed. This function is responsible for waiting on commands to complete
that match a certain criteria such as LUN or cancel key. The implementation
as is only scans the CRQ for events ignoring any sub-queues and as a result
will exit successfully without doing anything when operating in MQ
channelized mode.

Check the MQ and channel use flags to determine which queues are
applicable, and scan each queue accordingly. Note in MQ mode SCSI commands
are only issued down sub-queues and the CRQ is only used for driver
specific management commands. As such the CRQ events are ignored when
operating in MQ mode with channels.

Link: https://lore.kernel.org/r/20210319205029.312969-3-tyreld@linux.ibm.com
Fixes: 9000cb998bcf ("scsi: ibmvfc: Enable MQ and set reasonable defaults")
Reviewed-by: Brian King <brking@linux.vnet.ibm.com>
Signed-off-by: Tyrel Datwyler <tyreld@linux.ibm.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/ibmvscsi/ibmvfc.c