linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* pull-request: mac80211-next 2014-05-21
@ 2014-05-21 15:30 Johannes Berg
  2014-05-22 17:59 ` John W. Linville
  0 siblings, 1 reply; 2+ messages in thread
From: Johannes Berg @ 2014-05-21 15:30 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless

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

John,

Since the merge window is getting nearer, and I have a whole bunch of
stuff accumulated, here's a new -next merge request :-)

We have a whole bunch of work on CSA by Andrei, Luca and Michal, but
unfortunately it doesn't seem quite complete yet so it's still disabled.
There's some TDLS work from Arik, and the rest is mostly minor fixes and
cleanups.

Let me know if there are any problems.

Thanks,
johannes


The following changes since commit f55ee0834247c88cb6981cb11eb1870392878371:

  mac80211_hwsim: Advertise support for AP mode channel width changes (2014-04-28 18:11:59 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git HEAD

for you to fetch changes up to 4d3df547e836f9a75b8de2b788449823c8db1d6a:

  cfg80211: don't set reg timeout for user-handled hint (2014-05-21 09:15:18 +0200)

----------------------------------------------------------------
Andrei Otcheretianski (6):
      cfg80211: Add API to update CSA counters in mgmt frames
      mac80211: Update CSA counters in mgmt frames
      cfg80211: Support multiple CSA counters
      mac80211: Support multiple CSA counters
      mac80211: Provide ieee80211_beacon_get_template API
      mac80211: Handle the CSA counters correctly

Antonio Quartulli (3):
      cfg80211: export expected throughput through get_station()
      mac80211: export the expected throughput
      cfg80211: implement cfg80211_get_station cfg80211 API

Arik Nemtsov (3):
      mac80211: set an external flag for TDLS stations
      mac80211: move TDLS code to another file
      cfg80211: don't set reg timeout for user-handled hint

Felix Fietkau (1):
      cfg80211: allow restricting supported dfs regions

Janusz Dziedzic (1):
      cfg80211: fix start_radar_detection issue

Johannes Berg (8):
      cfg80211: remove BUG_ON usage
      mac80211: remove BUG_ON usage
      mac80211: mark local variable __maybe_unused
      mac80211: handle failed restart/resume better
      mac80211: minstrel-ht: small clarifications
      cfg80211: constify MAC addresses in cfg80211 ops
      cfg80211: constify more pointers in the cfg80211 API
      cfg80211: constify wowlan/coalesce mask/pattern pointers

Loic Poulain (1):
      rfkill-gpio: Use gpio cansleep version

Luciano Coelho (5):
      cfg80211: fix docbook warning
      mac80211: fix sparse warning caused by __ieee80211_channel_switch()
      cfg80211: pass the actual iftype when calling cfg80211_chandef_dfs_required()
      cfg80211: add documentation for max_num_csa_counters
      mac80211: fix csa_counter_offs argument name in docbook

Michal Kazior (5):
      mac80211: fix CSA tx queue stopping
      mac80211: split CSA finalize function
      cfg80211: export interface stopping function
      mac80211: ignore cqm during csa
      mac80211: disconnect iface if CSA unexpectedly fails

 drivers/net/wireless/ath/ath6kl/cfg80211.c         |   7 +-
 drivers/net/wireless/ath/ath6kl/wmi.c              |   2 +-
 drivers/net/wireless/ath/ath6kl/wmi.h              |   2 +-
 drivers/net/wireless/ath/wil6210/cfg80211.c        |   4 +-
 drivers/net/wireless/ath/wil6210/main.c            |   4 +-
 drivers/net/wireless/ath/wil6210/wil6210.h         |   2 +-
 .../net/wireless/brcm80211/brcmfmac/wl_cfg80211.c  |   6 +-
 drivers/net/wireless/libertas/cfg.c                |   7 +-
 drivers/net/wireless/libertas/defs.h               |   3 +-
 drivers/net/wireless/mwifiex/11n.h                 |   2 +-
 drivers/net/wireless/mwifiex/cfg80211.c            |  19 +-
 drivers/net/wireless/mwifiex/main.h                |  22 +-
 drivers/net/wireless/mwifiex/tdls.c                |  44 +-
 drivers/net/wireless/mwifiex/util.c                |   6 +-
 drivers/net/wireless/mwifiex/wmm.c                 |  10 +-
 drivers/net/wireless/mwifiex/wmm.h                 |   5 +-
 drivers/net/wireless/orinoco/hw.c                  |   4 +-
 drivers/net/wireless/orinoco/hw.h                  |   4 +-
 drivers/net/wireless/orinoco/wext.c                |   4 +-
 drivers/net/wireless/rndis_wlan.c                  |   4 +-
 drivers/net/wireless/ti/wlcore/main.c              |   2 +-
 drivers/net/wireless/ti/wlcore/wlcore_i.h          |   4 +-
 drivers/staging/wlan-ng/cfg80211.c                 |   4 +-
 include/net/cfg80211.h                             | 184 ++++---
 include/net/mac80211.h                             |  78 ++-
 include/uapi/linux/nl80211.h                       |  25 +-
 net/mac80211/Makefile                              |   3 +-
 net/mac80211/cfg.c                                 | 538 +++++++--------------
 net/mac80211/chan.c                                |   4 +-
 net/mac80211/driver-ops.h                          | 121 +++--
 net/mac80211/ibss.c                                |   2 +-
 net/mac80211/ieee80211_i.h                         |  17 +-
 net/mac80211/iface.c                               |   7 +
 net/mac80211/key.c                                 |   7 +-
 net/mac80211/main.c                                |   2 +
 net/mac80211/mesh.c                                |   2 +-
 net/mac80211/mesh_pathtbl.c                        |   6 +-
 net/mac80211/mesh_sync.c                           |   2 +-
 net/mac80211/mlme.c                                |  46 +-
 net/mac80211/rc80211_minstrel.c                    |  12 +
 net/mac80211/rc80211_minstrel_ht.c                 |  22 +-
 net/mac80211/scan.c                                |  15 +-
 net/mac80211/tdls.c                                | 325 +++++++++++++
 net/mac80211/trace.h                               |  32 ++
 net/mac80211/tx.c                                  | 189 ++++++--
 net/mac80211/util.c                                |  46 +-
 net/rfkill/rfkill-gpio.c                           |  19 +-
 net/wireless/ap.c                                  |   4 +-
 net/wireless/chan.c                                |   5 +-
 net/wireless/core.c                                |  67 ++-
 net/wireless/core.h                                |   7 +
 net/wireless/ibss.c                                |   2 +-
 net/wireless/mesh.c                                |   4 +-
 net/wireless/nl80211.c                             | 140 ++++--
 net/wireless/rdev-ops.h                            |   2 +-
 net/wireless/reg.c                                 |   3 +-
 net/wireless/sme.c                                 |   8 +-
 net/wireless/trace.h                               |  37 +-
 net/wireless/util.c                                |  38 +-
 59 files changed, 1469 insertions(+), 723 deletions(-)
 create mode 100644 net/mac80211/tdls.c


[-- 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 2014-05-21
  2014-05-21 15:30 pull-request: mac80211-next 2014-05-21 Johannes Berg
@ 2014-05-22 17:59 ` John W. Linville
  0 siblings, 0 replies; 2+ messages in thread
