Skip to content

Commit ae47af5

Browse files
authored
Merge pull request #9810 from brminich/uct/rd_atomic_err_to_diag
UCT/DC: Report max_rd_atomic issue as diag instead of error
2 parents ec571c9 + b2d59b6 commit ae47af5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/uct/ib/dc/dc_mlx5_ep.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1270,9 +1270,9 @@ UCS_CLASS_INIT_FUNC(uct_dc_mlx5_ep_t, uct_dc_mlx5_iface_t *iface,
12701270

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

12781278
return uct_dc_mlx5_ep_basic_init(iface, self);

0 commit comments

Comments
 (0)