diff options
| author | Keith Busch <kbusch@kernel.org> | 2025-05-20 13:20:37 -0700 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-06-19 15:40:42 +0200 |
| commit | 75141d56b6268fd5c801c0035a1d4adfd24cfe69 (patch) | |
| tree | fc91cc3c0ef442701c7019954b17326e319731d3 /include | |
| parent | 0400f95a5e1b99197bb3dcd18527184325751d0e (diff) | |
| download | linux-75141d56b6268fd5c801c0035a1d4adfd24cfe69.tar.gz linux-75141d56b6268fd5c801c0035a1d4adfd24cfe69.tar.bz2 linux-75141d56b6268fd5c801c0035a1d4adfd24cfe69.zip | |
nvme: fix command limits status code
[ Upstream commit 10f4a7cd724e34b7a6ff96e57ac49dc0cadececc ]
The command specific status code, 0x183, was introduced in the NVMe 2.0
specification defined to "Command Size Limits Exceeded" and only ever
applied to DSM and Copy commands. Fix the name and, remove the
incorrect translation to error codes and special treatment in the
target code for it.
Fixes: 3b7c33b28a44d4 ("nvme.h: add Write Zeroes definitions")
Cc: Chaitanya Kulkarni <chaitanyak@nvidia.com>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/nvme.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h index 2479ed10f53e..5d7afb6079f1 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h @@ -2094,7 +2094,7 @@ enum { NVME_SC_BAD_ATTRIBUTES = 0x180, NVME_SC_INVALID_PI = 0x181, NVME_SC_READ_ONLY = 0x182, - NVME_SC_ONCS_NOT_SUPPORTED = 0x183, + NVME_SC_CMD_SIZE_LIM_EXCEEDED = 0x183, /* * I/O Command Set Specific - Fabrics commands: |
