]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
mt76: get station pointer by wcid and pass it to mac80211
authorFelix Fietkau <nbd@nbd.name>
Wed, 24 Jan 2018 15:19:13 +0000 (16:19 +0100)
committerKalle Valo <kvalo@codeaurora.org>
Fri, 26 Jan 2018 09:18:34 +0000 (11:18 +0200)
Avoids the rhashtable lookup based on the MAC address inside mac80211

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

index e539b3838b9447e82f5db2da2d52196b24d033f3..fd8bea144973be7e02e758f1283b3c6b83b9d955 100644 (file)
@@ -392,12 +392,16 @@ mt76_dma_rx_poll(struct napi_struct *napi, int budget)
        dev = container_of(napi->dev, struct mt76_dev, napi_dev);
        qid = napi - dev->napi;
 
+       rcu_read_lock();
+
        do {
                cur = mt76_dma_rx_process(dev, &dev->q_rx[qid], budget - done);
                mt76_rx_complete(dev, qid);
                done += cur;
        } while (cur && done < budget);
 
+       rcu_read_unlock();
+
        if (done < budget) {
                napi_complete(napi);
                dev->drv->rx_poll_complete(dev, qid);
index 258d2623d1bfc50b59ea47e733005888511e5dab..c1982211d6580d572d5d10b57fd5d37c0932f3e2 100644 (file)
@@ -384,7 +384,7 @@ int mt76_get_survey(struct ieee80211_hw *hw, int idx,
 }
 EXPORT_SYMBOL_GPL(mt76_get_survey);
 
-static void
+static struct ieee80211_sta *
 mt76_rx_convert(struct sk_buff *skb)
 {
        struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
@@ -407,14 +407,17 @@ mt76_rx_convert(struct sk_buff *skb)
        BUILD_BUG_ON(sizeof(mstat) > sizeof(skb->cb));
        BUILD_BUG_ON(sizeof(status->chain_signal) != sizeof(mstat.chain_signal));
        memcpy(status->chain_signal, mstat.chain_signal, sizeof(mstat.chain_signal));
+
+       return wcid_to_sta(mstat.wcid);
 }
 
 void mt76_rx_complete(struct mt76_dev *dev, enum mt76_rxq_id q)
 {
+       struct ieee80211_sta *sta;
        struct sk_buff *skb;
 
        while ((skb = __skb_dequeue(&dev->rx_skb[q])) != NULL) {
-               mt76_rx_convert(skb);
-               ieee80211_rx_napi(dev->hw, NULL, skb, &dev->napi[q]);
+               sta = mt76_rx_convert(skb);
+               ieee80211_rx_napi(dev->hw, sta, skb, &dev->napi[q]);
        }
 }
index be4846ee4828b558135e5a1d0222ddfdf09f1438..e20c52607c665d6c0d4a93a1cf1456de68384615 100644 (file)
@@ -125,6 +125,8 @@ struct mt76_wcid {
        u8 idx;
        u8 hw_key_idx;
 
+       u8 sta:1;
+
        __le16 tx_rate;
        bool tx_rate_set;
        u8 tx_rate_nss;
@@ -251,6 +253,7 @@ struct mt76_rate_power {
 };
 
 struct mt76_rx_status {
+       struct mt76_wcid *wcid;
        u32 flag;
        u16 freq;
        u8 enc_flags;
@@ -343,6 +346,17 @@ mtxq_to_txq(struct mt76_txq *mtxq)
        return container_of(ptr, struct ieee80211_txq, drv_priv);
 }
 
+static inline struct ieee80211_sta *
+wcid_to_sta(struct mt76_wcid *wcid)
+{
+       void *ptr = wcid;
+
+       if (!wcid || !wcid->sta)
+               return NULL;
+
+       return container_of(ptr, struct ieee80211_sta, drv_priv);
+}
+
 int mt76_tx_queue_skb(struct mt76_dev *dev, struct mt76_queue *q,
                      struct sk_buff *skb, struct mt76_wcid *wcid,
                      struct ieee80211_sta *sta);
index 2e12fc0d5c9eb4afe6a9f9ce0ec1edb80550fbf9..75f2843847d0276f71a013e6c108778b50e741fe 100644 (file)
@@ -265,6 +265,15 @@ static void mt76x2_remove_hdr_pad(struct sk_buff *skb)
        skb_pull(skb, 2);
 }
 
+static struct mt76_wcid *
+mt76x2_rx_get_wcid(struct mt76x2_dev *dev, u8 idx)
+{
+       if (idx >= ARRAY_SIZE(dev->wcid))
+               return NULL;
+
+       return rcu_dereference(dev->wcid[idx]);
+}
+
 int mt76x2_mac_process_rx(struct mt76x2_dev *dev, struct sk_buff *skb,
                          void *rxi)
 {
@@ -272,8 +281,12 @@ int mt76x2_mac_process_rx(struct mt76x2_dev *dev, struct sk_buff *skb,
        struct mt76x2_rxwi *rxwi = rxi;
        u32 ctl = le32_to_cpu(rxwi->ctl);
        u16 rate = le16_to_cpu(rxwi->rate);
+       u8 wcid;
        int len;
 
+       wcid = FIELD_GET(MT_RXWI_CTL_WCID, ctl);
+       status->wcid = mt76x2_rx_get_wcid(dev, wcid);
+
        if (rxwi->rxinfo & cpu_to_le32(MT_RXINFO_L2PAD))
                mt76x2_remove_hdr_pad(skb);
 
index aa5fbb64e218dc160ee96c7110709260b2151583..2a1cb65c5edb72cd9378b7130c1132c329ee6e0e 100644 (file)
@@ -273,6 +273,7 @@ mt76x2_sta_add(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
                goto out;
        }
 
+       msta->wcid.sta = 1;
        msta->wcid.idx = idx;
        msta->wcid.hw_key_idx = -1;
        mt76x2_mac_wcid_setup(dev, idx, mvif->idx, sta->addr);