Based on the earlier discussion (RFC: wilc1000: refactor TX path to use sk_buff queue), here is the full patch series to clean up and simplify the TX path. The biggest patch is 0016, which is the one actually switching the queue data type, but I worked hard to minimize it to only direct changes due to the type changes. There is no significant performance difference due to this patch. I'd expect the new code to be slightly faster, but my WLAN test-environment is not sufficiently controlled to be sure of that. original iperf3 performance (duration 120 seconds): TX [Mbps] RX [Mbps] PSM off: 14.8 18.9 PSM on: 10.5 17.1 iperf3 performance with this patch-series applied: TX [Mbps] RX [Mbps] PSM off: 15.6 19.5 PSM on: 11.2 17.7 (PSM == power-save-mode; controlled by iw dev wlan0 set power_save on/off) David Mosberger-Tang (23): wilc1000: don't hold txq_spinlock while initializing AC queue limits wilc1000: switch txq_event from completion to waitqueue wilc1000: move receive-queue stats from txq to wilc structure wilc1000: factor common code in wilc_wlan_cfg_set() and wilc_wlan_cfg_get() wilc1000: add wilc_wlan_tx_packet_done() function wilc1000: move tx packet drop code into its own function wilc1000: increment tx_dropped stat counter on tx packet drop wilc1000: fix management packet type inconsistency wilc1000: prepare wilc_wlan_tx_packet_done() for sk_buff changes wilc1000: factor initialization of tx queue-specific packet fields wilc1000: convert tqx_entries from "int" to "atomic_t" wilc1000: refactor wilc_wlan_cfg_commit() a bit wilc1000: sanitize config packet sequence number management a bit wilc1000: if there is no tx packet, don't increment packets-sent counter wilc1000: Add struct wilc_skb_tx_cb as an alias of struct txq_entry_t wilc1000: switch tx queue to normal sk_buff entries wilc1000: remove no longer used "vif" argument from init_txq_entry() wilc1000: split huge tx handler into subfunctions wilc1000: don't tell the chip to go to sleep while copying tx packets wilc1000: eliminate "max_size_over" variable in fill_vmm_table wilc1000: declare read-only ac_preserve_ratio as static and const wilc1000: minor syntax cleanup wilc1000: introduce symbolic names for two tx-related control bits .../wireless/microchip/wilc1000/cfg80211.c | 37 +- drivers/net/wireless/microchip/wilc1000/mon.c | 36 +- .../net/wireless/microchip/wilc1000/netdev.c | 40 +- .../net/wireless/microchip/wilc1000/netdev.h | 13 +- .../net/wireless/microchip/wilc1000/wlan.c | 755 +++++++++--------- .../net/wireless/microchip/wilc1000/wlan.h | 52 +- 6 files changed, 442 insertions(+), 491 deletions(-) -- 2.25.1