Commit 126a516f authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Felix Fietkau
Browse files

wifi: mt76: mt7915: Fix an error handling path in mt7915_add_interface()



If mt76_wcid_alloc() fails, the "mt76.mutex" mutex needs to be released as
done in the other error handling paths of mt7915_add_interface().

Fixes: f3049b88 ("wifi: mt76: mt7915: allocate vif wcid in the same range as stations")
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://patch.msgid.link/b9d8fbfc19360bfe60b9cea1cb0f735ab3b4bc26.1727639596.git.christophe.jaillet@wanadoo.fr


Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent aa566ac6
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -246,8 +246,10 @@ static int mt7915_add_interface(struct ieee80211_hw *hw,
	phy->omac_mask |= BIT_ULL(mvif->mt76.omac_idx);

	idx = mt76_wcid_alloc(dev->mt76.wcid_mask, mt7915_wtbl_size(dev));
	if (idx < 0)
		return -ENOSPC;
	if (idx < 0) {
		ret = -ENOSPC;
		goto out;
	}

	INIT_LIST_HEAD(&mvif->sta.rc_list);
	INIT_LIST_HEAD(&mvif->sta.wcid.poll_list);