Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 116836
b: refs/heads/master
c: dc35fac
h: refs/heads/master
v: v3
  • Loading branch information
Steve Wise authored and Roland Dreier committed Oct 15, 2008
1 parent b730b02 commit ebd8679
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6aea938f54ca785ce3bea67a8948698225c6ca58
refs/heads/master: dc35fac9e936c6cc6ad825fc7e4455468d10adc6
4 changes: 2 additions & 2 deletions trunk/drivers/infiniband/core/ucma.c
Original file line number Diff line number Diff line change
Expand Up @@ -904,8 +904,8 @@ static ssize_t ucma_join_multicast(struct ucma_file *file,

mutex_lock(&file->mut);
mc = ucma_alloc_multicast(ctx);
if (!mc) {
ret = -ENOMEM;
if (IS_ERR(mc)) {
ret = PTR_ERR(mc);
goto err1;
}

Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/infiniband/hw/cxgb3/iwch_cm.c
Original file line number Diff line number Diff line change
Expand Up @@ -1942,6 +1942,7 @@ int iwch_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
fail3:
cxgb3_free_atid(ep->com.tdev, ep->atid);
fail2:
cm_id->rem_ref(cm_id);
put_ep(&ep->com);
out:
return err;
Expand Down

0 comments on commit ebd8679

Please sign in to comment.