Linux wireless drivers development
 help / color / mirror / Atom feed
* [PATCH 00/19] [RESEND] wifi: mac80211: updates - 30-12-24
@ 2025-01-01  5:05 Miri Korenblit
  2025-01-01  5:05 ` [PATCH 01/19] wifi: mac80211: add some support for RX OMI power saving Miri Korenblit
                   ` (18 more replies)
  0 siblings, 19 replies; 24+ messages in thread
From: Miri Korenblit @ 2025-01-01  5:05 UTC (permalink / raw)
  To: johannes; +Cc: linux-wireless

Hi,

Resending this series with a different order.

Thanks,
Miri
---

Benjamin Berg (11):
  wifi: mac80211: Remove unused basic_rates variable
  wifi: mac80211: fix typo in HE MCS check
  wifi: mac80211: log link information in ieee80211_determine_chan_mode
  wifi: mac80211: add HT and VHT basic set verification
  wifi: mac80211: skip all known membership selectors
  wifi: mac80211: parse BSS selectors and unknown rates
  wifi: nl80211: permit userspace to pass supported selectors
  wifi: mac80211: verify BSS membership selectors and basic rates
  wifi: mac80211: also verify requirements in EXT_SUPP_RATES
  wifi: mac80211: tests: add utility to create sdata skeleton
  wifi: mac80211: tests: add tests for ieee80211_determine_chan_mode

Emmanuel Grumbach (2):
  wifi: mac80211: remove an unneeded check in Rx
  wifi: mac80211: improve stop/wake queue tracing

Johannes Berg (5):
  wifi: mac80211: add some support for RX OMI power saving
  wifi: mac80211: reject per-band vendor elements with MLO
  wifi: mac80211: mlme: improve messages from config_bw()
  wifi: cfg80211: scan: skip duplicate RNR entries
  wifi: cfg80211: check extended MLD capa/ops in assoc

Miri Korenblit (1):
  wifi: mac80211: clarify key idx documententaion

 include/linux/ieee80211.h      |  48 ++++-
 include/net/cfg80211.h         |  12 ++
 include/net/mac80211.h         |  48 ++++-
 include/uapi/linux/nl80211.h   |   9 +
 net/mac80211/chan.c            |   7 +
 net/mac80211/debug.h           |  10 +-
 net/mac80211/he.c              | 119 ++++++++++-
 net/mac80211/ieee80211_i.h     |  11 +
 net/mac80211/main.c            |   5 +
 net/mac80211/mesh_plink.c      |   5 +-
 net/mac80211/mlme.c            | 379 +++++++++++++++++++++++++--------
 net/mac80211/rx.c              |   3 +-
 net/mac80211/sta_info.c        |  18 ++
 net/mac80211/sta_info.h        |   7 +
 net/mac80211/tests/Makefile    |   2 +-
 net/mac80211/tests/chan-mode.c | 245 +++++++++++++++++++++
 net/mac80211/tests/util.c      | 309 +++++++++++++++++++++++++++
 net/mac80211/tests/util.h      |  36 ++++
 net/mac80211/trace.h           | 120 ++++++++++-
 net/mac80211/util.c            |  10 +-
 net/mac80211/vht.c             |  33 ++-
 net/wireless/mlme.c            |   7 +
 net/wireless/nl80211.c         |  32 +++
 net/wireless/scan.c            |  13 +-
 24 files changed, 1375 insertions(+), 113 deletions(-)
 create mode 100644 net/mac80211/tests/chan-mode.c
 create mode 100644 net/mac80211/tests/util.c
 create mode 100644 net/mac80211/tests/util.h

-- 
2.34.1


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

end of thread, other threads:[~2025-01-13  9:51 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-01  5:05 [PATCH 00/19] [RESEND] wifi: mac80211: updates - 30-12-24 Miri Korenblit
2025-01-01  5:05 ` [PATCH 01/19] wifi: mac80211: add some support for RX OMI power saving Miri Korenblit
2025-01-01  5:05 ` [PATCH 02/19] wifi: mac80211: remove an unneeded check in Rx Miri Korenblit
2025-01-01  5:05 ` [PATCH 03/19] wifi: mac80211: clarify key idx documententaion Miri Korenblit
2025-01-01  5:05 ` [PATCH 04/19] wifi: mac80211: reject per-band vendor elements with MLO Miri Korenblit
2025-01-01  5:05 ` [PATCH 05/19] wifi: mac80211: mlme: improve messages from config_bw() Miri Korenblit
2025-01-01  5:05 ` [PATCH 06/19] wifi: cfg80211: scan: skip duplicate RNR entries Miri Korenblit
2025-01-01  5:05 ` [PATCH 07/19] wifi: cfg80211: check extended MLD capa/ops in assoc Miri Korenblit
2025-01-01  5:05 ` [PATCH 08/19] wifi: mac80211: improve stop/wake queue tracing Miri Korenblit
2025-01-01  5:05 ` [PATCH 09/19] wifi: mac80211: Remove unused basic_rates variable Miri Korenblit
2025-01-01  5:05 ` [PATCH 10/19] wifi: mac80211: fix typo in HE MCS check Miri Korenblit
2025-01-01  5:05 ` [PATCH 11/19] wifi: mac80211: log link information in ieee80211_determine_chan_mode Miri Korenblit
2025-01-01  5:05 ` [PATCH 12/19] wifi: mac80211: add HT and VHT basic set verification Miri Korenblit
2025-01-13  9:51   ` Johannes Berg
2025-01-01  5:05 ` [PATCH 13/19] wifi: mac80211: skip all known membership selectors Miri Korenblit
2025-01-01  5:05 ` [PATCH 14/19] wifi: mac80211: parse BSS selectors and unknown rates Miri Korenblit
2025-01-01  5:05 ` [PATCH 15/19] wifi: nl80211: permit userspace to pass supported selectors Miri Korenblit
2025-01-01  5:05 ` [PATCH 16/19] wifi: mac80211: verify BSS membership selectors and basic rates Miri Korenblit
2025-01-01  5:05 ` [PATCH 17/19] wifi: mac80211: also verify requirements in EXT_SUPP_RATES Miri Korenblit
2025-01-08  7:55   ` kernel test robot
2025-01-08  9:17     ` Benjamin Berg
2025-01-09  2:28       ` Oliver Sang
2025-01-01  5:05 ` [PATCH 18/19] wifi: mac80211: tests: add utility to create sdata skeleton Miri Korenblit
2025-01-01  5:05 ` [PATCH 19/19] wifi: mac80211: tests: add tests for ieee80211_determine_chan_mode Miri Korenblit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox