]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
mt76: mt7915: fix muar_idx in mt7915_mcu_alloc_sta_req()
authorShayne Chen <shayne.chen@mediatek.com>
Mon, 18 Oct 2021 08:07:04 +0000 (16:07 +0800)
committerAndrea Righi <andrea.righi@canonical.com>
Tue, 4 Jan 2022 08:48:24 +0000 (09:48 +0100)
BugLink: https://bugs.launchpad.net/bugs/1951822
[ Upstream commit 161cc13912d3c3e8857001988dfba39be842454a ]

For broadcast/multicast wcid, the muar_idx should be 0xe.

Fixes: e57b7901469f ("mt76: add mac80211 driver for MT7915 PCIe-based chipsets")
Signed-off-by: Shayne Chen <shayne.chen@mediatek.com>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
drivers/net/wireless/mediatek/mt76/mt7915/mcu.c

index 6dfe3716a63a5bef4f1f35769f0eeb65ebdf08ab..ba36d3caec8e16db71f02aa95c75c8150a6a7aa8 100644 (file)
@@ -721,7 +721,7 @@ mt7915_mcu_alloc_sta_req(struct mt7915_dev *dev, struct mt7915_vif *mvif,
                .bss_idx = mvif->idx,
                .wlan_idx_lo = msta ? to_wcid_lo(msta->wcid.idx) : 0,
                .wlan_idx_hi = msta ? to_wcid_hi(msta->wcid.idx) : 0,
-               .muar_idx = msta ? mvif->omac_idx : 0,
+               .muar_idx = msta && msta->wcid.sta ? mvif->omac_idx : 0xe,
                .is_tlv_append = 1,
        };
        struct sk_buff *skb;