projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
638e970
)
IB/usnic: Improve a failure message
author
Nelson Escobar
<neescoba@cisco.com>
Wed, 9 Dec 2015 18:42:14 +0000
(10:42 -0800)
committer
Doug Ledford
<dledford@redhat.com>
Wed, 23 Dec 2015 15:50:57 +0000
(10:50 -0500)
Signed-off-by: Nelson Escobar <neescoba@cisco.com>
Reviewed-by: Dave Goodell <dgoodell@cisco.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/usnic/usnic_debugfs.c
patch
|
blob
|
history
diff --git
a/drivers/infiniband/hw/usnic/usnic_debugfs.c
b/drivers/infiniband/hw/usnic/usnic_debugfs.c
index 5e55b8bc6fe402af423118c1454b5bc67d21d8ba..92dc66cc2d50a06ea69fb259f713784a26868e2b 100644
(file)
--- a/
drivers/infiniband/hw/usnic/usnic_debugfs.c
+++ b/
drivers/infiniband/hw/usnic/usnic_debugfs.c
@@
-157,8
+157,9
@@
void usnic_debugfs_flow_add(struct usnic_ib_qp_grp_flow *qp_flow)
qp_flow,
&flowinfo_ops);
if (IS_ERR_OR_NULL(qp_flow->dbgfs_dentry)) {
- usnic_err("Failed to create dbg fs entry for flow %u\n",
- qp_flow->flow->flow_id);
+ usnic_err("Failed to create dbg fs entry for flow %u with error %ld\n",
+ qp_flow->flow->flow_id,
+ PTR_ERR(qp_flow->dbgfs_dentry));
}
}