mbox series

[0/7] add tx aggregation for mt7663s

Message ID cover.1599297449.git.lorenzo@kernel.org (mailing list archive)
Headers show
Series add tx aggregation for mt7663s | expand

Message

Lorenzo Bianconi Sept. 5, 2020, 9:26 a.m. UTC
Introduce sdio tx aggregation to reduce bus transaction ands improve tx
throughput. For the moment the skb are copied in a dedicated buffer
since mmc APIs do not support sg table for zero-copy.
Fixed a quota leak in mt7663s_refill_sched_quota.
Do not update quota in case of tx errors.

Lorenzo Bianconi (7):
  mt76: mt7663s: do not use altx for ctl/mgmt taffic
  mt76: mt7663s: split mt7663s_tx_update_sched in
    mt7663s_tx_{pick,update}_quota
  mt76: mt7663s: introduce __mt7663s_xmit_queue routine
  mt76: move pad estimation out of mt76_skb_adjust_pad
  mt76: mt7663s: fix possible quota leak in mt7663s_refill_sched_quota
  mt76: mt7663s: introduce sdio tx aggregation
  mt76: mt7663: check isr read return value in mt7663s_rx_work

 drivers/net/wireless/mediatek/mt76/mac80211.c |   5 +-
 drivers/net/wireless/mediatek/mt76/mt76.h     |   5 +-
 .../net/wireless/mediatek/mt76/mt7615/sdio.c  |  14 +-
 .../wireless/mediatek/mt76/mt7615/sdio_txrx.c | 174 ++++++++++++------
 .../wireless/mediatek/mt76/mt7615/usb_mcu.c   |   6 +-
 .../wireless/mediatek/mt76/mt7615/usb_sdio.c  |   6 +-
 .../wireless/mediatek/mt76/mt76x02_usb_core.c |   5 +-
 drivers/net/wireless/mediatek/mt76/sdio.c     |   5 +-
 drivers/net/wireless/mediatek/mt76/tx.c       |   6 +-
 9 files changed, 145 insertions(+), 81 deletions(-)