OSDN Git Service

mac80211: remove STA txq pending airtime underflow warning
authorFelix Fietkau <nbd@nbd.name>
Sat, 25 Jul 2020 08:45:33 +0000 (10:45 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Thu, 30 Jul 2020 08:26:04 +0000 (10:26 +0200)
This warning can trigger if there is a mismatch between frames that were
sent with the sta pointer set vs tx status frames reported for the sta address.

This can happen due to race conditions on re-creating stations, or even
in the case of .sta_add/remove being used instead of .sta_state, which can cause
frames to be sent to a station that has not been uploaded yet.

If there is an actual underflow issue, it should show up in the device airtime
warning below, so it is better to remove this one.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
Link: https://lore.kernel.org/r/20200725084533.13829-1-nbd@nbd.name
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/sta_info.c

index cd8487b..af4cc5f 100644 (file)
@@ -1923,9 +1923,7 @@ void ieee80211_sta_update_pending_airtime(struct ieee80211_local *local,
        if (sta) {
                tx_pending = atomic_sub_return(tx_airtime,
                                               &sta->airtime[ac].aql_tx_pending);
-               if (WARN_ONCE(tx_pending < 0,
-                             "STA %pM AC %d txq pending airtime underflow: %u, %u",
-                             sta->addr, ac, tx_pending, tx_airtime))
+               if (tx_pending < 0)
                        atomic_cmpxchg(&sta->airtime[ac].aql_tx_pending,
                                       tx_pending, 0);
        }