diff options
author | Song Liu <song@kernel.org> | 2022-02-03 11:28:27 -0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-02-03 21:10:01 -0700 |
commit | 9574d43479e16352e75bc875c9952ed8e129c9b2 (patch) | |
tree | f302a80620b0210b15058e402cb53a260e98bbbd /drivers/scsi | |
parent | 7d32c027a21ef7aa0a400763397644d44b3576a9 (diff) | |
download | linux-9574d43479e16352e75bc875c9952ed8e129c9b2.tar.bz2 |
scsi: use BLK_STS_OFFLINE for not fully online devices
The new error message for such case looks like
[ 172.809565] device offline error, dev sda, sector 3138208 ...
which will not be confused with regular I/O error (BLK_STS_IOERR).
Reviewed-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Song Liu <song@kernel.org>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Link: https://lore.kernel.org/r/20220203192827.1370270-4-song@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/scsi')
-rw-r--r-- | drivers/scsi/scsi_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index 0a70aa763a96..e30bc51578e9 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c @@ -1276,7 +1276,7 @@ scsi_device_state_check(struct scsi_device *sdev, struct request *req) * power management commands. */ if (req && !(req->rq_flags & RQF_PM)) - return BLK_STS_IOERR; + return BLK_STS_OFFLINE; return BLK_STS_OK; } } |