All of lore.kernel.org
 help / color / mirror / Atom feed
* pull-request: mac80211-next 2013-02-04
@ 2013-02-04 18:11 Johannes Berg
  2013-02-07 10:12 ` Johannes Berg
  2013-02-08 19:25 ` John W. Linville
  0 siblings, 2 replies; 3+ messages in thread
From: Johannes Berg @ 2013-02-04 18:11 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless

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

John,

I've accumulated a bunch of patches again, so here's a new pull request
for mac80211-next.

The biggest change I have is undoubtedly Marco's mesh powersave
implementation. Beyond that, I have a patch from Emmanuel to modify the
DTIM period API in mac80211, scan improvements and a removal of some
previous workaround code from Stanislaw, dynamic short slot time from
Thomas and 64-bit station byte counters from Vladimir. I also made a
number of changes myself, some related to WoWLAN, some auth/deauth
improvements and most of them BSS list cleanups.

Let me know if there are any problems.

Thanks,
johannes

The following changes since commit 9ebea3829fac7505e0cd2642fbd13cfa9c038831:

  Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless (2013-01-28 13:54:03 -0500)

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 3f52b7e328c526fa7a592af9bf5772c591ed38a4:

  mac80211: mesh power save basics (2013-02-04 18:57:47 +0100)

----------------------------------------------------------------
Emmanuel Grumbach (1):
      mac80211: inform the driver about update of dtim_period

Johannes Berg (22):
      Merge remote-tracking branch 'wireless-next/master' into HEAD
      cfg80211: add SME state to warning in __cfg80211_mlme_disassoc
      cfg80211/mac80211: support reporting wakeup reason
      mac80211: remove assoc data "sent_assoc"
      mac80211: remove last_probe_resp from bss
      mac80211: remove unused mesh data from bss
      cfg80211: remove free_priv BSS API
      mac80211: start auth/assoc timeout on frame status
      mac80211: send deauth when connection is lost
      mac80211: always allow calling ieee80211_connection_loss()
      cfg80211: refactor hidden SSID finding
      cfg80211: fix BSS list hidden SSID lookup
      cfg80211: simplify mesh BSS comparison
      cfg80211: remove unused cfg80211_get_mesh
      mac80211: remove unused SSID from BSS
      cfg80211: fix BSS IE allocation comment
      cfg80211: move locking into cfg80211_bss_age
      mac80211: allow transmitting deauth with tainted key
      mac80211: send deauth if connection was lost during suspend
      cfg80211: use lockdep to assert lock is held
      cfg80211: remove a local variable
      cfg80211: wrap BSS kref

Marco Porsch (1):
      mac80211: mesh power save basics

Stanislaw Gruszka (2):
      mac80211: remove IEEE80211_HW_TEARDOWN_AGGR_ON_BAR_FAIL
      mac80211: improve latency and throughput while software scanning

Thomas Pedersen (1):
      mac80211: dynamic short slot time for MBSSs

Vladimir Kondratiev (1):
      cfg80211: expand per-station byte counters to 64bit

 drivers/net/wireless/ath/carl9170/main.c           |   2 +-
 .../net/wireless/brcm80211/brcmsmac/mac80211_if.c  |   5 +-
 drivers/net/wireless/iwlegacy/4965-mac.c           |   2 +-
 drivers/net/wireless/iwlwifi/dvm/mac80211.c        |   3 +-
 drivers/net/wireless/ti/wlcore/main.c              |   3 +-
 include/linux/ieee80211.h                          |  13 +-
 include/net/cfg80211.h                             | 102 +++-
 include/net/mac80211.h                             |  71 ++-
 include/uapi/linux/nl80211.h                       |  86 ++-
 net/mac80211/Kconfig                               |  11 +
 net/mac80211/Makefile                              |   3 +-
 net/mac80211/agg-rx.c                              |  14 +-
 net/mac80211/agg-tx.c                              |  61 ++-
 net/mac80211/cfg.c                                 |  27 +-
 net/mac80211/debug.h                               |  10 +
 net/mac80211/debugfs.c                             |   4 +-
 net/mac80211/debugfs_netdev.c                      |   5 +
 net/mac80211/debugfs_sta.c                         |   5 +-
 net/mac80211/driver-ops.h                          |  36 +-
 net/mac80211/ibss.c                                |   4 +-
 net/mac80211/ieee80211_i.h                         |  61 +--
 net/mac80211/iface.c                               |   3 -
 net/mac80211/key.c                                 |   5 +-
 net/mac80211/main.c                                |  64 ++-
 net/mac80211/mesh.c                                |  36 +-
 net/mac80211/mesh.h                                |  17 +
 net/mac80211/mesh_hwmp.c                           |   7 +
 net/mac80211/mesh_pathtbl.c                        |   1 +
 net/mac80211/mesh_plink.c                          | 226 ++++++--
 net/mac80211/mesh_ps.c                             | 585 +++++++++++++++++++++
 net/mac80211/mlme.c                                | 231 +++++---
 net/mac80211/pm.c                                  |  10 +
 net/mac80211/rx.c                                  |   7 +
 net/mac80211/scan.c                                |  47 +-
 net/mac80211/sta_info.c                            |  25 +-
 net/mac80211/sta_info.h                            |  11 +
 net/mac80211/status.c                              |  25 +-
 net/mac80211/trace.h                               |  53 +-
 net/mac80211/tx.c                                  |  42 +-
 net/mac80211/util.c                                |  20 +-
 net/mac80211/wme.c                                 |  13 +-
 net/wireless/core.c                                |   5 +
 net/wireless/mlme.c                                |   2 +-
 net/wireless/nl80211.c                             | 229 +++++++-
 net/wireless/rdev-ops.h                            |  12 +
 net/wireless/scan.c                                | 355 +++++--------
 net/wireless/sysfs.c                               |   2 -
 net/wireless/trace.h                               |  53 ++
 net/wireless/util.c                                |   3 +-
 49 files changed, 2001 insertions(+), 616 deletions(-)
 create mode 100644 net/mac80211/mesh_ps.c


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 801 bytes --]

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

