From: Tomas Henzl Date: Thu, 2 Mar 2023 23:43:31 +0000 (+0100) Subject: scsi: mpi3mr: Fix throttle_groups memory leak X-Git-Tag: v6.1.21~184 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=574cc10edaa7dba833764efed8c57ee0e6bf7574;p=platform%2Fkernel%2Flinux-starfive.git scsi: mpi3mr: Fix throttle_groups memory leak [ Upstream commit f305a7b6ca21a665e8d0cf70b5936991a298c93c ] Add a missing kfree(). Fixes: f10af057325c ("scsi: mpi3mr: Resource Based Metering") Signed-off-by: Tomas Henzl Link: https://lore.kernel.org/r/20230302234336.25456-2-thenzl@redhat.com Acked-by: Sathya Prakash Veerichetty Signed-off-by: Martin K. Petersen Signed-off-by: Sasha Levin --- diff --git a/drivers/scsi/mpi3mr/mpi3mr_fw.c b/drivers/scsi/mpi3mr/mpi3mr_fw.c index 1e4467e..2d46a0b 100644 --- a/drivers/scsi/mpi3mr/mpi3mr_fw.c +++ b/drivers/scsi/mpi3mr/mpi3mr_fw.c @@ -4358,6 +4358,9 @@ void mpi3mr_free_mem(struct mpi3mr_ioc *mrioc) mrioc->pel_seqnum_virt = NULL; } + kfree(mrioc->throttle_groups); + mrioc->throttle_groups = NULL; + kfree(mrioc->logdata_buf); mrioc->logdata_buf = NULL;