We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 726d75a + 42a2ddb commit 80c3074Copy full SHA for 80c3074
1 file changed
src/nvme/types.h
@@ -3054,6 +3054,8 @@ enum nvme_persistent_event_types {
3054
NVME_PEL_FORMAT_COMPLETION_EVENT = 0x08,
3055
NVME_PEL_SANITIZE_START_EVENT = 0x09,
3056
NVME_PEL_SANITIZE_COMPLETION_EVENT = 0x0a,
3057
+ NVME_PEL_SET_FEATURE_EVENT = 0x0b,
3058
+ NVME_PEL_TELEMETRY_CRT = 0x0c,
3059
NVME_PEL_THERMAL_EXCURSION_EVENT = 0x0d,
3060
};
3061
@@ -3132,6 +3134,12 @@ struct nvme_sanitize_compln_event {
3132
3134
__u8 rsvd6[2];
3133
3135
3136
3137
+/* persistent event type 0Bh */
3138
+struct nvme_set_feature_event {
3139
+ __le32 layout;
3140
+ __le32 cdw_mem[0];
3141
+};
3142
+
3143
struct nvme_thermal_exc_event {
3144
__u8 over_temp;
3145
__u8 threshold;
0 commit comments