Return-path: Received: from mail-ea0-f182.google.com ([209.85.215.182]:58003 "EHLO mail-ea0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750968AbaB0HZB (ORCPT ); Thu, 27 Feb 2014 02:25:01 -0500 Received: by mail-ea0-f182.google.com with SMTP id b10so596285eae.41 for ; Wed, 26 Feb 2014 23:24:58 -0800 (PST) From: Michal Kazior To: ath10k@lists.infradead.org Cc: linux-wireless@vger.kernel.org, Michal Kazior Subject: [PATCH v3 0/8] ath10k: performance improvements Date: Thu, 27 Feb 2014 08:19:39 +0100 Message-Id: <1393485587-16879-1-git-send-email-michal.kazior@tieto.com> (sfid-20140227_082509_327824_6BC13BA4) In-Reply-To: <1392629563-31046-1-git-send-email-michal.kazior@tieto.com> References: <1392629563-31046-1-git-send-email-michal.kazior@tieto.com> Sender: linux-wireless-owner@vger.kernel.org List-ID: 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 v2: * improve comments/commit messages * fix unbalanced locking * fix var naming (s/err/ret) * fix sparse/checkpatch/buildbot warnings * remove code that didn't belong here * split batch tx/rx into 2 patches (+ath10k: reduce htt tx/rx spinlock overhead) v3: * just a resend (due to my mail-server issues the other day not all of the v2 patches had been sent out) Michal Kazior (8): 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: reduce htt tx/rx spinlock overhead 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 | 17 ++ drivers/net/wireless/ath/ath10k/htt_rx.c | 147 ++++++++---- drivers/net/wireless/ath/ath10k/htt_tx.c | 205 ++++++++-------- 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, 379 insertions(+), 551 deletions(-) -- 1.8.5.3