Skip to content

Commit

Permalink
Merge pull request #1501 from yishaih/ibdiag_misc
Browse files Browse the repository at this point in the history
ibdiags: Do not panic on ibstat query failure
  • Loading branch information
yishaih authored Sep 29, 2024
2 parents dd29f7c + 703b52c commit bddea82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infiniband-diags/ibstat.c
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ int main(int argc, char *argv[])
if (list_only)
printf("%s\n", ca_name);
else if (ca_stat(ca_name, dev_port, short_format) < 0)
IBPANIC("stat of IB device '%s' failed", ca_name);
IBWARN("stat of IB device '%s' failed", ca_name);
}
umad_free_ca_device_list(device_list);
return 0;
Expand Down

0 comments on commit bddea82

Please sign in to comment.