Commit bfe58458 authored by Davidlohr Bueso's avatar Davidlohr Bueso Committed by Dan Williams

cxl/mbox: Update CMD_RC_TABLE

As of CXL 3.0 there have some added return codes, update the
driver accordingly.
Signed-off-by: default avatarDavidlohr Bueso <dave@stgolabs.net>
Reviewed-by: default avatarDave Jiang <dave.jiang@intel.com>
Link: https://lore.kernel.org/r/20230307042655.6714-1-dave@stgolabs.netSigned-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent ca899f40
...@@ -127,7 +127,7 @@ struct cxl_mbox_cmd { ...@@ -127,7 +127,7 @@ struct cxl_mbox_cmd {
}; };
/* /*
* Per CXL 2.0 Section 8.2.8.4.5.1 * Per CXL 3.0 Section 8.2.8.4.5.1
*/ */
#define CMD_CMD_RC_TABLE \ #define CMD_CMD_RC_TABLE \
C(SUCCESS, 0, NULL), \ C(SUCCESS, 0, NULL), \
...@@ -152,7 +152,15 @@ struct cxl_mbox_cmd { ...@@ -152,7 +152,15 @@ struct cxl_mbox_cmd {
C(SECURITY, -ENXIO, "not valid in the current security state"), \ C(SECURITY, -ENXIO, "not valid in the current security state"), \
C(PASSPHRASE, -ENXIO, "phrase doesn't match current set passphrase"), \ C(PASSPHRASE, -ENXIO, "phrase doesn't match current set passphrase"), \
C(MBUNSUPPORTED, -ENXIO, "unsupported on the mailbox it was issued on"),\ C(MBUNSUPPORTED, -ENXIO, "unsupported on the mailbox it was issued on"),\
C(PAYLOADLEN, -ENXIO, "invalid payload length") C(PAYLOADLEN, -ENXIO, "invalid payload length"), \
C(LOG, -ENXIO, "invalid or unsupported log page"), \
C(INTERRUPTED, -ENXIO, "asynchronous event occured"), \
C(FEATUREVERSION, -ENXIO, "unsupported feature version"), \
C(FEATURESELVALUE, -ENXIO, "unsupported feature selection value"), \
C(FEATURETRANSFERIP, -ENXIO, "feature transfer in progress"), \
C(FEATURETRANSFEROOO, -ENXIO, "feature transfer out of order"), \
C(RESOURCEEXHAUSTED, -ENXIO, "resources are exhausted"), \
C(EXTLIST, -ENXIO, "invalid Extent List"), \
#undef C #undef C
#define C(a, b, c) CXL_MBOX_CMD_RC_##a #define C(a, b, c) CXL_MBOX_CMD_RC_##a
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment