IB/rdmavt: Don't vfree a kzalloc'ed memory region
authorColin Ian King <colin.king@canonical.com>
Fri, 9 Sep 2016 07:15:37 +0000 (08:15 +0100)
committerDoug Ledford <dledford@redhat.com>
Fri, 16 Sep 2016 18:14:23 +0000 (14:14 -0400)
commite4618d40eb3dc1a6d1f55f7150ea25bb23ab410a
tree587b46a8506c0d8bc6d66a81116e99fadd131bae
parentc1cc72cb6ff95cbe02ed747866576dccab4a5911
IB/rdmavt: Don't vfree a kzalloc'ed memory region

The userspace memory region 'mr' is allocated with kzalloc in
__rvt_alloc_mr  however it is incorrectly being freed with vfree in
__rvt_free_mr. Fix this by using kfree to free it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
Acked-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/sw/rdmavt/mr.c