From: John W. Linville @ 2014-05-22 17:59 UTC (permalink / raw)
  To: Johannes Berg; +Cc: linux-wireless

On Wed, May 21, 2014 at 05:30:43PM +0200, Johannes Berg wrote:
> John,
> 
> Since the merge window is getting nearer, and I have a whole bunch of
> stuff accumulated, here's a new -next merge request :-)
> 
> We have a whole bunch of work on CSA by Andrei, Luca and Michal, but
> unfortunately it doesn't seem quite complete yet so it's still disabled.
> There's some TDLS work from Arik, and the rest is mostly minor fixes and
> cleanups.
> 
> Let me know if there are any problems.
> 
> Thanks,
> johannes
> 
> 
> The following changes since commit f55ee0834247c88cb6981cb11eb1870392878371:
> 
>   mac80211_hwsim: Advertise support for AP mode channel width changes (2014-04-28 18:11:59 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git HEAD
> 
> for you to fetch changes up to 4d3df547e836f9a75b8de2b788449823c8db1d6a:
> 
>   cfg80211: don't set reg timeout for user-handled hint (2014-05-21 09:15:18 +0200)

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-05-22 18:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-05-21 15:30 pull-request: mac80211-next 2014-05-21 Johannes Berg
2014-05-22 17:59 ` 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).