diff options
author | Max Gurtovoy <maxg@mellanox.com> | 2019-10-13 19:57:35 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2019-11-04 10:56:41 -0700 |
commit | 2dc3947b53f573e8a75ea9cbec5588df88ca502e (patch) | |
tree | 1423fc41c0bb78c998d648863b90d684c756e294 /include/linux/nvme.h | |
parent | 59534b9d606e7f566970a6f8621c6022f7c19ff1 (diff) | |
download | linux-2dc3947b53f573e8a75ea9cbec5588df88ca502e.tar.gz linux-2dc3947b53f573e8a75ea9cbec5588df88ca502e.tar.bz2 linux-2dc3947b53f573e8a75ea9cbec5588df88ca502e.zip |
nvme: introduce "Command Aborted By host" status code
Fix the status code of canceled requests initiated by the host according
to TP4028 (Status Code 0x371):
"Command Aborted By host: The command was aborted as a result of host
action (e.g., the host disconnected the Fabric connection)."
Also in a multipath environment, unless otherwise specified, errors of
this type (path related) should be retried using a different path, if
one is available.
Signed-off-by: Max Gurtovoy <maxg@mellanox.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/nvme.h')
-rw-r--r-- | include/linux/nvme.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h index f61d6906e59d..a260cd754f28 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h @@ -1368,6 +1368,7 @@ enum { NVME_SC_ANA_INACCESSIBLE = 0x302, NVME_SC_ANA_TRANSITION = 0x303, NVME_SC_HOST_PATH_ERROR = 0x370, + NVME_SC_HOST_ABORTED_CMD = 0x371, NVME_SC_CRD = 0x1800, NVME_SC_DNR = 0x4000, |