2013-10-07 09:52:05

by Johannes Berg

[permalink] [raw]
Subject: pull-request: mac80211-next 2013-10-07

John,

First pull request for new features - sorry it's so late.

We have an assortment of cleanups and new features, of which the biggest
one is probably the channel-switch support in IBSS. Nothing else really
stands out much.

Let me know if there's any problem.

johannes


The following changes since commit 272b98c6455f00884f0350f775c5342358ebb73f:

Linux 3.12-rc1 (2013-09-16 16:17:51 -0400)

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 7578d57520f51093f590d68e16965e2714e69747:

mac80211: implement STA CSA for drivers using channel contexts (2013-10-02 18:18:23 +0200)

----------------------------------------------------------------
Arik Nemtsov (1):
mac80211: implement STA CSA for drivers using channel contexts

Eliad Peller (2):
mac80211: fix some snprintf misuses
ieee80211: fix vht cap definitions

Fred Zhou (2):
mac80211: use exact-size allocation for authentication frame
mac80211: improve default WMM parameter setting

Janusz Dziedzic (1):
cfg80211: parse dfs region for internal regdb option

Johannes Berg (4):
mac80211: add ieee80211_iterate_active_interfaces_rtnl()
mac80211: use ERR_CAST()
mac80211: add explicit IBSS driver operations
regulatory: enable channels 52-64 and 100-144 for world roaming

Lorenzo Bianconi (2):
mac80211: add fixed_rate management to minstrel rc
mac80211: do not override fixed_rate_idx in minstrel_ht_update_stats

Michal Kazior (1):
mac80211: support reporting A-MSDU subframes individually

Sergey Ryazanov (1):
mac80211: Remove superfluous is_multicast_ether_addr() call

Simon Wunderlich (7):
cfg80211: export cfg80211_chandef_dfs_required
mac80211: split off channel switch parsing function
mac80211: split off ibss disconnect
mac80211: add support for CSA in IBSS mode
mac80211: send a CSA action frame when changing channel
nl80211: enable IBSS support for channel switch announcements
nl80211: allow CAC only if no operation is going on

Stanislaw Gruszka (1):
mac80211: change beacon/connection polling

cedric Voncken (1):
cfg80211: vlan priority handling in WMM

include/linux/ieee80211.h | 4 +-
include/net/cfg80211.h | 9 +
include/net/mac80211.h | 42 +++
net/mac80211/cfg.c | 92 ++++--
net/mac80211/chan.c | 5 -
net/mac80211/debugfs.c | 55 ++--
net/mac80211/driver-ops.h | 27 ++
net/mac80211/ibss.c | 608 +++++++++++++++++++++++++++++++------
net/mac80211/ieee80211_i.h | 30 +-
net/mac80211/iface.c | 4 +
net/mac80211/key.c | 2 +-
net/mac80211/mlme.c | 334 +++++---------------
net/mac80211/rc80211_minstrel.c | 14 +
net/mac80211/rc80211_minstrel_ht.c | 23 +-
net/mac80211/rc80211_pid_debugfs.c | 26 +-
net/mac80211/rx.c | 39 ++-
net/mac80211/scan.c | 3 +-
net/mac80211/spectmgmt.c | 162 ++++++++++
net/mac80211/trace.h | 35 +++
net/mac80211/tx.c | 39 ++-
net/mac80211/util.c | 162 ++++++----
net/mac80211/vht.c | 4 +-
net/wireless/chan.c | 1 +
net/wireless/core.h | 9 -
net/wireless/debugfs.c | 24 +-
net/wireless/genregdb.awk | 6 +
net/wireless/nl80211.c | 52 +++-
net/wireless/reg.c | 14 +-
net/wireless/util.c | 9 +
29 files changed, 1290 insertions(+), 544 deletions(-)


Attachments:
signature.asc (801.00 B)
This is a digitally signed message part

2013-10-10 17:45:10

by John W. Linville

[permalink] [raw]
Subject: Re: pull-request: mac80211-next 2013-10-07

On Mon, Oct 07, 2013 at 11:51:53AM +0200, Johannes Berg wrote:
> John,
>
> First pull request for new features - sorry it's so late.
>
> We have an assortment of cleanups and new features, of which the biggest
> one is probably the channel-switch support in IBSS. Nothing else really
> stands out much.
>
> Let me know if there's any problem.
>
> johannes
>
>
> The following changes since commit 272b98c6455f00884f0350f775c5342358ebb73f:
>
> Linux 3.12-rc1 (2013-09-16 16:17:51 -0400)
>
> 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 7578d57520f51093f590d68e16965e2714e69747:
>
> mac80211: implement STA CSA for drivers using channel contexts (2013-10-02 18:18:23 +0200)
>
> ----------------------------------------------------------------
> Arik Nemtsov (1):
> mac80211: implement STA CSA for drivers using channel contexts
>
> Eliad Peller (2):
> mac80211: fix some snprintf misuses
> ieee80211: fix vht cap definitions
>
> Fred Zhou (2):
> mac80211: use exact-size allocation for authentication frame
> mac80211: improve default WMM parameter setting
>
> Janusz Dziedzic (1):
> cfg80211: parse dfs region for internal regdb option
>
> Johannes Berg (4):
> mac80211: add ieee80211_iterate_active_interfaces_rtnl()
> mac80211: use ERR_CAST()
> mac80211: add explicit IBSS driver operations
> regulatory: enable channels 52-64 and 100-144 for world roaming
>
> Lorenzo Bianconi (2):
> mac80211: add fixed_rate management to minstrel rc
> mac80211: do not override fixed_rate_idx in minstrel_ht_update_stats
>
> Michal Kazior (1):
> mac80211: support reporting A-MSDU subframes individually
>
> Sergey Ryazanov (1):
> mac80211: Remove superfluous is_multicast_ether_addr() call
>
> Simon Wunderlich (7):
> cfg80211: export cfg80211_chandef_dfs_required
> mac80211: split off channel switch parsing function
> mac80211: split off ibss disconnect
> mac80211: add support for CSA in IBSS mode
> mac80211: send a CSA action frame when changing channel
> nl80211: enable IBSS support for channel switch announcements
> nl80211: allow CAC only if no operation is going on
>
> Stanislaw Gruszka (1):
> mac80211: change beacon/connection polling
>
> cedric Voncken (1):
> cfg80211: vlan priority handling in WMM

Pulling now...

--
John W. Linville Someday the world will need a hero, and you
[email protected] might be all we have. Be ready.