* pull-request: mac80211-next 2013-12-19
@ 2013-12-19 20:27 Johannes Berg
2014-01-03 20:25 ` John W. Linville
0 siblings, 1 reply; 2+ messages in thread
From: Johannes Berg @ 2013-12-19 20:27 UTC (permalink / raw)
To: John Linville; +Cc: linux-wireless
[-- Attachment #1: Type: text/plain, Size: 3802 bytes --]
John,
Yeah, I know what you're going to say ... but here are some (locking)
fixes for mac80211-next that people may want to use over the
holidays :-)
Felix adds some helper functions for P2P NoA software tracking, Joe
fixes alignment (but as this apparently never caused issues I didn't
send it to 3.13), Kyeyoon/Jouni add QoS-mapping support (a Hotspot 2.0
feature), Weilong fixed a bunch of checkpatch errors and I get to play
fire-fighter or so and clean up other people's locking issues. I also
added nl80211 vendor-specific events, as we'd discussed at the wireless
summit.
Let me know if there's any problem; however, with this, I'm going on
vacation until January 6th. I'll check in to see if there are any
important issues that need my attention, but I don't expect to send you
any more pull requests this year.
johannes
---
The following changes since commit 204e35a91c4b3327b7239d7687fbd4923edbbf08:
nl80211: add VHT support for set_bitrate_mask (2013-12-16 16:05:17 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git for-john
for you to fetch changes up to 32db6b54dfba38aa8fa4072b2a3fc6425139166a:
mac80211: Add support for QoS mapping (2013-12-19 16:30:58 +0100)
----------------------------------------------------------------
Felix Fietkau (1):
mac80211: add helper functions for tracking P2P NoA state
Joe Perches (1):
mac80211: align struct ps_data.tim to unsigned long
Johannes Berg (4):
mac80211: make ieee80211_recalc_radar_chanctx static
mac80211: remove unnecessary iflist_mtx locking
mac80211: fix iflist_mtx/mtx locking in radar detection
nl80211: support vendor-specific events
Kyeyoon Park (2):
cfg80211: Add support for QoS mapping
mac80211: Add support for QoS mapping
Weilong Chen (1):
mac80211: fix checkpatch errors
drivers/net/wireless/brcm80211/brcmfmac/fwsignal.c | 2 +-
drivers/net/wireless/mwifiex/main.c | 2 +-
include/net/cfg80211.h | 118 ++++++++++++++-
include/net/mac80211.h | 47 ++++++
include/uapi/linux/nl80211.h | 17 +++
net/mac80211/aes_cmac.c | 2 +-
net/mac80211/aes_cmac.h | 2 +-
net/mac80211/cfg.c | 54 ++++++-
net/mac80211/chan.c | 67 ++++-----
net/mac80211/ibss.c | 7 +
net/mac80211/ieee80211_i.h | 11 +-
net/mac80211/iface.c | 8 +-
net/mac80211/mlme.c | 25 +++-
net/mac80211/rc80211_minstrel.c | 8 +-
net/mac80211/rc80211_minstrel_ht.c | 2 +-
net/mac80211/tkip.c | 2 +-
net/mac80211/trace.h | 2 +-
net/mac80211/tx.c | 4 +-
net/mac80211/util.c | 150 ++++++++++++++++++-
net/mac80211/wme.c | 7 +-
net/wireless/ap.c | 1 +
net/wireless/ibss.c | 2 +
net/wireless/mesh.c | 1 +
net/wireless/nl80211.c | 160 ++++++++++++++++++---
net/wireless/rdev-ops.h | 15 ++
net/wireless/sme.c | 2 +
net/wireless/trace.h | 40 ++++++
net/wireless/util.c | 19 ++-
28 files changed, 687 insertions(+), 90 deletions(-)
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 801 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: pull-request: mac80211-next 2013-12-19
2013-12-19 20:27 pull-request: mac80211-next 2013-12-19 Johannes Berg
@ 2014-01-03 20:25 ` John W. Linville
0 siblings, 0 replies; 2+ messages in thread
From: John W. Linville @ 2014-01-03 20:25 UTC (permalink / raw)
To: Johannes Berg; +Cc: linux-wireless
On Thu, Dec 19, 2013 at 09:27:27PM +0100, Johannes Berg wrote:
> John,
>
> Yeah, I know what you're going to say ... but here are some (locking)
> fixes for mac80211-next that people may want to use over the
> holidays :-)
>
> Felix adds some helper functions for P2P NoA software tracking, Joe
> fixes alignment (but as this apparently never caused issues I didn't
> send it to 3.13), Kyeyoon/Jouni add QoS-mapping support (a Hotspot 2.0
> feature), Weilong fixed a bunch of checkpatch errors and I get to play
> fire-fighter or so and clean up other people's locking issues. I also
> added nl80211 vendor-specific events, as we'd discussed at the wireless
> summit.
>
> Let me know if there's any problem; however, with this, I'm going on
> vacation until January 6th. I'll check in to see if there are any
> important issues that need my attention, but I don't expect to send you
> any more pull requests this year.
>
> johannes
> ---
> The following changes since commit 204e35a91c4b3327b7239d7687fbd4923edbbf08:
>
> nl80211: add VHT support for set_bitrate_mask (2013-12-16 16:05:17 +0100)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git for-john
>
> for you to fetch changes up to 32db6b54dfba38aa8fa4072b2a3fc6425139166a:
>
> mac80211: Add support for QoS mapping (2013-12-19 16:30:58 +0100)
Pulling now...
--
John W. Linville Someday the world will need a hero, and you
linville@tuxdriver.com might be all we have. Be ready.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-01-03 20:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-19 20:27 pull-request: mac80211-next 2013-12-19 Johannes Berg
2014-01-03 20:25 ` John W. Linville
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).