linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* pull-request: mac80211-next 2013-10-07
@ 2013-10-07  9:51 Johannes Berg
  2013-10-10 17:41 ` John W. Linville
  0 siblings, 1 reply; 2+ messages in thread
From: Johannes Berg @ 2013-10-07  9:51 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless

[-- Attachment #1: Type: text/plain, Size: 3818 bytes --]

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(-)


[-- 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-10-07
  2013-10-07  9:51 pull-request: mac80211-next 2013-10-07 Johannes Berg
@ 2013-10-10 17:41 ` John W. Linville
  0 siblings, 0 replies; 2+ messages in thread
From: John W. Linville @ 2013-10-10 17:41 UTC (permalink / raw)
  To: Johannes Berg; +Cc: linux-wireless

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
linville@tuxdriver.com			might be all we have.  Be ready.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-10-10 17:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-07  9:51 pull-request: mac80211-next 2013-10-07 Johannes Berg
2013-10-10 17:41 ` 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).