]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mt76: drop rcu read lock in mt76_rx_aggr_stop
authorFelix Fietkau <nbd@nbd.name>
Mon, 7 Oct 2019 13:30:18 +0000 (15:30 +0200)
committerFelix Fietkau <nbd@nbd.name>
Wed, 20 Nov 2019 12:23:50 +0000 (13:23 +0100)
A rcu read locked section is not allowed to sleep, and the rcu lock here
isn't actually necessary, because we're holding dev->mutex.
Fixes an issue when the tid work item is still running while freeing
a station or stopping the aggregation session

Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/agg-rx.c

index 2276fd4e9ec3ce161a93175c45a8683c04baec55..b05d439dca3b89bcf95ce581a2d93805507cea02 100644 (file)
@@ -277,17 +277,13 @@ static void mt76_rx_aggr_shutdown(struct mt76_dev *dev, struct mt76_rx_tid *tid)
 
 void mt76_rx_aggr_stop(struct mt76_dev *dev, struct mt76_wcid *wcid, u8 tidno)
 {
-       struct mt76_rx_tid *tid;
-
-       rcu_read_lock();
+       struct mt76_rx_tid *tid = NULL;
 
-       tid = rcu_dereference(wcid->aggr[tidno]);
+       rcu_swap_protected(wcid->aggr[tidno], tid,
+                          lockdep_is_held(&dev->mutex));
        if (tid) {
-               rcu_assign_pointer(wcid->aggr[tidno], NULL);
                mt76_rx_aggr_shutdown(dev, tid);
                kfree_rcu(tid, rcu_head);
        }
-
-       rcu_read_unlock();
 }
 EXPORT_SYMBOL_GPL(mt76_rx_aggr_stop);