]> Git Repo - linux.git/commitdiff
[PATCH] IB/mthca: clean up mthca_dereg_mr()
authorRoland Dreier <[email protected]>
Sat, 16 Apr 2005 22:26:17 +0000 (15:26 -0700)
committerLinus Torvalds <[email protected]>
Sat, 16 Apr 2005 22:26:17 +0000 (15:26 -0700)
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 <[email protected]>
Signed-off-by: Roland Dreier <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/infiniband/hw/mthca/mthca_provider.c

index 293c69b1e48f6b657297f220c9869c279ca4e886..55a338da9970c3b597be5dda67b15eb5a4d70d24 100644 (file)
@@ -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;
 }
 
This page took 0.054855 seconds and 4 git commands to generate.