Skip to content

Commit

Permalink
prov/cxi: Update RXC emit idc msg with dom version
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Ziemba <ian.ziemba@hpe.com>
  • Loading branch information
iziemba committed Jan 24, 2024
1 parent 70f0cba commit a503148
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions prov/cxi/src/cxip_rxc.c
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,15 @@ int cxip_rxc_emit_idc_msg(struct cxip_rxc *rxc, uint16_t vni,
{
int ret;

if (rxc->ep_obj->av_auth_key) {
ret = cxip_domain_emit_idc_msg(rxc->domain, vni, tc, c_state,
msg, buf, len, flags);
if (ret)
RXC_WARN(rxc, "Failed to emit domain idc msg: %d\n",
ret);
return ret;
}

/* Ensure correct traffic class is used. */
ret = cxip_cmdq_cp_set(rxc->tx_cmdq, vni, tc, tc_type);
if (ret) {
Expand Down

0 comments on commit a503148

Please sign in to comment.