diff options
author | Bart Van Assche <bart.vanassche@sandisk.com> | 2016-12-15 17:15:07 +0100 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-12-18 13:35:19 -0500 |
commit | e259934d4df7f99f2a5c2c4f074f6a55bd4b1722 (patch) | |
tree | 3e1bac611c779fff18938f35d889b0e5865da579 /drivers/infiniband | |
parent | b414fa01c31318383ae29d9d23cb9ca4184bbd86 (diff) | |
download | linux-e259934d4df7f99f2a5c2c4f074f6a55bd4b1722.tar.gz linux-e259934d4df7f99f2a5c2c4f074f6a55bd4b1722.tar.xz |
IB/rxe: Fix a memory leak in rxe_qp_cleanup()
A socket is associated with every QP by the rxe driver but sock_release()
is never called. Add a call to sock_release() in rxe_qp_cleanup().
Fixes: commit 8700e3e7c48A5 ("Add Soft RoCE driver")
Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com>
Cc: Moni Shoua <monis@mellanox.com>
Cc: Kamal Heib <kamalh@mellanox.com>
Cc: Amir Vadai <amirv@mellanox.com>
Cc: Haggai Eran <haggaie@mellanox.com>
Cc: <stable@vger.kernel.org>
Reviewed-by: Moni Shoua <monis@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/sw/rxe/rxe_qp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/infiniband/sw/rxe/rxe_qp.c b/drivers/infiniband/sw/rxe/rxe_qp.c index b8036cfbce04..4b6e455e72a1 100644 --- a/drivers/infiniband/sw/rxe/rxe_qp.c +++ b/drivers/infiniband/sw/rxe/rxe_qp.c @@ -853,4 +853,5 @@ void rxe_qp_cleanup(void *arg) free_rd_atomic_resources(qp); kernel_sock_shutdown(qp->sk, SHUT_RDWR); + sock_release(qp->sk); } |