From: Eli Cohen Date: Mon, 14 May 2007 08:35:43 +0000 (+0300) Subject: IB/core: Free umem when mm is already gone X-Git-Tag: v3.12-rc1~29380^2~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7b82cd8ee7374f803a3daf9a6cbc6eb4bbb10a63;p=kernel%2Fkernel-generic.git IB/core: Free umem when mm is already gone Free umem when task's mm is already destroyed by the time ib_umem_release gets called. Found by Dotan Barak at Mellanox. Signed-off-by: Eli Cohen Signed-off-by: Roland Dreier --- diff --git a/drivers/infiniband/core/umem.c b/drivers/infiniband/core/umem.c index f32ca5f..6009234 100644 --- a/drivers/infiniband/core/umem.c +++ b/drivers/infiniband/core/umem.c @@ -209,8 +209,10 @@ void ib_umem_release(struct ib_umem *umem) __ib_umem_release(umem->context->device, umem, 1); mm = get_task_mm(current); - if (!mm) + if (!mm) { + kfree(umem); return; + } diff = PAGE_ALIGN(umem->length + umem->offset) >> PAGE_SHIFT;