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

Commit 503422d9 authored by Michal Kazior's avatar Michal Kazior Committed by Kalle Valo
Browse files

ath10k: add missing mutex unlock on failpath



Kernel would complain about leaving a held lock
after going back to userspace and would
subsequently deadlock.

Fixes: e04cafbc ("ath10k: fix peer limit enforcement")
Reported-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarMichal Kazior <michal.kazior@tieto.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 5db879ae
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -4144,7 +4144,8 @@ static int ath10k_add_interface(struct ieee80211_hw *hw,

	if (ar->num_peers >= ar->max_num_peers) {
		ath10k_warn(ar, "refusing vdev creation due to insufficient peer entry resources in firmware\n");
		return -ENOBUFS;
		ret = -ENOBUFS;
		goto err;
	}

	if (ar->free_vdev_map == 0) {