We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eecc240 + 320a448 commit 2684cadCopy full SHA for 2684cad
1 file changed
src/nvme/types.h
@@ -2915,6 +2915,7 @@ enum nvme_status_result {
2915
* @NVME_ST_CODE_SHORT: Short device self-test operation.
2916
* @NVME_ST_CODE_EXTENDED: Extended device self-test operation.
2917
* @NVME_ST_CODE_VS: Vendor specific.
2918
+ * @NVME_ST_CODE_ABORT: Abort device self-test operation.
2919
* @NVME_ST_CODE_SHIFT: Shift amount to get the code value from the
2920
* &struct nvme_st_result.dsts field.
2921
*/
@@ -2923,6 +2924,7 @@ enum nvme_st_code {
2923
2924
NVME_ST_CODE_SHORT = 0x1,
2925
NVME_ST_CODE_EXTENDED = 0x2,
2926
NVME_ST_CODE_VS = 0xe,
2927
+ NVME_ST_CODE_ABORT = 0xf,
2928
NVME_ST_CODE_SHIFT = 4,
2929
};
2930
0 commit comments