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-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=7b82cd8ee7374f803a3daf9a6cbc6eb4bbb10a63;p=mv-sheeva.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 f32ca5fbb26..6009234e4f9 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;