From cabe3df52da38dd360b80485fd64d10155a896d4 Mon Sep 17 00:00:00 2001 From: Amir Shehata Date: Thu, 2 May 2024 15:21:20 -0400 Subject: [PATCH] prov/cxi: Add FI_PEER capability bit Add the FI_PEER capability bit to the CXI provider fi_info Signed-off-by: Amir Shehata --- prov/cxi/include/cxip.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prov/cxi/include/cxip.h b/prov/cxi/include/cxip.h index 5ac64578697..61fd43be6b2 100644 --- a/prov/cxi/include/cxip.h +++ b/prov/cxi/include/cxip.h @@ -138,7 +138,7 @@ (FI_SOURCE | FI_SOURCE_ERR | FI_LOCAL_COMM | \ FI_REMOTE_COMM | FI_RMA_EVENT | FI_MULTI_RECV | FI_FENCE | FI_TRIGGER) #define CXIP_EP_CAPS (CXIP_EP_PRI_CAPS | CXIP_EP_SEC_CAPS) -#define CXIP_DOM_CAPS (FI_LOCAL_COMM | FI_REMOTE_COMM | FI_AV_USER_ID) +#define CXIP_DOM_CAPS (FI_LOCAL_COMM | FI_REMOTE_COMM | FI_AV_USER_ID | FI_PEER) #define CXIP_CAPS (CXIP_DOM_CAPS | CXIP_EP_CAPS) #define CXIP_MSG_ORDER (FI_ORDER_SAS | \ FI_ORDER_WAW | \