@@ -127,7 +127,7 @@ struct cxl_mbox_cmd {
127
127
};
128
128
129
129
/*
130
- * Per CXL 2 .0 Section 8.2.8.4.5.1
130
+ * Per CXL 3 .0 Section 8.2.8.4.5.1
131
131
*/
132
132
#define CMD_CMD_RC_TABLE \
133
133
C(SUCCESS, 0, NULL), \
@@ -152,7 +152,15 @@ struct cxl_mbox_cmd {
152
152
C(SECURITY, -ENXIO, "not valid in the current security state"), \
153
153
C(PASSPHRASE, -ENXIO, "phrase doesn't match current set passphrase"), \
154
154
C(MBUNSUPPORTED, -ENXIO, "unsupported on the mailbox it was issued on"),\
155
- C(PAYLOADLEN, -ENXIO, "invalid payload length")
155
+ C(PAYLOADLEN, -ENXIO, "invalid payload length"), \
156
+ C(LOG, -ENXIO, "invalid or unsupported log page"), \
157
+ C(INTERRUPTED, -ENXIO, "asynchronous event occured"), \
158
+ C(FEATUREVERSION, -ENXIO, "unsupported feature version"), \
159
+ C(FEATURESELVALUE, -ENXIO, "unsupported feature selection value"), \
160
+ C(FEATURETRANSFERIP, -ENXIO, "feature transfer in progress"), \
161
+ C(FEATURETRANSFEROOO, -ENXIO, "feature transfer out of order"), \
162
+ C(RESOURCEEXHAUSTED, -ENXIO, "resources are exhausted"), \
163
+ C(EXTLIST, -ENXIO, "invalid Extent List"), \
156
164
157
165
#undef C
158
166
#define C (a , b , c ) CXL_MBOX_CMD_RC_##a
0 commit comments