Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TL/MLX5: fix IPv6 address conversion in inet_ntop #928

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/tl/mlx5/mcast/tl_mlx5_mcast_helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ ucc_status_t ucc_tl_mlx5_mcast_join_mcast_post(ucc_tl_mlx5_mcast_coll_context_t
char buf[40];
const char *dst;

dst = inet_ntop(AF_INET6, net_addr, buf, 40);
dst = inet_ntop(AF_INET6, &net_addr->sin6_addr, buf, 40);
if (NULL == dst) {
tl_error(ctx->lib, "inet_ntop failed");
return UCC_ERR_NO_RESOURCE;
Expand Down Expand Up @@ -399,7 +399,7 @@ ucc_status_t ucc_tl_mlx5_fini_mcast_group(ucc_tl_mlx5_mcast_coll_context_t *ctx,
char buf[40];
const char *dst;

dst = inet_ntop(AF_INET6, &comm->mcast_addr, buf, 40);
dst = inet_ntop(AF_INET6, &comm->mcast_addr.sin6_addr, buf, 40);
if (NULL == dst) {
tl_error(comm->lib, "inet_ntop failed");
return UCC_ERR_NO_RESOURCE;
Expand Down