summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/smartpqi
diff options
context:
space:
mode:
authorMurthy Bhat <Murthy.Bhat@microsemi.com>2019-10-07 17:31:28 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-04-29 16:31:16 +0200
commit8b1ab979c63d5077adc25ffd4a3c61d0133bf848 (patch)
treefe90db4392467199d850c4403c837953dd59bec3 /drivers/scsi/smartpqi
parent7231917fa7dbe478d1f65aaa482a3a0c70546c88 (diff)
downloadlinux-stable-8b1ab979c63d5077adc25ffd4a3c61d0133bf848.tar.gz
linux-stable-8b1ab979c63d5077adc25ffd4a3c61d0133bf848.tar.bz2
linux-stable-8b1ab979c63d5077adc25ffd4a3c61d0133bf848.zip
scsi: smartpqi: fix call trace in device discovery
[ Upstream commit b969261134c1b990b96ea98fe5e0fcf8ec937c04 ] Use sas_phy_delete rather than sas_phy_free which, according to comments, should not be called for PHYs that have been set up successfully. Link: https://lore.kernel.org/r/157048748876.11757.17773443136670011786.stgit@brunhilda Reviewed-by: Scott Benesh <scott.benesh@microsemi.com> Reviewed-by: Scott Teel <scott.teel@microsemi.com> Reviewed-by: Kevin Barnett <kevin.barnett@microsemi.com> Signed-off-by: Murthy Bhat <Murthy.Bhat@microsemi.com> Signed-off-by: Don Brace <don.brace@microsemi.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/scsi/smartpqi')
-rw-r--r--drivers/scsi/smartpqi/smartpqi_sas_transport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/smartpqi/smartpqi_sas_transport.c b/drivers/scsi/smartpqi/smartpqi_sas_transport.c
index b209a35e482e..01dfb97b0778 100644
--- a/drivers/scsi/smartpqi/smartpqi_sas_transport.c
+++ b/drivers/scsi/smartpqi/smartpqi_sas_transport.c
@@ -50,9 +50,9 @@ static void pqi_free_sas_phy(struct pqi_sas_phy *pqi_sas_phy)
struct sas_phy *phy = pqi_sas_phy->phy;
sas_port_delete_phy(pqi_sas_phy->parent_port->port, phy);
- sas_phy_free(phy);
if (pqi_sas_phy->added_to_port)
list_del(&pqi_sas_phy->phy_list_entry);
+ sas_phy_delete(phy);
kfree(pqi_sas_phy);
}