dect
/
linux-2.6
Archived
13
0
Fork 0

[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>
This commit is contained in:
Roland Dreier 2005-04-16 15:26:17 -07:00 committed by Linus Torvalds
parent 72c30290be
commit e464b2a6c2
1 changed files with 3 additions and 2 deletions

View 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;
}