projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
339e264
)
IB/sa: Error handling thinko fix
author
Ali Ayoub
<ali@mellanox.co.il>
Sun, 9 Sep 2007 11:55:11 +0000
(14:55 +0300)
committer
Roland Dreier
<rolandd@cisco.com>
Wed, 10 Oct 2007 02:59:07 +0000
(19:59 -0700)
ib_create_send_mad() returns an error code pointer on error, not NULL.
Signed-off-by: Michael S. Tsirkin <mst@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
drivers/infiniband/core/sa_query.c
patch
|
blob
|
history
diff --git
a/drivers/infiniband/core/sa_query.c
b/drivers/infiniband/core/sa_query.c
index
d271bd7
..
312c8ff
100644
(file)
--- a/
drivers/infiniband/core/sa_query.c
+++ b/
drivers/infiniband/core/sa_query.c
@@
-531,7
+531,7
@@
static int alloc_mad(struct ib_sa_query *query, gfp_t gfp_mask)
query->sm_ah->pkey_index,
0, IB_MGMT_SA_HDR, IB_MGMT_SA_DATA,
gfp_mask);
- if (
!query->mad_buf
) {
+ if (
IS_ERR(query->mad_buf)
) {
kref_put(&query->sm_ah->ref, free_sm_ah);
return -ENOMEM;
}