Skip to content

Commit

Permalink
prov/efa: formatting commit
Browse files Browse the repository at this point in the history
Signed-off-by: Seth Zegelstein <[email protected]>
  • Loading branch information
a-szegel committed Oct 20, 2023
1 parent bc6c52c commit 75de13c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions prov/efa/src/rdm/efa_rdm_msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ ssize_t efa_rdm_msg_generic_send(struct fid_ep *ep, const struct fi_msg *msg,

txe->msg_id = peer->next_msg_id++;

efa_rdm_tracepoint(send_begin, txe->msg_id,
efa_rdm_tracepoint(send_begin, txe->msg_id,
(size_t) txe->cq_entry.op_context, txe->total_len);
efa_rdm_tracepoint(send_begin_msg_context,
efa_rdm_tracepoint(send_begin_msg_context,
(size_t) msg->context, (size_t) msg->addr);


Expand Down Expand Up @@ -695,7 +695,7 @@ struct efa_rdm_ope *efa_rdm_msg_alloc_rxe(struct efa_rdm_ep *ep,

/**
* @brief allocate a RX entry for an unexpected RTM
*
*
* unexpected RTM is an RTM that was received before
* the application (user) has called corresponding `fi_recv`
* @param[in,out] ep endpoint
Expand Down Expand Up @@ -771,10 +771,10 @@ struct efa_rdm_ope *efa_rdm_msg_alloc_matched_rxe_for_rtm(struct efa_rdm_ep *ep,
* Depend on the timing of the RTM (expected or unexpected),
* this function will call either #efa_rdm_msg_alloc_matched_rxe_for_rtm()
* or #efa_rdm_msg_unexp_rxe_for_rtm().
*
*
* @param[in] ep endpoint
* @param[in] pkt_entry RTM packet entry
*
*
* @returns
* Pointer to the allocated RX entry.
* If endpoint's operation entry pool (ope_pool) has been exhausted,
Expand Down Expand Up @@ -852,10 +852,10 @@ struct efa_rdm_ope *efa_rdm_msg_alloc_rxe_for_msgrtm(struct efa_rdm_ep *ep,
* Depend on the timing of the RTM (expected or unexpected),
* this function will call either #efa_rdm_msg_alloc_matched_rxe_for_rtm()
* or #efa_rdm_msg_unexp_rxe_for_rtm().
*
*
* @param[in] ep endpoint
* @param[in] pkt_entry RTM packet entry
*
*
* @returns
* Pointer to the allocated RX entry.
* If endpoint's operation entry pool (ope_pool) has been exhausted,
Expand Down
2 changes: 1 addition & 1 deletion prov/efa/src/rdm/efa_rdm_rma.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ ssize_t efa_rdm_rma_readmsg(struct fid_ep *ep, const struct fi_msg_rma *msg, uin
err = efa_rdm_ope_prepare_to_post_read(txe);
if (err)
goto out;

err = efa_rdm_ope_post_read(txe);
if (OFI_UNLIKELY(err)) {
if (err == -FI_ENOBUFS)
Expand Down

0 comments on commit 75de13c

Please sign in to comment.