Skip to content

Commit

Permalink
Merge pull request #4641 from a-ilango/rxm
Browse files Browse the repository at this point in the history
prov/rxm: fix incorrect length in packet header for inject
  • Loading branch information
shefty authored Nov 27, 2018
2 parents d32e95d + 158af1e commit 64fb15a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prov/rxm/src/rxm_ep.c
Original file line number Diff line number Diff line change
Expand Up @@ -1297,7 +1297,7 @@ rxm_ep_send_inject(struct rxm_ep *rxm_ep, const struct iovec *iov, size_t count,
"Ran out of buffers from Eager Inject buffer pool\n");
return -FI_EAGAIN;
}
rxm_ep_format_tx_buf_pkt(rxm_conn, total_len, op, data, tag,
rxm_ep_format_tx_buf_pkt(rxm_conn, data_len, op, data, tag,
flags, &tx_buf->pkt);
ofi_copy_from_iov(tx_buf->pkt.data, tx_buf->pkt.hdr.size,
iov, count, 0);
Expand Down

0 comments on commit 64fb15a

Please sign in to comment.