Skip to content

Commit

Permalink
Merge pull request #9810 from brminich/uct/rd_atomic_err_to_diag
Browse files Browse the repository at this point in the history
UCT/DC: Report max_rd_atomic issue as diag instead of error
  • Loading branch information
brminich authored Apr 11, 2024
2 parents ec571c9 + b2d59b6 commit ae47af5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/uct/ib/dc/dc_mlx5_ep.c
Original file line number Diff line number Diff line change
Expand Up @@ -1270,9 +1270,9 @@ UCS_CLASS_INIT_FUNC(uct_dc_mlx5_ep_t, uct_dc_mlx5_iface_t *iface,

if ((iface->super.super.config.max_rd_atomic == 16) !=
!!(if_addr->flags & UCT_DC_MLX5_IFACE_ADDR_MAX_RD_ATOMIC_16)) {
ucs_error("max_rd_attomic values do not match on peers (local is %u), "
"set UCX_RC_MAX_RD_ATOMIC=16 to resolve this issue.",
iface->super.super.config.max_rd_atomic);
ucs_diag("max_rd_atomic values do not match on peers (local is %u), "
"set UCX_DC_MLX5_MAX_RD_ATOMIC=16 to resolve this issue.",
iface->super.super.config.max_rd_atomic);
}

return uct_dc_mlx5_ep_basic_init(iface, self);
Expand Down

0 comments on commit ae47af5

Please sign in to comment.