Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 169
b: refs/heads/master
c: e464b2a
h: refs/heads/master
i:
  167: f912a84
v: v3
  • Loading branch information
Roland Dreier authored and Linus Torvalds committed Apr 16, 2005
1 parent 32a365c commit 68efe38
Show file tree
Hide file tree
Showing 2 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: 72c30290bea3a24e2ab56c7a51af47012f7465a4
refs/heads/master: e464b2a6c2c297702205ab725fd82489550a7893
5 changes: 3 additions & 2 deletions trunk/drivers/infiniband/hw/mthca/mthca_provider.c
Original file line number Diff line number Diff line change
Expand Up @@ -568,8 +568,9 @@ static struct ib_mr *mthca_reg_phys_mr(struct ib_pd *pd,

static int mthca_dereg_mr(struct ib_mr *mr)
{
mthca_free_mr(to_mdev(mr->device), to_mmr(mr));
kfree(mr);
struct mthca_mr *mmr = to_mmr(mr);
mthca_free_mr(to_mdev(mr->device), mmr);
kfree(mmr);
return 0;
}

Expand Down

0 comments on commit 68efe38

Please sign in to comment.