scsi: core: check for device state in __scsi_remove_target()
commit81b6c99989
upstream. As it turned out device_get() doesn't use kref_get_unless_zero(), so we will be always getting a device pointer. Consequently, we need to check for the device state in __scsi_remove_target() to avoid tripping over deleted objects. Fixes:fbce4d97fd
("scsi: fixup kernel warning during rmmod()") Reported-by: Jason Yan <yanaijie@huawei.com> Signed-off-by: Hannes Reinecke <hare@suse.com> Reviewed-by: Bart Van Assche <bart.vanassche@wdc.com> Reviewed-by: Ewan D. Milne <emilne@redhat.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Cc: Max Ivanov <ivanov.maxim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
26f8c38bb4
Коммит
875758d79d
|
@ -1383,7 +1383,10 @@ static void __scsi_remove_target(struct scsi_target *starget)
|
||||||
* check.
|
* check.
|
||||||
*/
|
*/
|
||||||
if (sdev->channel != starget->channel ||
|
if (sdev->channel != starget->channel ||
|
||||||
sdev->id != starget->id ||
|
sdev->id != starget->id)
|
||||||
|
continue;
|
||||||
|
if (sdev->sdev_state == SDEV_DEL ||
|
||||||
|
sdev->sdev_state == SDEV_CANCEL ||
|
||||||
!get_device(&sdev->sdev_gendev))
|
!get_device(&sdev->sdev_gendev))
|
||||||
continue;
|
continue;
|
||||||
spin_unlock_irqrestore(shost->host_lock, flags);
|
spin_unlock_irqrestore(shost->host_lock, flags);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче