From: Oleksij Rempel <linux@rempel-privat.de>
To: ath9k-devel@lists.ath9k.org
Subject: [ath9k-devel] [PATCH v2 00/13] eliminate some ath9k_htc code
Date: Tue, 11 Feb 2014 08:57:31 +0100 [thread overview]
Message-ID: <52F9D7EB.1080309@rempel-privat.de> (raw)
In-Reply-To: <1391506070-8636-1-git-send-email-linux@rempel-privat.de>
Hello all,
what is about this change set? Should i resend it.
Am 04.02.2014 10:27, schrieb Oleksij Rempel:
> This patch set moves most common RX code from ath9k/recv.c to
> common.c without any additional changes and reworks ath9k_htc RX code
> to make use of new common functions.
> Since ath9k_htc part was more intrusive I made tests in STA and AP modes. No noticeable regressions was introduced.
> Last patch is important for debugging FW crashes.
>
> Oleksij Rempel (13):
> ath: add last_rssi to ath_common
> ath9k: move ath9k_process_rssi to common.c
> ath9k: move ath9k_process_rate to common.c
> ath9k: move ath9k_rx_accept to common.c
> ath9k_htc: add rx header converter to make it usable by ath9k
> ath9k_htc: use ath9k_cmn_process_rssi
> ath9k_htc: use ath9k_cmn_process_rate
> ath9k_htc: use ath9k_cmn_rx_accept
> ath9k_htc: sync rx_status-> related code with ath9k
> ath9k: move ath9k_rx_skb_postprocess to common.c
> ath9k_htc: use ath9k_cmn_rx_skb_postprocess
> ath9k_htc: remove useless memcpy
> ath9k_htc: catch fw panic pattern
>
> drivers/net/wireless/ath/ath.h | 2 +
> drivers/net/wireless/ath/ath9k/ath9k.h | 1 -
> drivers/net/wireless/ath/ath9k/common.c | 244 +++++++++++++++++++++++
> drivers/net/wireless/ath/ath9k/common.h | 19 ++
> drivers/net/wireless/ath/ath9k/htc.h | 1 -
> drivers/net/wireless/ath/ath9k/htc_drv_init.c | 1 +
> drivers/net/wireless/ath/ath9k/htc_drv_main.c | 1 +
> drivers/net/wireless/ath/ath9k/htc_drv_txrx.c | 176 ++++++-----------
> drivers/net/wireless/ath/ath9k/htc_hst.c | 36 ++++
> drivers/net/wireless/ath/ath9k/htc_hst.h | 12 ++
> drivers/net/wireless/ath/ath9k/init.c | 2 +-
> drivers/net/wireless/ath/ath9k/mac.h | 9 +-
> drivers/net/wireless/ath/ath9k/main.c | 2 +-
> drivers/net/wireless/ath/ath9k/recv.c | 266 ++------------------------
> 14 files changed, 386 insertions(+), 386 deletions(-)
>
--
Regards,
Oleksij
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 278 bytes
Desc: OpenPGP digital signature
Url : http://lists.ath9k.org/pipermail/ath9k-devel/attachments/20140211/74593fcd/attachment.pgp
WARNING: multiple messages have this Message-ID (diff)
From: Oleksij Rempel <linux@rempel-privat.de>
To: ath9k-devel@lists.ath9k.org, linville@tuxdriver.com,
linux-wireless@vger.kernel.org
Cc: Oleksij Rempel <linux@rempel-privat.de>
Subject: Re: [PATCH v2 00/13] eliminate some ath9k_htc code
Date: Tue, 11 Feb 2014 08:57:31 +0100 [thread overview]
Message-ID: <52F9D7EB.1080309@rempel-privat.de> (raw)
In-Reply-To: <1391506070-8636-1-git-send-email-linux@rempel-privat.de>
[-- Attachment #1: Type: text/plain, Size: 2082 bytes --]
Hello all,
what is about this change set? Should i resend it.
Am 04.02.2014 10:27, schrieb Oleksij Rempel:
> This patch set moves most common RX code from ath9k/recv.c to
> common.c without any additional changes and reworks ath9k_htc RX code
> to make use of new common functions.
> Since ath9k_htc part was more intrusive I made tests in STA and AP modes. No noticeable regressions was introduced.
> Last patch is important for debugging FW crashes.
>
> Oleksij Rempel (13):
> ath: add last_rssi to ath_common
> ath9k: move ath9k_process_rssi to common.c
> ath9k: move ath9k_process_rate to common.c
> ath9k: move ath9k_rx_accept to common.c
> ath9k_htc: add rx header converter to make it usable by ath9k
> ath9k_htc: use ath9k_cmn_process_rssi
> ath9k_htc: use ath9k_cmn_process_rate
> ath9k_htc: use ath9k_cmn_rx_accept
> ath9k_htc: sync rx_status-> related code with ath9k
> ath9k: move ath9k_rx_skb_postprocess to common.c
> ath9k_htc: use ath9k_cmn_rx_skb_postprocess
> ath9k_htc: remove useless memcpy
> ath9k_htc: catch fw panic pattern
>
> drivers/net/wireless/ath/ath.h | 2 +
> drivers/net/wireless/ath/ath9k/ath9k.h | 1 -
> drivers/net/wireless/ath/ath9k/common.c | 244 +++++++++++++++++++++++
> drivers/net/wireless/ath/ath9k/common.h | 19 ++
> drivers/net/wireless/ath/ath9k/htc.h | 1 -
> drivers/net/wireless/ath/ath9k/htc_drv_init.c | 1 +
> drivers/net/wireless/ath/ath9k/htc_drv_main.c | 1 +
> drivers/net/wireless/ath/ath9k/htc_drv_txrx.c | 176 ++++++-----------
> drivers/net/wireless/ath/ath9k/htc_hst.c | 36 ++++
> drivers/net/wireless/ath/ath9k/htc_hst.h | 12 ++
> drivers/net/wireless/ath/ath9k/init.c | 2 +-
> drivers/net/wireless/ath/ath9k/mac.h | 9 +-
> drivers/net/wireless/ath/ath9k/main.c | 2 +-
> drivers/net/wireless/ath/ath9k/recv.c | 266 ++------------------------
> 14 files changed, 386 insertions(+), 386 deletions(-)
>
--
Regards,
Oleksij
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 278 bytes --]
next prev parent reply other threads:[~2014-02-11 7:57 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-04 9:27 [ath9k-devel] [PATCH v2 00/13] eliminate some ath9k_htc code Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 01/13] ath: add last_rssi to ath_common Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 02/13] ath9k: move ath9k_process_rssi to common.c Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 03/13] ath9k: move ath9k_process_rate " Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 04/13] ath9k: move ath9k_rx_accept " Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 05/13] ath9k_htc: add rx header converter to make it usable by ath9k Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 06/13] ath9k_htc: use ath9k_cmn_process_rssi Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 07/13] ath9k_htc: use ath9k_cmn_process_rate Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 08/13] ath9k_htc: use ath9k_cmn_rx_accept Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 09/13] ath9k_htc: sync rx_status-> related code with ath9k Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 10/13] ath9k: move ath9k_rx_skb_postprocess to common.c Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 11/13] ath9k_htc: use ath9k_cmn_rx_skb_postprocess Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 12/13] ath9k_htc: remove useless memcpy Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-04 9:27 ` [ath9k-devel] [PATCH v2 13/13] ath9k_htc: catch fw panic pattern Oleksij Rempel
2014-02-04 9:27 ` Oleksij Rempel
2014-02-11 7:57 ` Oleksij Rempel [this message]
2014-02-11 7:57 ` [PATCH v2 00/13] eliminate some ath9k_htc code Oleksij Rempel
2014-02-12 15:15 ` [ath9k-devel] " Sujith Manoharan
2014-02-12 15:15 ` Sujith Manoharan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=52F9D7EB.1080309@rempel-privat.de \
--to=linux@rempel-privat.de \
--cc=ath9k-devel@lists.ath9k.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.