[PATCHv3 2/4] nvme: translate zone resource errors
Keith Busch
kbusch at kernel.org
Thu Sep 17 19:18:39 EDT 2020
Translate zoned resource errors to the appropriate blk_status_t.
Cc: Christoph Hellwig <hch at lst.de>
Cc: Damien Le Moal <Damien.LeMoal at wdc.com>
Cc: Johannes Thumshirn <Johannes.Thumshirn at wdc.com>
Signed-off-by: Keith Busch <kbusch at kernel.org>
---
drivers/nvme/host/core.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index 614cd455836b..a0d26fcbf923 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -236,6 +236,10 @@ static blk_status_t nvme_error_status(u16 status)
return BLK_STS_NEXUS;
case NVME_SC_HOST_PATH_ERROR:
return BLK_STS_TRANSPORT;
+ case NVME_SC_ZONE_TOO_MANY_ACTIVE:
+ return BLK_STS_ZONE_ACTIVE_RESOURCE;
+ case NVME_SC_ZONE_TOO_MANY_OPEN:
+ return BLK_STS_ZONE_OPEN_RESOURCE;
default:
return BLK_STS_IOERR;
}
--
2.24.1
More information about the Linux-nvme
mailing list