scsi: pm8001: Use sas_find_attached_phy_id() instead of open coding it
authorJason Yan <yanaijie@huawei.com>
Wed, 28 Sep 2022 07:01:25 +0000 (15:01 +0800)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 18 Oct 2022 03:28:09 +0000 (03:28 +0000)
The attached phy id finding is open coded. Replace it with
sas_find_attached_phy_id(). To keep things consistent, the return value of
pm8001_dev_found_notify() is also changed to -ENODEV after calling
sas_find_attathed_phy_id() failed.

Signed-off-by: Jason Yan <yanaijie@huawei.com>
Link: https://lore.kernel.org/r/20220928070130.3657183-4-yanaijie@huawei.com
Reviewed-by: Jack Wang <jinpu.wang@ionos.com>
Reviewed-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/pm8001/pm8001_sas.c

index 2d84ae95a1f94a374241d15092c1250b9bb5df52..51230b82714927a04c9e5adf05edc3ddffa7a008 100644 (file)
@@ -645,22 +645,16 @@ static int pm8001_dev_found_notify(struct domain_device *dev)
        pm8001_device->dcompletion = &completion;
        if (parent_dev && dev_is_expander(parent_dev->dev_type)) {
                int phy_id;
-               struct ex_phy *phy;
-               for (phy_id = 0; phy_id < parent_dev->ex_dev.num_phys;
-               phy_id++) {
-                       phy = &parent_dev->ex_dev.ex_phy[phy_id];
-                       if (SAS_ADDR(phy->attached_sas_addr)
-                               == SAS_ADDR(dev->sas_addr)) {
-                               pm8001_device->attached_phy = phy_id;
-                               break;
-                       }
-               }
-               if (phy_id == parent_dev->ex_dev.num_phys) {
+
+               phy_id = sas_find_attached_phy_id(&parent_dev->ex_dev, dev);
+               if (phy_id < 0) {
                        pm8001_dbg(pm8001_ha, FAIL,
                                   "Error: no attached dev:%016llx at ex:%016llx.\n",
                                   SAS_ADDR(dev->sas_addr),
                                   SAS_ADDR(parent_dev->sas_addr));
-                       res = -1;
+                       res = phy_id;
+               } else {
+                       pm8001_device->attached_phy = phy_id;
                }
        } else {
                if (dev->dev_type == SAS_SATA_DEV) {