From: Dan Carpenter Date: Mon, 18 Jul 2022 11:20:50 +0000 (+0300) Subject: scsi: mpi3mr: Unlock on error path X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2a8a0147cb523ff8c21e57195dae1833b35dafaf;p=linux.git scsi: mpi3mr: Unlock on error path There is some clean up necessary before returning. Smatch complains: drivers/scsi/mpi3mr/mpi3mr_fw.c:4786 mpi3mr_soft_reset_handler() warn: inconsistent returns '&mrioc->reset_mutex'. Locked on : 4730 Unlocked on: 4786 Link: https://lore.kernel.org/r/YtVCEsxMU8buuMjP@kili Fixes: f10af057325c ("scsi: mpi3mr: Resource Based Metering") Signed-off-by: Dan Carpenter Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/mpi3mr/mpi3mr_fw.c b/drivers/scsi/mpi3mr/mpi3mr_fw.c index 6e39f7969e635..0866dfd433185 100644 --- a/drivers/scsi/mpi3mr/mpi3mr_fw.c +++ b/drivers/scsi/mpi3mr/mpi3mr_fw.c @@ -4727,7 +4727,8 @@ int mpi3mr_soft_reset_handler(struct mpi3mr_ioc *mrioc, "max io throttle group doesn't match old(%d), new(%d)\n", mrioc->num_io_throttle_group, mrioc->facts.max_io_throttle_group); - return -EPERM; + retval = -EPERM; + goto out; } mpi3mr_flush_delayed_cmd_lists(mrioc);