diff options
| author | Or Gerlitz <ogerlitz@voltaire.com> | 2008-07-22 17:18:34 -0400 |
|---|---|---|
| committer | Roland Dreier <rolandd@cisco.com> | 2008-07-22 17:18:34 -0400 |
| commit | 01b3fc8b15432f7931e40fe099839e1559fb0e09 (patch) | |
| tree | eaa7a17870cd3a069d4b87326f34930d28dd83f2 | |
| parent | 64b784b583061ebfe1d484dd1fdc5a26c6d4293f (diff) | |
IPoIB: Include err code in trace message for ib_sa_path_rec_get() failures
Print the return code of ib_sa_path_rec_get() if it fails to help
debug errors.
Signed-off-by: Or Gerlitz <ogerlitz@voltaire.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
| -rw-r--r-- | drivers/infiniband/ulp/ipoib/ipoib_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/ulp/ipoib/ipoib_main.c b/drivers/infiniband/ulp/ipoib/ipoib_main.c index 8be9ea0436e6..f51201b17bfd 100644 --- a/drivers/infiniband/ulp/ipoib/ipoib_main.c +++ b/drivers/infiniband/ulp/ipoib/ipoib_main.c | |||
| @@ -548,7 +548,7 @@ static int path_rec_start(struct net_device *dev, | |||
| 548 | path_rec_completion, | 548 | path_rec_completion, |
| 549 | path, &path->query); | 549 | path, &path->query); |
| 550 | if (path->query_id < 0) { | 550 | if (path->query_id < 0) { |
| 551 | ipoib_warn(priv, "ib_sa_path_rec_get failed\n"); | 551 | ipoib_warn(priv, "ib_sa_path_rec_get failed: %d\n", path->query_id); |
| 552 | path->query = NULL; | 552 | path->query = NULL; |
| 553 | return path->query_id; | 553 | return path->query_id; |
| 554 | } | 554 | } |
