scsi_transport_srp.c will call scsi_target_block() repeatedly without calling scsi_target_unblock() first. So allow the idempotent state transition BLOCK -> BLOCK to avoid a warning here. Signed-off-by: Hannes Reinecke <hare@xxxxxxx> --- drivers/scsi/scsi_lib.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index 1362f4f17dfd..55666e5ef151 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c @@ -2322,6 +2322,7 @@ scsi_device_set_state(struct scsi_device *sdev, enum scsi_device_state state) switch (oldstate) { case SDEV_RUNNING: case SDEV_CREATED_BLOCK: + case SDEV_BLOCK: case SDEV_QUIESCE: case SDEV_OFFLINE: break; -- 2.16.4