diff options
author | Felix Fietkau <nbd@nbd.name> | 2021-05-07 12:02:11 +0200 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2021-05-15 13:43:59 +0200 |
commit | 94bb18b03d43f32e9440e8e350b7f533137c40f6 (patch) | |
tree | d310c3420c1129fae3147a134f6624fca024a9e3 /drivers/net/wireless | |
parent | mt76: connac: fix HT A-MPDU setting field in STA_REC_PHY (diff) | |
download | linux-94bb18b03d43f32e9440e8e350b7f533137c40f6.tar.xz linux-94bb18b03d43f32e9440e8e350b7f533137c40f6.zip |
mt76: mt7921: fix max aggregation subframes setting
The hardware can only handle 64 subframes in rx direction and 128 for tx.
Improves throughput with APs that can handle more than that
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20210507100211.15709-2-nbd@nbd.name
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r-- | drivers/net/wireless/mediatek/mt76/mt7921/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/mediatek/mt76/mt7921/init.c b/drivers/net/wireless/mediatek/mt76/mt7921/init.c index fe28bf4050c4..1763ea0614ce 100644 --- a/drivers/net/wireless/mediatek/mt76/mt7921/init.c +++ b/drivers/net/wireless/mediatek/mt76/mt7921/init.c @@ -76,8 +76,8 @@ mt7921_init_wiphy(struct ieee80211_hw *hw) struct wiphy *wiphy = hw->wiphy; hw->queues = 4; - hw->max_rx_aggregation_subframes = IEEE80211_MAX_AMPDU_BUF; - hw->max_tx_aggregation_subframes = IEEE80211_MAX_AMPDU_BUF; + hw->max_rx_aggregation_subframes = 64; + hw->max_tx_aggregation_subframes = 128; hw->radiotap_timestamp.units_pos = IEEE80211_RADIOTAP_TIMESTAMP_UNIT_US; |