diff options
Diffstat (limited to 'net/mac80211/main.c')
-rw-r--r-- | net/mac80211/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/main.c b/net/mac80211/main.c index af0056e7e5b3..b486e634f4fe 100644 --- a/net/mac80211/main.c +++ b/net/mac80211/main.c | |||
@@ -621,7 +621,7 @@ int ieee80211_start_tx_ba_session(struct ieee80211_hw *hw, u8 *ra, u16 tid) | |||
621 | 621 | ||
622 | /* ensure that TX flow won't interrupt us | 622 | /* ensure that TX flow won't interrupt us |
623 | * until the end of the call to requeue function */ | 623 | * until the end of the call to requeue function */ |
624 | txq = &local->mdev->tx_queue; | 624 | txq = netdev_get_tx_queue(local->mdev, 0); |
625 | spin_lock_bh(&txq->lock); | 625 | spin_lock_bh(&txq->lock); |
626 | 626 | ||
627 | /* create a new queue for this aggregation */ | 627 | /* create a new queue for this aggregation */ |
@@ -862,7 +862,7 @@ void ieee80211_stop_tx_ba_cb(struct ieee80211_hw *hw, u8 *ra, u8 tid) | |||
862 | 862 | ||
863 | /* avoid ordering issues: we are the only one that can modify | 863 | /* avoid ordering issues: we are the only one that can modify |
864 | * the content of the qdiscs */ | 864 | * the content of the qdiscs */ |
865 | txq = &local->mdev->tx_queue; | 865 | txq = netdev_get_tx_queue(local->mdev, 0); |
866 | spin_lock_bh(&txq->lock); | 866 | spin_lock_bh(&txq->lock); |
867 | /* remove the queue for this aggregation */ | 867 | /* remove the queue for this aggregation */ |
868 | ieee80211_ht_agg_queue_remove(local, sta, tid, 1); | 868 | ieee80211_ht_agg_queue_remove(local, sta, tid, 1); |