scsi: target: core: Fix warning on realtime kernels
authorMaurizio Lombardi <mlombard@redhat.com>
Mon, 31 May 2021 12:13:26 +0000 (14:13 +0200)
committerMartin K. Petersen <martin.petersen@oracle.com>
Tue, 1 Jun 2021 02:59:13 +0000 (22:59 -0400)
commit515da6f4295c2c42b8c54572cce3d2dd1167c41e
tree8eb5167cddd810a04118d9edf4f5edbfc613ed63
parent2ef7665dfd88830f15415ba007c7c9a46be7acd8
scsi: target: core: Fix warning on realtime kernels

On realtime kernels, spin_lock_irq*(spinlock_t) do not disable the
interrupts, a call to irqs_disabled() will return false thus firing a
warning in __transport_wait_for_tasks().

Remove the warning and also replace assert_spin_locked() with
lockdep_assert_held()

Link: https://lore.kernel.org/r/20210531121326.3649-1-mlombard@redhat.com
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Signed-off-by: Maurizio Lombardi <mlombard@redhat.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/target/target_core_transport.c