Skip to content

Commit

Permalink
[v2.0.x] prov/psm2: Check return value of asprintf
Browse files Browse the repository at this point in the history
This fix a compiler warning of unused return value.

Signed-off-by: Jianxin Xiong <[email protected]>
(cherry picked from commit cafbae7)
  • Loading branch information
j-xiong committed Dec 10, 2024
1 parent 9075905 commit 0fa2dd7
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions prov/psm2/src/psmx2_attr.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@ void psmx2_update_prov_info(struct fi_info *info,
struct psmx2_ep_name *dest_addr)
{
struct fi_info *p;
int ret;

for (p = info; p; p = p->next) {
psmx2_dup_addr(p->addr_format, src_addr,
Expand Down Expand Up @@ -363,10 +364,17 @@ void psmx2_update_prov_info(struct fi_info *info,
}

free(p->domain_attr->name);
if (unit == PSMX2_DEFAULT_UNIT)
if (unit == PSMX2_DEFAULT_UNIT) {
p->domain_attr->name = strdup(psmx2_hfi_info.default_domain_name);
else
asprintf(&p->domain_attr->name, "hfi1_%d", unit);
} else {
ret = asprintf(&p->domain_attr->name, "hfi1_%d", unit);
if (ret < 0) {
p->domain_attr->name = NULL;
FI_WARN(&psmx2_prov, FI_LOG_CORE,
"Failed to allocate domain name for HFI unit %d\n",
unit);
}
}

p->tx_attr->inject_size = psmx2_env.inject_size;
}
Expand Down

0 comments on commit 0fa2dd7

Please sign in to comment.