[PATCH v6 7/8] scsi: libsas: use sas_phy_addr_match() instead of open coded

Jason Yan posted 8 patches 3 years, 6 months ago
[PATCH v6 7/8] scsi: libsas: use sas_phy_addr_match() instead of open coded
Posted by Jason Yan 3 years, 6 months ago
The sas address comparison of expander phys is open coded. Now we can
replace it with sas_phy_addr_match().

Signed-off-by: Jason Yan <yanaijie@huawei.com>
Reviewed-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
---
 drivers/scsi/libsas/sas_expander.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/scsi/libsas/sas_expander.c b/drivers/scsi/libsas/sas_expander.c
index 9393ab83358c..38ed42b14fa0 100644
--- a/drivers/scsi/libsas/sas_expander.c
+++ b/drivers/scsi/libsas/sas_expander.c
@@ -2058,8 +2058,7 @@ static int sas_rediscover(struct domain_device *dev, const int phy_id)
 
 			if (i == phy_id)
 				continue;
-			if (SAS_ADDR(phy->attached_sas_addr) ==
-			    SAS_ADDR(changed_phy->attached_sas_addr)) {
+			if (sas_phy_addr_match(phy, changed_phy)) {
 				last = false;
 				break;
 			}
-- 
2.31.1
Re: [PATCH v6 7/8] scsi: libsas: use sas_phy_addr_match() instead of open coded
Posted by Johannes Thumshirn 3 years, 6 months ago
Looks good,
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>