All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 00/17] add support for S1G association
@ 2020-09-22  2:28 Thomas Pedersen
  2020-09-22  2:28 ` [PATCH v4 01/17] {cfg,mac}80211: get correct default channel width for S1G Thomas Pedersen
                   ` (16 more replies)
  0 siblings, 17 replies; 36+ messages in thread
From: Thomas Pedersen @ 2020-09-22  2:28 UTC (permalink / raw)
  To: Johannes Berg; +Cc: linux-wireless, Thomas Pedersen

These are the remaining (v4) patches in the S1G association series.

Changes in v4:
 - stop fudging the channel width in cfg80211_chandef_create() (we don't
   actually need it).
 - use NLA_POLICY_EXACT_LEN() in nl80211 policy
 - protect against eg. DS param IE in S1G
 - remove bss->s1g tracking
 - clean up ugly check for S1G BSS
 - fix ieee80211_encode_usf() return type (thanks kbot)

Thomas Pedersen (17):
  {cfg,mac}80211: get correct default channel width for S1G
  mac80211: s1g: choose scanning width based on frequency
  nl80211: support S1G capabilities
  mac80211: support S1G STA capabilities
  cfg80211: convert S1G beacon to scan results
  cfg80211: parse S1G Operation element for BSS channel
  mac80211: convert S1G beacon to scan results
  cfg80211: handle Association Response from S1G STA
  mac80211: encode listen interval for S1G
  mac80211: don't calculate duration for S1G
  mac80211: handle S1G low rates
  mac80211: avoid rate init for S1G band
  mac80211: receive and process S1G beacons
  mac80211: support S1G association
  nl80211: include frequency offset in survey info
  mac80211_hwsim: fix TSF timestamp write to S1G beacon
  mac80211_hwsim: indicate support for S1G

 drivers/net/wireless/mac80211_hwsim.c |  98 +++++++++++--
 include/linux/ieee80211.h             |  67 +++++++++
 include/net/cfg80211.h                |   3 +
 include/net/mac80211.h                |   4 +
 include/uapi/linux/nl80211.h          |  11 ++
 net/mac80211/cfg.c                    |   2 +
 net/mac80211/chan.c                   |   9 +-
 net/mac80211/ibss.c                   |   3 +-
 net/mac80211/ieee80211_i.h            |  16 +++
 net/mac80211/iface.c                  |   5 +
 net/mac80211/mlme.c                   | 180 ++++++++++++++++++-----
 net/mac80211/rate.c                   |  39 ++++-
 net/mac80211/rx.c                     |  87 +++++-------
 net/mac80211/scan.c                   |  34 ++++-
 net/mac80211/tx.c                     |   4 +
 net/mac80211/util.c                   | 196 ++++++++++++++++++++++++++
 net/wireless/mlme.c                   |  14 +-
 net/wireless/nl80211.c                |  22 +++
 net/wireless/scan.c                   |  85 +++++++++--
 19 files changed, 756 insertions(+), 123 deletions(-)

-- 
2.20.1


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

end of thread, other threads:[~2020-12-09  2:49 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-22  2:28 [PATCH v4 00/17] add support for S1G association Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 01/17] {cfg,mac}80211: get correct default channel width for S1G Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 02/17] mac80211: s1g: choose scanning width based on frequency Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 03/17] nl80211: support S1G capabilities Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 04/17] mac80211: support S1G STA capabilities Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 05/17] cfg80211: convert S1G beacon to scan results Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 06/17] cfg80211: parse S1G Operation element for BSS channel Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 07/17] mac80211: convert S1G beacon to scan results Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 08/17] cfg80211: handle Association Response from S1G STA Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 09/17] mac80211: encode listen interval for S1G Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 10/17] mac80211: don't calculate duration " Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 11/17] mac80211: handle S1G low rates Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 12/17] mac80211: avoid rate init for S1G band Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 13/17] mac80211: receive and process S1G beacons Thomas Pedersen
2020-12-08  7:44   ` Wen Gong
2020-12-08  7:44     ` Wen Gong
2020-12-08  7:44     ` Wen Gong
2020-12-08 18:19     ` Thomas Pedersen
2020-12-08 18:19       ` Thomas Pedersen
2020-12-08 18:19       ` Thomas Pedersen
2020-12-09  2:48       ` Wen Gong
2020-12-09  2:48         ` Wen Gong
2020-12-09  2:48         ` Wen Gong
2020-09-22  2:28 ` [PATCH v4 14/17] mac80211: support S1G association Thomas Pedersen
2020-09-28 12:17   ` Johannes Berg
2020-09-29 17:07     ` Thomas Pedersen
2020-11-23  8:38   ` Wen Gong
2020-11-23  8:39     ` Wen Gong
2020-11-23  8:39       ` Wen Gong
2020-11-23  8:39       ` Wen Gong
2020-11-23 18:40     ` Thomas Pedersen
2020-11-24  3:59       ` Wen Gong
2020-11-24  7:04         ` Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 15/17] nl80211: include frequency offset in survey info Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 16/17] mac80211_hwsim: fix TSF timestamp write to S1G beacon Thomas Pedersen
2020-09-22  2:28 ` [PATCH v4 17/17] mac80211_hwsim: indicate support for S1G Thomas Pedersen

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.