* Re: pull-request: mac80211-next 2013-02-04
  2013-02-04 18:11 pull-request: mac80211-next 2013-02-04 Johannes Berg
@ 2013-02-07 10:12 ` Johannes Berg
  2013-02-08 19:25 ` John W. Linville
  1 sibling, 0 replies; 3+ messages in thread
From: Johannes Berg @ 2013-02-07 10:12 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless

On Mon, 2013-02-04 at 19:11 +0100, Johannes Berg wrote:
> John,
> 
> I've accumulated a bunch of patches again, so here's a new pull request
> for mac80211-next.
> 
> The biggest change I have is undoubtedly Marco's mesh powersave
> implementation. Beyond that, I have a patch from Emmanuel to modify the
> DTIM period API in mac80211, scan improvements and a removal of some
> previous workaround code from Stanislaw, dynamic short slot time from
> Thomas and 64-bit station byte counters from Vladimir. I also made a
> number of changes myself, some related to WoWLAN, some auth/deauth
> improvements and most of them BSS list cleanups.
> 
> Let me know if there are any problems.

John, when you pull this, can you change IEEE80211_HW_NEED_DTIM_PERIOD
to IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC in our new mvm driver
(drivers/net/wireless/iwlwifi/mvm/mac80211.c) please? This overlapped
between the two trees and I didn't notice it before and didn't pull in
wireless-next before the patch.

Alternatively, I can rebase if you wish, let me know.

johannes


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

* Re: pull-request: mac80211-next 2013-02-04
  2013-02-04 18:11 pull-request: mac80211-next 2013-02-04 Johannes Berg
  2013-02-07 10:12 ` Johannes Berg
@ 2013-02-08 19:25 ` John W. Linville
  1 sibling, 0 replies; 3+ messages in thread
From: John W. Linville @ 2013-02-08 19:25 UTC (permalink / raw)
  To: Johannes Berg; +Cc: linux-wireless

On Mon, Feb 04, 2013 at 07:11:05PM +0100, Johannes Berg wrote:
> John,
> 
> I've accumulated a bunch of patches again, so here's a new pull request
> for mac80211-next.
> 
> The biggest change I have is undoubtedly Marco's mesh powersave
> implementation. Beyond that, I have a patch from Emmanuel to modify the
> DTIM period API in mac80211, scan improvements and a removal of some
> previous workaround code from Stanislaw, dynamic short slot time from
> Thomas and 64-bit station byte counters from Vladimir. I also made a
> number of changes myself, some related to WoWLAN, some auth/deauth
> improvements and most of them BSS list cleanups.
> 
> Let me know if there are any problems.
> 
> Thanks,
> johannes
> 
> The following changes since commit 9ebea3829fac7505e0cd2642fbd13cfa9c038831:
> 
>   Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless (2013-01-28 13:54:03 -0500)
> 
> 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 3f52b7e328c526fa7a592af9bf5772c591ed38a4:
> 
>   mac80211: mesh power save basics (2013-02-04 18:57:47 +0100)

Pulling now (and I'll take care of the mvm change for
IEEE80211_HW_NEED_DTIM_BEFORE_ASSOC)...

John
-- 
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] 3+ messages in thread

end of thread, other threads:[~2013-02-08 19:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-04 18:11 pull-request: mac80211-next 2013-02-04 Johannes Berg
2013-02-07 10:12 ` Johannes Berg
2013-02-08 19:25 ` John W. Linville

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.