Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 80997511 authored by Yanjun.Zhu's avatar Yanjun.Zhu Committed by Greg Kroah-Hartman
Browse files

RDMA/rxe: Fix the problem "mutex_destroy missing"



[ Upstream commit 481047d7e8391d3842ae59025806531cdad710d9 ]

When a mutex lock is not used any more, the function mutex_destroy
should be called to mark the mutex lock uninitialized.

Fixes: 8700e3e7 ("Soft RoCE driver")
Signed-off-by: default avatarYanjun.Zhu <yanjun.zhu@linux.dev>
Link: https://lore.kernel.org/r/20240314065140.27468-1-yanjun.zhu@linux.dev


Reviewed-by: default avatarDaisuke Matsuda <matsuda-daisuke@fujitsu.com>
Signed-off-by: default avatarLeon Romanovsky <leon@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 4b0dcae5
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -72,6 +72,8 @@ void rxe_dealloc(struct ib_device *ib_dev)

	if (rxe->tfm)
		crypto_free_shash(rxe->tfm);

	mutex_destroy(&rxe->usdev_lock);
}

/* initialize rxe device parameters */