* [PATCH] scsi: pm80xx: Do not use libsas port id
@ 2024-11-21 19:49 TJ Adams
2024-12-04 19:51 ` Martin K. Petersen
2024-12-10 2:35 ` Martin K. Petersen
0 siblings, 2 replies; 3+ messages in thread
From: TJ Adams @ 2024-11-21 19:49 UTC (permalink / raw)
To: Jack Wang, James E . J . Bottomley, Martin K . Petersen
Cc: linux-scsi, linux-kernel, Igor Pylypiv, Terrence Adams
From: Igor Pylypiv <ipylypiv@google.com>
libsas port ids can differ from the controller's port ids.
Using libsas port id to index pm8001_ha->port array is a bug.
Remove sas_find_local_port_id(). We can use pm8001_ha->phy[phy_id].port
to get the port id.
Signed-off-by: Igor Pylypiv <ipylypiv@google.com>
Signed-off-by: Terrence Adams <tadamsjr@google.com>
---
drivers/scsi/pm8001/pm8001_sas.c | 21 ++-------------------
1 file changed, 2 insertions(+), 19 deletions(-)
diff --git a/drivers/scsi/pm8001/pm8001_sas.c b/drivers/scsi/pm8001/pm8001_sas.c
index ee2da8e49d4c..061b57b1cc7a 100644
--- a/drivers/scsi/pm8001/pm8001_sas.c
+++ b/drivers/scsi/pm8001/pm8001_sas.c
@@ -374,23 +374,6 @@ static int pm8001_task_prep_ssp(struct pm8001_hba_info *pm8001_ha,
return PM8001_CHIP_DISP->ssp_io_req(pm8001_ha, ccb);
}
- /* Find the local port id that's attached to this device */
-static int sas_find_local_port_id(struct domain_device *dev)
-{
- struct domain_device *pdev = dev->parent;
-
- /* Directly attached device */
- if (!pdev)
- return dev->port->id;
- while (pdev) {
- struct domain_device *pdev_p = pdev->parent;
- if (!pdev_p)
- return pdev->port->id;
- pdev = pdev->parent;
- }
- return 0;
-}
-
#define DEV_IS_GONE(pm8001_dev) \
((!pm8001_dev || (pm8001_dev->dev_type == SAS_PHY_UNUSED)))
@@ -463,10 +446,10 @@ int pm8001_queue_command(struct sas_task *task, gfp_t gfp_flags)
spin_lock_irqsave(&pm8001_ha->lock, flags);
pm8001_dev = dev->lldd_dev;
- port = &pm8001_ha->port[sas_find_local_port_id(dev)];
+ port = pm8001_ha->phy[pm8001_dev->attached_phy].port;
if (!internal_abort &&
- (DEV_IS_GONE(pm8001_dev) || !port->port_attached)) {
+ (DEV_IS_GONE(pm8001_dev) || !port || !port->port_attached)) {
ts->resp = SAS_TASK_UNDELIVERED;
ts->stat = SAS_PHY_DOWN;
if (sas_protocol_ata(task_proto)) {
--
2.47.0.371.ga323438b13-goog
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] scsi: pm80xx: Do not use libsas port id
2024-11-21 19:49 [PATCH] scsi: pm80xx: Do not use libsas port id TJ Adams
@ 2024-12-04 19:51 ` Martin K. Petersen
2024-12-10 2:35 ` Martin K. Petersen
1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2024-12-04 19:51 UTC (permalink / raw)
To: TJ Adams
Cc: Jack Wang, James E . J . Bottomley, Martin K . Petersen,
linux-scsi, linux-kernel, Igor Pylypiv
TJ,
> libsas port ids can differ from the controller's port ids. Using
> libsas port id to index pm8001_ha->port array is a bug.
Applied to 6.14/scsi-staging, thanks!
--
Martin K. Petersen Oracle Linux Engineering
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] scsi: pm80xx: Do not use libsas port id
2024-11-21 19:49 [PATCH] scsi: pm80xx: Do not use libsas port id TJ Adams
2024-12-04 19:51 ` Martin K. Petersen
@ 2024-12-10 2:35 ` Martin K. Petersen
1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2024-12-10 2:35 UTC (permalink / raw)
To: Jack Wang, James E . J . Bottomley, TJ Adams
Cc: Martin K . Petersen, linux-scsi, linux-kernel, Igor Pylypiv
On Thu, 21 Nov 2024 11:49:15 -0800, TJ Adams wrote:
> libsas port ids can differ from the controller's port ids.
> Using libsas port id to index pm8001_ha->port array is a bug.
>
> Remove sas_find_local_port_id(). We can use pm8001_ha->phy[phy_id].port
> to get the port id.
>
>
> [...]
Applied to 6.14/scsi-queue, thanks!
[1/1] scsi: pm80xx: Do not use libsas port id
https://git.kernel.org/mkp/scsi/c/0f630c58e31a
--
Martin K. Petersen Oracle Linux Engineering
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-12-10 2:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-21 19:49 [PATCH] scsi: pm80xx: Do not use libsas port id TJ Adams
2024-12-04 19:51 ` Martin K. Petersen
2024-12-10 2:35 ` Martin K. Petersen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox