netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* pull-request: mac80211-next next-2020-02-24
@ 2020-02-24 18:34 Johannes Berg
  2020-02-24 19:33 ` Marcel Holtmann
  2020-02-24 23:42 ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: Johannes Berg @ 2020-02-24 18:34 UTC (permalink / raw)
  To: netdev; +Cc: linux-wireless

Hi,

Some new updates - initial beacon protection support and TID
configuration are the interesting parts, but need drivers to
fill in, so that'll come from Kalle later :)

Please pull and let me know if there's any problem.

Thanks,
johannes



The following changes since commit 92df9f8a745ee9b8cc250514272345cb2e74e7ef:

  Merge branch 'mvneta-xdp-ethtool-stats' (2020-02-16 20:04:42 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git tags/mac80211-next-for-net-next-2020-02-24

for you to fetch changes up to 370f51d5edac83bfdb9a078d7098f06403dfa4bc:

  mac80211: Add api to support configuring TID specific configuration (2020-02-24 14:07:01 +0100)

----------------------------------------------------------------
A new set of changes:
 * lots of small documentation fixes, from Jérôme Pouiller
 * beacon protection (BIGTK) support from Jouni Malinen
 * some initial code for TID configuration, from Tamizh chelvam
 * I reverted some new API before it's actually used, because
   it's wrong to mix controlled port and preauth
 * a few other cleanups/fixes

----------------------------------------------------------------
Amol Grover (1):
      cfg80211: Pass lockdep expression to RCU lists

Emmanuel Grumbach (1):
      cfg80211: remove support for adjacent channel compensation

Johannes Berg (4):
      mac80211: check vif pointer before airtime calculation
      Revert "mac80211: support NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211_MAC_ADDRS"
      Revert "nl80211: add src and dst addr attributes for control port tx/rx"
      nl80211: modify TID-config API

Jouni Malinen (7):
      cfg80211: More error messages for key addition failures
      cfg80211: Support key configuration for Beacon protection (BIGTK)
      mac80211: Support BIGTK configuration for Beacon protection
      mac80211: Update BIP to support Beacon frames
      mac80211: Beacon protection using the new BIGTK (AP)
      mac80211: Beacon protection using the new BIGTK (STA)
      mac80211_hwsim: enable Beacon protection

Jérôme Pouiller (9):
      cfg80211: drop duplicated documentation of field "probe_resp_offload"
      cfg80211: drop duplicated documentation of field "privid"
      cfg80211: drop duplicated documentation of field "registered"
      cfg80211: drop duplicated documentation of field "_net"
      cfg80211: drop duplicated documentation of field "perm_addr"
      cfg80211: drop duplicated documentation of field "reg_notifier"
      cfg80211: merge documentations of field "debugfsdir"
      cfg80211: merge documentations of field "dev"
      cfg80211: fix indentation errors

Tamizh chelvam (5):
      nl80211: Add NL command to support TID speicific configurations
      nl80211: Add support to configure TID specific retry configuration
      nl80211: Add support to configure TID specific AMPDU configuration
      nl80211: Add support to configure TID specific RTSCTS configuration
      mac80211: Add api to support configuring TID specific configuration

 drivers/net/wireless/mac80211_hwsim.c |   1 +
 include/net/cfg80211.h                | 122 +++++++++-----
 include/net/mac80211.h                |  10 ++
 include/uapi/linux/nl80211.h          | 114 +++++++++++--
 net/mac80211/aes_cmac.c               |  21 ++-
 net/mac80211/aes_gmac.c               |  24 ++-
 net/mac80211/cfg.c                    |  71 +++++++-
 net/mac80211/debugfs_key.c            |  31 ++++
 net/mac80211/debugfs_key.h            |  10 ++
 net/mac80211/driver-ops.h             |  27 +++
 net/mac80211/ieee80211_i.h            |   9 +-
 net/mac80211/key.c                    |  40 ++++-
 net/mac80211/key.h                    |   3 +
 net/mac80211/main.c                   |   2 -
 net/mac80211/rx.c                     |  79 +++++++--
 net/mac80211/scan.c                   |   3 +-
 net/mac80211/sta_info.h               |   4 +-
 net/mac80211/tx.c                     |  35 +++-
 net/wireless/nl80211.c                | 298 ++++++++++++++++++++++++++++++----
 net/wireless/rdev-ops.h               |  45 ++++-
 net/wireless/scan.c                   |  11 +-
 net/wireless/sme.c                    |  11 +-
 net/wireless/trace.h                  |  81 +++++++--
 net/wireless/util.c                   |   7 +-
 24 files changed, 909 insertions(+), 150 deletions(-)


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

* Re: pull-request: mac80211-next next-2020-02-24
  2020-02-24 18:34 pull-request: mac80211-next next-2020-02-24 Johannes Berg
@ 2020-02-24 19:33 ` Marcel Holtmann
  2020-02-24 19:34   ` Johannes Berg
  2020-02-24 23:42 ` David Miller
  1 sibling, 1 reply; 4+ messages in thread
From: Marcel Holtmann @ 2020-02-24 19:33 UTC (permalink / raw)
  To: Johannes Berg; +Cc: netdev, linux-wireless

Hi Johannes,

> Some new updates - initial beacon protection support and TID
> configuration are the interesting parts, but need drivers to
> fill in, so that'll come from Kalle later :)
> 
> Please pull and let me know if there's any problem.
> 
> Thanks,
> johannes
> 
> 
> 
> The following changes since commit 92df9f8a745ee9b8cc250514272345cb2e74e7ef:
> 
>  Merge branch 'mvneta-xdp-ethtool-stats' (2020-02-16 20:04:42 -0800)
> 
> are available in the Git repository at:
> 
>  git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git tags/mac80211-next-for-net-next-2020-02-24
> 
> for you to fetch changes up to 370f51d5edac83bfdb9a078d7098f06403dfa4bc:
> 
>  mac80211: Add api to support configuring TID specific configuration (2020-02-24 14:07:01 +0100)
> 
> ----------------------------------------------------------------
> A new set of changes:
> * lots of small documentation fixes, from Jérôme Pouiller
> * beacon protection (BIGTK) support from Jouni Malinen
> * some initial code for TID configuration, from Tamizh chelvam
> * I reverted some new API before it's actually used, because
>   it's wrong to mix controlled port and preauth
> * a few other cleanups/fixes
> 
> ----------------------------------------------------------------
> Amol Grover (1):
>      cfg80211: Pass lockdep expression to RCU lists
> 
> Emmanuel Grumbach (1):
>      cfg80211: remove support for adjacent channel compensation
> 
> Johannes Berg (4):
>      mac80211: check vif pointer before airtime calculation
>      Revert "mac80211: support NL80211_EXT_FEATURE_CONTROL_PORT_OVER_NL80211_MAC_ADDRS"
>      Revert "nl80211: add src and dst addr attributes for control port tx/rx"

so I am bit concerned if these reverts are pushed so quickly without allowing ample time to discuss or review them on the mailing list. I for one, don’t agree with the assessment made to justify these reverts.

Regards

Marcel


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

* Re: pull-request: mac80211-next next-2020-02-24
  2020-02-24 19:33 ` Marcel Holtmann
@ 2020-02-24 19:34   ` Johannes Berg
  0 siblings, 0 replies; 4+ messages in thread
From: Johannes Berg @ 2020-02-24 19:34 UTC (permalink / raw)
  To: Marcel Holtmann; +Cc: netdev, linux-wireless

On Mon, 2020-02-24 at 20:33 +0100, Marcel Holtmann wrote:
> 
> so I am bit concerned if these reverts are pushed so quickly without
> allowing ample time to discuss or review them on the mailing list. I
> for one, don’t agree with the assessment made to justify these
> reverts.

No no, you have it the wrong way around.

The reverts are pushed out quickly so that we _have_ time to argue and
come to an agreement on this, because otherwise we're locked in to the
API if we don't act ...

johannes


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

* Re: pull-request: mac80211-next next-2020-02-24
  2020-02-24 18:34 pull-request: mac80211-next next-2020-02-24 Johannes Berg
  2020-02-24 19:33 ` Marcel Holtmann
@ 2020-02-24 23:42 ` David Miller
  1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2020-02-24 23:42 UTC (permalink / raw)
  To: johannes; +Cc: netdev, linux-wireless

From: Johannes Berg <johannes@sipsolutions.net>
Date: Mon, 24 Feb 2020 19:34:41 +0100

> Some new updates - initial beacon protection support and TID
> configuration are the interesting parts, but need drivers to
> fill in, so that'll come from Kalle later :)
> 
> Please pull and let me know if there's any problem.

Pulled, thanks Johannes.

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

end of thread, other threads:[~2020-02-24 23:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-24 18:34 pull-request: mac80211-next next-2020-02-24 Johannes Berg
2020-02-24 19:33 ` Marcel Holtmann
2020-02-24 19:34   ` Johannes Berg
2020-02-24 23:42 ` David Miller

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