scsi: mpi3mr: Fix expander node leak in mpi3mr_remove()
[ Upstream commit ce756daa36e1ba271bb3334267295e447aa57a5c ] Add a missing resource clean up in .remove. Fixes: e22bae30667a ("scsi: mpi3mr: Add expander devices to STL") Signed-off-by: Tomas Henzl <thenzl@redhat.com> Link: https://lore.kernel.org/r/20230302234336.25456-7-thenzl@redhat.com Acked-by: Sathya Prakash Veerichetty <sathya.prakash@broadcom.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
c6260ceea4
commit
0023972a75
@ -1394,4 +1394,6 @@ void mpi3mr_flush_drv_cmds(struct mpi3mr_ioc *mrioc);
|
||||
void mpi3mr_flush_cmds_for_unrecovered_controller(struct mpi3mr_ioc *mrioc);
|
||||
void mpi3mr_free_enclosure_list(struct mpi3mr_ioc *mrioc);
|
||||
int mpi3mr_process_admin_reply_q(struct mpi3mr_ioc *mrioc);
|
||||
void mpi3mr_expander_node_remove(struct mpi3mr_ioc *mrioc,
|
||||
struct mpi3mr_sas_node *sas_expander);
|
||||
#endif /*MPI3MR_H_INCLUDED*/
|
||||
|
@ -5079,6 +5079,7 @@ static void mpi3mr_remove(struct pci_dev *pdev)
|
||||
unsigned long flags;
|
||||
struct mpi3mr_tgt_dev *tgtdev, *tgtdev_next;
|
||||
struct mpi3mr_hba_port *port, *hba_port_next;
|
||||
struct mpi3mr_sas_node *sas_expander, *sas_expander_next;
|
||||
|
||||
if (!shost)
|
||||
return;
|
||||
@ -5119,6 +5120,12 @@ static void mpi3mr_remove(struct pci_dev *pdev)
|
||||
mpi3mr_cleanup_resources(mrioc);
|
||||
|
||||
spin_lock_irqsave(&mrioc->sas_node_lock, flags);
|
||||
list_for_each_entry_safe_reverse(sas_expander, sas_expander_next,
|
||||
&mrioc->sas_expander_list, list) {
|
||||
spin_unlock_irqrestore(&mrioc->sas_node_lock, flags);
|
||||
mpi3mr_expander_node_remove(mrioc, sas_expander);
|
||||
spin_lock_irqsave(&mrioc->sas_node_lock, flags);
|
||||
}
|
||||
list_for_each_entry_safe(port, hba_port_next, &mrioc->hba_port_table_list, list) {
|
||||
ioc_info(mrioc,
|
||||
"removing hba_port entry: %p port: %d from hba_port list\n",
|
||||
|
@ -9,9 +9,6 @@
|
||||
|
||||
#include "mpi3mr.h"
|
||||
|
||||
static void mpi3mr_expander_node_remove(struct mpi3mr_ioc *mrioc,
|
||||
struct mpi3mr_sas_node *sas_expander);
|
||||
|
||||
/**
|
||||
* mpi3mr_post_transport_req - Issue transport requests and wait
|
||||
* @mrioc: Adapter instance reference
|
||||
@ -2163,7 +2160,7 @@ out_fail:
|
||||
*
|
||||
* Return nothing.
|
||||
*/
|
||||
static void mpi3mr_expander_node_remove(struct mpi3mr_ioc *mrioc,
|
||||
void mpi3mr_expander_node_remove(struct mpi3mr_ioc *mrioc,
|
||||
struct mpi3mr_sas_node *sas_expander)
|
||||
{
|
||||
struct mpi3mr_sas_port *mr_sas_port, *next;
|
||||
|
Loading…
x
Reference in New Issue
Block a user