From: John Crispin <john@phrozen.org>
To: Johannes Berg <johannes@sipsolutions.net>
Cc: linux-wireless@vger.kernel.org, ath10k@lists.infradead.org,
John Crispin <john@phrozen.org>
Subject: [PATCH V9 0/3] mac80211: add 802.11 encapsulation offloading
Date: Tue, 29 Oct 2019 10:13:01 +0100 [thread overview]
Message-ID: <20191029091304.7330-1-john@phrozen.org> (raw)
This series picks up prior work from QCA. The patch is currently shipped
inside QSDK as part of the wlan-open package.
Changes in V9
* implement comments from Johannes
* add tx status reporting
* let the driver decide if tx frag will break encap mode
* use true/false for bool values
* move use_4addr check to driver
Changes in V8
* fix double locking when setting frag threshold
Changes in V7
* dont mask out monitor support when encap is available. Instead turn encap
of if a monitor device is brought up or already present
Changes in V6
* the conditional masking out monitor support was inverse
Changes in V5
* implement comments from Johannes
Changes in V4
* disable encap when TKIP is used instead of refusing TKIP
* use a flag inside tx_info instead of an extra element
* move 4addr detection into ieee80211_set_hw_80211_encap()
* ieee80211_tx_dequeue() was dropping out to early
Changes in V3
* rebase on latest kernel
* various code style clean ups
* give some of the variables and functions more obvious names
* move the code that disables support for non-linear frames to the core
* disable monitor and tkip support
John Crispin (3):
mac80211: move store skb ack code to its own function
mac80211: add hw 80211 encapsulation offloading support
ath10k: add tx hw 802.11 encapusaltion offloading support
drivers/net/wireless/ath/ath10k/core.c | 11 ++
drivers/net/wireless/ath/ath10k/core.h | 3 +
drivers/net/wireless/ath/ath10k/htt_tx.c | 24 ++-
drivers/net/wireless/ath/ath10k/mac.c | 76 ++++++--
drivers/net/wireless/ath/ath10k/txrx.c | 11 +-
include/net/mac80211.h | 39 ++++
net/mac80211/debugfs.c | 1 +
net/mac80211/ieee80211_i.h | 9 +
net/mac80211/iface.c | 68 +++++++
net/mac80211/key.c | 7 +
net/mac80211/status.c | 74 +++++++
net/mac80211/tx.c | 233 ++++++++++++++++++++---
12 files changed, 506 insertions(+), 50 deletions(-)
--
2.20.1
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
WARNING: multiple messages have this Message-ID (diff)
From: John Crispin <john@phrozen.org>
To: Johannes Berg <johannes@sipsolutions.net>
Cc: linux-wireless@vger.kernel.org, ath10k@lists.infradead.org,
John Crispin <john@phrozen.org>
Subject: [PATCH V9 0/3] mac80211: add 802.11 encapsulation offloading
Date: Tue, 29 Oct 2019 10:13:01 +0100 [thread overview]
Message-ID: <20191029091304.7330-1-john@phrozen.org> (raw)
This series picks up prior work from QCA. The patch is currently shipped
inside QSDK as part of the wlan-open package.
Changes in V9
* implement comments from Johannes
* add tx status reporting
* let the driver decide if tx frag will break encap mode
* use true/false for bool values
* move use_4addr check to driver
Changes in V8
* fix double locking when setting frag threshold
Changes in V7
* dont mask out monitor support when encap is available. Instead turn encap
of if a monitor device is brought up or already present
Changes in V6
* the conditional masking out monitor support was inverse
Changes in V5
* implement comments from Johannes
Changes in V4
* disable encap when TKIP is used instead of refusing TKIP
* use a flag inside tx_info instead of an extra element
* move 4addr detection into ieee80211_set_hw_80211_encap()
* ieee80211_tx_dequeue() was dropping out to early
Changes in V3
* rebase on latest kernel
* various code style clean ups
* give some of the variables and functions more obvious names
* move the code that disables support for non-linear frames to the core
* disable monitor and tkip support
John Crispin (3):
mac80211: move store skb ack code to its own function
mac80211: add hw 80211 encapsulation offloading support
ath10k: add tx hw 802.11 encapusaltion offloading support
drivers/net/wireless/ath/ath10k/core.c | 11 ++
drivers/net/wireless/ath/ath10k/core.h | 3 +
drivers/net/wireless/ath/ath10k/htt_tx.c | 24 ++-
drivers/net/wireless/ath/ath10k/mac.c | 76 ++++++--
drivers/net/wireless/ath/ath10k/txrx.c | 11 +-
include/net/mac80211.h | 39 ++++
net/mac80211/debugfs.c | 1 +
net/mac80211/ieee80211_i.h | 9 +
net/mac80211/iface.c | 68 +++++++
net/mac80211/key.c | 7 +
net/mac80211/status.c | 74 +++++++
net/mac80211/tx.c | 233 ++++++++++++++++++++---
12 files changed, 506 insertions(+), 50 deletions(-)
--
2.20.1
next reply other threads:[~2019-10-29 9:13 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-29 9:13 John Crispin [this message]
2019-10-29 9:13 ` [PATCH V9 0/3] mac80211: add 802.11 encapsulation offloading John Crispin
2019-10-29 9:13 ` [PATCH V9 1/3] mac80211: move store skb ack code to its own function John Crispin
2019-10-29 9:13 ` John Crispin
2019-10-29 9:13 ` [PATCH V9 2/3] mac80211: add hw 80211 encapsulation offloading support John Crispin
2019-10-29 9:13 ` John Crispin
2019-10-30 22:53 ` kbuild test robot
2019-10-30 22:53 ` kbuild test robot
2019-10-30 22:53 ` kbuild test robot
2019-11-08 10:52 ` Johannes Berg
2019-11-08 10:52 ` Johannes Berg
2019-10-29 9:13 ` [PATCH V9 3/3] ath10k: add tx hw 802.11 encapusaltion " John Crispin
2019-10-29 9:13 ` John Crispin
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=20191029091304.7330-1-john@phrozen.org \
--to=john@phrozen.org \
--cc=ath10k@lists.infradead.org \
--cc=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.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.