aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband
diff options
context:
space:
mode:
authorRoland Dreier <roland@topspin.com>2005-04-16 18:26:17 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:26:17 -0400
commite464b2a6c2c297702205ab725fd82489550a7893 (patch)
treed7857bd1bcfd5607998b830130f1ef23f7322809 /drivers/infiniband
parent72c30290bea3a24e2ab56c7a51af47012f7465a4 (diff)
[PATCH] IB/mthca: clean up mthca_dereg_mr()
It's cleaner to kfree mthca_mr, and not rely on the fact that ib_mr is the first field in mthca_mr. Signed-off-by: Michael S. Tsirkin <mst@mellanox.co.il> Signed-off-by: Roland Dreier <roland@topspin.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r--drivers/infiniband/hw/mthca/mthca_provider.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/mthca/mthca_provider.c b/drivers/infiniband/hw/mthca/mthca_provider.c
index 293c69b1e48..55a338da997 100644
--- a/drivers/infiniband/hw/mthca/mthca_provider.c
+++ b/drivers/infiniband/hw/mthca/mthca_provider.c
@@ -568,8 +568,9 @@ static struct ib_mr *mthca_reg_phys_mr(struct ib_pd *pd,
568 568
569static int mthca_dereg_mr(struct ib_mr *mr) 569static int mthca_dereg_mr(struct ib_mr *mr)
570{ 570{
571 mthca_free_mr(to_mdev(mr->device), to_mmr(mr)); 571 struct mthca_mr *mmr = to_mmr(mr);
572 kfree(mr); 572 mthca_free_mr(to_mdev(mr->device), mmr);
573 kfree(mmr);
573 return 0; 574 return 0;
574} 575}
575 576