Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 33115
b: refs/heads/master
c: 75df23e
h: refs/heads/master
i:
  33113: eba507d
  33111: ae3d0e5
v: v3
  • Loading branch information
Sean Hefty authored and Roland Dreier committed Aug 3, 2006
1 parent 3e91140 commit e95bd19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 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: 69e9fbb460fa8766428960439841ffcf565032c1
refs/heads/master: 75df23e229acab85b704f4603bdf5efdc7960e6a
4 changes: 3 additions & 1 deletion trunk/drivers/infiniband/core/cm.c
Original file line number Diff line number Diff line change
Expand Up @@ -975,8 +975,10 @@ int ib_send_cm_req(struct ib_cm_id *cm_id,

cm_id_priv->timewait_info = cm_create_timewait_info(cm_id_priv->
id.local_id);
if (IS_ERR(cm_id_priv->timewait_info))
if (IS_ERR(cm_id_priv->timewait_info)) {
ret = PTR_ERR(cm_id_priv->timewait_info);
goto out;
}

ret = cm_init_av_by_path(param->primary_path, &cm_id_priv->av);
if (ret)
Expand Down

0 comments on commit e95bd19

Please sign in to comment.