Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion prov/efa/src/rdm/efa_rdm_ep.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ struct efa_rdm_ep_queued_copy {
#define EFA_RDM_EP_MAX_WR_PER_IBV_POST_RECV (8192)

#define EFA_RDM_EP_MIN_PEER_POOL_SIZE (1024)
#define EFA_RDM_EP_MIN_PEER_REORDER_BUFFER_POOL_SIZE (16)

struct efa_rdm_ep {
struct efa_base_ep base_ep;
Expand Down
2 changes: 1 addition & 1 deletion prov/efa/src/rdm/efa_rdm_ep_fiops.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ int efa_rdm_ep_create_buffer_pools(struct efa_rdm_ep *ep)
(sizeof(struct efa_rdm_pke*) * (roundup_power_of_two(efa_env.recvwin_size)) +
sizeof(struct recvwin_cirq)),
EFA_RDM_BUFPOOL_ALIGNMENT, 0, /* no limit to max_cnt */
EFA_RDM_EP_MIN_PEER_REORDER_BUFFER_POOL_SIZE,
EFA_RDM_EP_MIN_PEER_POOL_SIZE,
0);

if (ret)
Expand Down
2 changes: 1 addition & 1 deletion prov/efa/src/rdm/efa_rdm_peer.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "efa_rdm_protocol.h"
#include "efa_rdm_rxe_map.h"

#define EFA_RDM_PEER_DEFAULT_REORDER_BUFFER_SIZE (8192)
#define EFA_RDM_PEER_DEFAULT_REORDER_BUFFER_SIZE (16)

#define EFA_RDM_PEER_REQ_SENT BIT_ULL(0) /**< A REQ packet has been sent to the peer (peer should send a handshake back) */
#define EFA_RDM_PEER_HANDSHAKE_SENT BIT_ULL(1) /**< a handshake packet has been sent to the peer */
Expand Down