mt76: pass the per-vif wcid to the core for multicast rx
authorFelix Fietkau <nbd@nbd.name>
Wed, 24 Jan 2018 15:19:16 +0000 (16:19 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 26 Jan 2018 09:18:45 +0000 (11:18 +0200)
Preparation for adding software rx CCMP PN validation

Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/mediatek/mt76/mt76x2.h
drivers/net/wireless/mediatek/mt76/mt76x2_mac.c
drivers/net/wireless/mediatek/mt76/mt76x2_main.c

index a12dfce..17df17a 100644 (file)
@@ -144,6 +144,7 @@ struct mt76x2_vif {
 struct mt76x2_sta {
        struct mt76_wcid wcid; /* must be first */
 
+       struct mt76x2_vif *vif;
        struct mt76x2_tx_status status;
        int n_frames;
 };
index b96d8a8..f56a8f4 100644 (file)
@@ -266,12 +266,20 @@ static void mt76x2_remove_hdr_pad(struct sk_buff *skb)
 }
 
 static struct mt76_wcid *
-mt76x2_rx_get_wcid(struct mt76x2_dev *dev, u8 idx)
+mt76x2_rx_get_sta_wcid(struct mt76x2_dev *dev, u8 idx, bool unicast)
 {
+       struct mt76x2_sta *sta;
+       struct mt76_wcid *wcid;
+
        if (idx >= ARRAY_SIZE(dev->wcid))
                return NULL;
 
-       return rcu_dereference(dev->wcid[idx]);
+       wcid = rcu_dereference(dev->wcid[idx]);
+       if (unicast || !wcid)
+               return wcid;
+
+       sta = container_of(wcid, struct mt76x2_sta, wcid);
+       return &sta->vif->group_wcid;
 }
 
 int mt76x2_mac_process_rx(struct mt76x2_dev *dev, struct sk_buff *skb,
@@ -282,11 +290,12 @@ int mt76x2_mac_process_rx(struct mt76x2_dev *dev, struct sk_buff *skb,
        u32 ctl = le32_to_cpu(rxwi->ctl);
        u16 rate = le16_to_cpu(rxwi->rate);
        u16 tid_sn = le16_to_cpu(rxwi->tid_sn);
+       bool unicast = rxwi->rxinfo & cpu_to_le32(MT_RXINFO_UNICAST);
        u8 wcid;
        int len;
 
        wcid = FIELD_GET(MT_RXWI_CTL_WCID, ctl);
-       status->wcid = mt76x2_rx_get_wcid(dev, wcid);
+       status->wcid = mt76x2_rx_get_sta_wcid(dev, wcid, unicast);
 
        if (rxwi->rxinfo & cpu_to_le32(MT_RXINFO_L2PAD))
                mt76x2_remove_hdr_pad(skb);
index bc08040..08fe804 100644 (file)
@@ -273,6 +273,7 @@ mt76x2_sta_add(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
                goto out;
        }
 
+       msta->vif = mvif;
        msta->wcid.sta = 1;
        msta->wcid.idx = idx;
        msta->wcid.hw_key_idx = -1;