diff options
| author | Max Gurtovoy <[email protected]> | 2022-04-28 12:19:35 +0300 |
|---|---|---|
| committer | Christoph Hellwig <[email protected]> | 2022-05-16 08:06:58 +0200 |
| commit | ca2d89925ae3f3d5c65182ff75e58bc9b484e69c (patch) | |
| tree | 6393a1ecb4afe10435c110f29368e2043493cb1f /include/linux | |
| parent | 52fde2c07da606f3f120af4f734eadcfb52b04be (diff) | |
nvme: add missing status values to verbose logging
Log a few more path related status codes.
Signed-off-by: Max Gurtovoy <[email protected]>
Reviewed-by: Hannes Reinecke <[email protected]>
Signed-off-by: Christoph Hellwig <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/nvme.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/nvme.h b/include/linux/nvme.h index f626a445d1a8..bbabdc7600da 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h @@ -1679,9 +1679,11 @@ enum { /* * Path-related Errors: */ + NVME_SC_INTERNAL_PATH_ERROR = 0x300, NVME_SC_ANA_PERSISTENT_LOSS = 0x301, NVME_SC_ANA_INACCESSIBLE = 0x302, NVME_SC_ANA_TRANSITION = 0x303, + NVME_SC_CTRL_PATH_ERROR = 0x360, NVME_SC_HOST_PATH_ERROR = 0x370, NVME_SC_HOST_ABORTED_CMD = 0x371, |