linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC/RFT 0/7] ath10k: performance improvements
@ 2014-02-17  9:32 Michal Kazior
  2014-02-17  9:32 ` [RFC/RFT 1/7] ath10k: remove DMA mapping wrappers Michal Kazior
                   ` (10 more replies)
  0 siblings, 11 replies; 40+ messages in thread
From: Michal Kazior @ 2014-02-17  9:32 UTC (permalink / raw)
  To: ath10k; +Cc: linux-wireless, Michal Kazior

Hi,

These patches aim at reducing host CPU load and
thus improve performance on low-end systems.

In my setup I get a relative improvement of
100mbps for both UDP Tx and Rx.

               Tx ----->
laptop:eth---eth:AP135:ath10k---ath10k:laptop
               <----- Rx


Michal Kazior (7):
  ath10k: remove DMA mapping wrappers
  ath10k: remove is_aborted from skb_cb
  ath10k: replace send_head() with tx_sg()
  ath10k: bypass htc for htt tx path
  ath10k: batch htt tx/rx completions
  ath10k: remove pci completion list
  ath10k: minimize coherent dma accesses

 drivers/net/wireless/ath/ath10k/ce.c     |  16 +-
 drivers/net/wireless/ath/ath10k/ce.h     |   9 +-
 drivers/net/wireless/ath/ath10k/core.h   |  33 +--
 drivers/net/wireless/ath/ath10k/hif.h    |  25 +-
 drivers/net/wireless/ath/ath10k/htc.c    |  25 +-
 drivers/net/wireless/ath/ath10k/htt.h    |  16 ++
 drivers/net/wireless/ath/ath10k/htt_rx.c | 152 +++++++-----
 drivers/net/wireless/ath/ath10k/htt_tx.c | 207 ++++++++--------
 drivers/net/wireless/ath/ath10k/mac.c    |   4 +-
 drivers/net/wireless/ath/ath10k/pci.c    | 389 +++++++------------------------
 drivers/net/wireless/ath/ath10k/pci.h    |  28 ---
 drivers/net/wireless/ath/ath10k/txrx.c   |  15 +-
 drivers/net/wireless/ath/ath10k/wmi.c    |  17 +-
 13 files changed, 382 insertions(+), 554 deletions(-)

-- 
1.8.5.3


^ permalink raw reply	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2014-02-28 10:13 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-17  9:32 [RFC/RFT 0/7] ath10k: performance improvements Michal Kazior
2014-02-17  9:32 ` [RFC/RFT 1/7] ath10k: remove DMA mapping wrappers Michal Kazior
2014-02-19 12:37   ` Kalle Valo
2014-02-17  9:32 ` [RFC/RFT 2/7] ath10k: remove is_aborted from skb_cb Michal Kazior
2014-02-17  9:32 ` [RFC/RFT 3/7] ath10k: replace send_head() with tx_sg() Michal Kazior
2014-02-19 12:48   ` Kalle Valo
2014-02-19 13:25     ` Michal Kazior
2014-02-19 14:18       ` Kalle Valo
2014-02-20  6:43         ` Michal Kazior
2014-02-24 11:46           ` Kalle Valo
2014-02-17  9:32 ` [RFC/RFT 4/7] ath10k: bypass htc for htt tx path Michal Kazior
2014-02-19 14:56   ` Kalle Valo
2014-02-17  9:32 ` [RFC/RFT 5/7] ath10k: batch htt tx/rx completions Michal Kazior
2014-02-19 15:10   ` Kalle Valo
2014-02-20 11:23     ` Michal Kazior
2014-02-24 11:49       ` Kalle Valo
2014-02-17  9:32 ` [RFC/RFT 6/7] ath10k: remove pci completion list Michal Kazior
2014-02-17  9:32 ` [RFC/RFT 7/7] ath10k: minimize coherent dma accesses Michal Kazior
2014-02-17 15:01 ` [RFC/RFT 0/7] ath10k: performance improvements Kalle Valo
2014-02-19 15:16 ` Kalle Valo
2014-02-26 11:34 ` [PATCH v2 0/8] " Michal Kazior
2014-02-26 11:34   ` [PATCH v2 1/8] ath10k: remove DMA mapping wrappers Michal Kazior
2014-02-26 11:34   ` [PATCH v2 2/8] ath10k: remove is_aborted from skb_cb Michal Kazior
2014-02-26 12:09   ` [PATCH v2 0/8] ath10k: performance improvements Michal Kazior
2014-02-27  7:19 ` [PATCH v3 " Michal Kazior
2014-02-27  7:19   ` [PATCH v3 1/8] ath10k: remove DMA mapping wrappers Michal Kazior
2014-02-27  7:19   ` [PATCH v3 2/8] ath10k: remove is_aborted from skb_cb Michal Kazior
2014-02-27  7:19   ` [PATCH v3 3/8] ath10k: replace send_head() with tx_sg() Michal Kazior
2014-02-27  7:19   ` [PATCH v3 4/8] ath10k: bypass htc for htt tx path Michal Kazior
2014-02-28  9:06     ` Kalle Valo
2014-02-28  9:15       ` Michal Kazior
2014-02-28  9:28         ` Kalle Valo
2014-02-28  9:54           ` Michal Kazior
2014-02-27  7:19   ` [PATCH v3 5/8] ath10k: batch htt tx/rx completions Michal Kazior
2014-02-28  9:00     ` Kalle Valo
2014-02-28  9:07       ` Michal Kazior
2014-02-27  7:19   ` [PATCH v3 6/8] ath10k: reduce htt tx/rx spinlock overhead Michal Kazior
2014-02-27  7:19   ` [PATCH v3 7/8] ath10k: remove pci completion list Michal Kazior
2014-02-27  7:19   ` [PATCH v3 8/8] ath10k: minimize coherent dma accesses Michal Kazior
2014-02-28 10:13   ` [PATCH v3 0/8] ath10k: performance improvements Kalle Valo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).