]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
scsi: smartpqi: Silence a recursive lock warning
authorTomas Henzl <thenzl@redhat.com>
Tue, 14 Apr 2026 12:41:18 +0000 (14:41 +0200)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 21 Apr 2026 02:26:12 +0000 (22:26 -0400)
On systems with multiple controllers debug kernel shows

  WARNING: possible recursive locking detected

during shutdown.

Each controller does have its own ctrl_info (and mutex) and that isn't
correctly recognized by debug kernel.  Suppress the warning by releasing
the mutex at the end of pqi_shutdown().

Signed-off-by: Tomas Henzl <thenzl@redhat.com>
Acked-by: Don Brace <don.brace@microchip.com>
Link: https://patch.msgid.link/20260414124118.23661-1-thenzl@redhat.com
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/smartpqi/smartpqi_init.c

index b4ed991976d065ec190ef0bed225ccf403e8e6c8..2026ac645d6ab441db82cc47a085a28930893b53 100644 (file)
@@ -9427,6 +9427,7 @@ static void pqi_shutdown(struct pci_dev *pci_dev)
 
        pqi_crash_if_pending_command(ctrl_info);
        pqi_reset(ctrl_info);
+       pqi_ctrl_unblock_device_reset(ctrl_info);
 }
 
 static void pqi_process_lockup_action_param(void)