Message ID | 20240708152902.5853-1-engguopeng@buaa.edu.cn |
---|---|
State | Accepted |
Commit | 8ecef8e01a08c7e3e4ffc8f08d9f9663984f334b |
Headers | show |
Series | cxl core:wrong value of macro definition | expand |
On 7/8/24 8:29 AM, peng guo wrote: > The first value of the macro definition DEFINE_CXL_VENDOR_DEBUG_UUID > does not match the definition in the CXL 2.0 specification table 170. Thank you for the fix. Please use latest spec to identify. CXL spec r3.1 Table 8-71 I think? Also, can you please provide a Fixes tag for this issue? Thanks! > > Signed-off-by: peng guo <engguopeng@buaa.edu.cn> > --- > drivers/cxl/cxlmem.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/cxl/cxlmem.h b/drivers/cxl/cxlmem.h > index af8169ccdbc0..feb1106559d2 100644 > --- a/drivers/cxl/cxlmem.h > +++ b/drivers/cxl/cxlmem.h > @@ -563,7 +563,7 @@ enum cxl_opcode { > 0x3b, 0x3f, 0x17) > > #define DEFINE_CXL_VENDOR_DEBUG_UUID \ > - UUID_INIT(0xe1819d9, 0x11a9, 0x400c, 0x81, 0x1f, 0xd6, 0x07, 0x19, \ > + UUID_INIT(0x5e1819d9, 0x11a9, 0x400c, 0x81, 0x1f, 0xd6, 0x07, 0x19, \ > 0x40, 0x3d, 0x86) > > struct cxl_mbox_get_supported_logs {
diff --git a/drivers/cxl/cxlmem.h b/drivers/cxl/cxlmem.h index af8169ccdbc0..feb1106559d2 100644 --- a/drivers/cxl/cxlmem.h +++ b/drivers/cxl/cxlmem.h @@ -563,7 +563,7 @@ enum cxl_opcode { 0x3b, 0x3f, 0x17) #define DEFINE_CXL_VENDOR_DEBUG_UUID \ - UUID_INIT(0xe1819d9, 0x11a9, 0x400c, 0x81, 0x1f, 0xd6, 0x07, 0x19, \ + UUID_INIT(0x5e1819d9, 0x11a9, 0x400c, 0x81, 0x1f, 0xd6, 0x07, 0x19, \ 0x40, 0x3d, 0x86) struct cxl_mbox_get_supported_logs {
The first value of the macro definition DEFINE_CXL_VENDOR_DEBUG_UUID does not match the definition in the CXL 2.0 specification table 170. Signed-off-by: peng guo <engguopeng@buaa.edu.cn> --- drivers/cxl/cxlmem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)