public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: Hannes Reinecke <hare@suse.de>
To: Song Liu <song@kernel.org>,
	linux-scsi@vger.kernel.org, linux-block@vger.kernel.org
Cc: Kernel Team <kernel-team@fb.com>,
	"James E.J. Bottomley" <jejb@linux.ibm.com>,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	Jens Axboe <axboe@kernel.dk>
Subject: Re: [PATCH 1/2] block: introduce BLK_STS_OFFLINE
Date: Thu, 3 Feb 2022 08:24:07 +0100	[thread overview]
Message-ID: <f7489746-b8fb-bc9a-a706-e5926fa9e325@suse.de> (raw)
In-Reply-To: <CAPhsuW6PNaYUb5xDxPX_gX=2fZdiRURRos5sT_Tsbngon1+eKw@mail.gmail.com>

On 2/3/22 07:52, Song Liu wrote:
> CC linux-block (it was a typo in the original email)
> 
> On Wed, Feb 2, 2022 at 10:40 PM Song Liu <song@kernel.org> wrote:
>>
>> Currently, drivers reports BLK_STS_IOERR for devices that are not full
>> online or being removed. This behavior could cause confusion for users,
>> as they are not really I/O errors from the device.
>>
>> Solve this issue with a new state BLK_STS_OFFLINE, which reports "device
>> offline error" in dmesg instead of "I/O error".
>>
>> Signed-off-by: Song Liu <song@kernel.org>
>> ---
>>   block/blk-core.c          | 1 +
>>   include/linux/blk_types.h | 7 +++++++
>>   2 files changed, 8 insertions(+)
>>
>> diff --git a/block/blk-core.c b/block/blk-core.c
>> index 61f6a0dc4511..24035dd2eef1 100644
>> --- a/block/blk-core.c
>> +++ b/block/blk-core.c
>> @@ -164,6 +164,7 @@ static const struct {
>>          [BLK_STS_RESOURCE]      = { -ENOMEM,    "kernel resource" },
>>          [BLK_STS_DEV_RESOURCE]  = { -EBUSY,     "device resource" },
>>          [BLK_STS_AGAIN]         = { -EAGAIN,    "nonblocking retry" },
>> +       [BLK_STS_OFFLINE]       = { -EIO,       "device offline" },
>>
>>          /* device mapper special case, should not leak out: */
>>          [BLK_STS_DM_REQUEUE]    = { -EREMCHG, "dm internal retry" },
>> diff --git a/include/linux/blk_types.h b/include/linux/blk_types.h
>> index fe065c394fff..5561e58d158a 100644
>> --- a/include/linux/blk_types.h
>> +++ b/include/linux/blk_types.h
>> @@ -153,6 +153,13 @@ typedef u8 __bitwise blk_status_t;
>>    */
>>   #define BLK_STS_ZONE_ACTIVE_RESOURCE   ((__force blk_status_t)16)
>>
>> +/*
>> + * BLK_STS_OFFLINE is returned from the driver when the target device is offline
>> + * or is being taken offline. This could help differentiate the case where a
>> + * device is intentionally being shut down from a real I/O error.
>> + */
>> +#define BLK_STS_OFFLINE                ((__force blk_status_t)17)
>> +
>>   /**
>>    * blk_path_error - returns true if error may be path related
>>    * @error: status the request was completed with
>> --
>> 2.30.2
>>
Please do not overload EIO here.
EIO already is a catch-all error if we don't know any better, but for 
the 'device offline' case we do (or rather should).
Please map it onto 'ENODEV' or 'ENXIO'.

Cheers,

Hannes
-- 
Dr. Hannes Reinecke                Kernel Storage Architect
hare@suse.de                              +49 911 74053 688
SUSE Software Solutions GmbH, Maxfeldstr. 5, 90409 Nürnberg
HRB 36809 (AG Nürnberg), Geschäftsführer: Felix Imendörffer

  reply	other threads:[~2022-02-03  7:24 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-03  6:40 [PATCH 0/2] block: scsi: introduce and use BLK_STS_OFFLINE Song Liu
2022-02-03  6:40 ` [PATCH 1/2] block: introduce BLK_STS_OFFLINE Song Liu
2022-02-03  6:52   ` Song Liu
2022-02-03  7:24     ` Hannes Reinecke [this message]
2022-02-03 13:47       ` Jens Axboe
2022-02-03 17:23         ` Song Liu
2022-02-03 18:51           ` Jens Axboe
2022-02-04  7:14           ` Hannes Reinecke
2022-02-03  6:40 ` [PATCH 2/2] scsi: use BLK_STS_OFFLINE for not fully online devices Song Liu
2022-02-03  6:53   ` Song Liu
2022-02-03  7:24     ` Hannes Reinecke
2022-02-03  6:52 ` [PATCH 0/2] block: scsi: introduce and use BLK_STS_OFFLINE Song Liu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f7489746-b8fb-bc9a-a706-e5926fa9e325@suse.de \
    --to=hare@suse.de \
    --cc=axboe@kernel.dk \
    --cc=jejb@linux.ibm.com \
    --cc=kernel-team@fb.com \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=song@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox