Linux wireless drivers development
 help / color / mirror / Atom feed
From: Miri Korenblit <miriam.rachel.korenblit@intel.com>
To: linux-wireless@vger.kernel.org
Subject: [PATCH v2 wireless-next 00/15] wifi: mac80211: more NAN patches
Date: Wed, 29 Apr 2026 14:40:34 +0300	[thread overview]
Message-ID: <20260429114049.4167111-1-miriam.rachel.korenblit@intel.com> (raw)

Hi,
This series adds a few more NAN features to mac80211 and mainly hwsim
support.

Thanks,
Miri
---

Andrei Otcheretianski (1):
  wifi: mac80211: Fix a kernel panic in ieee80211_encrypt_tx_skb()

Avraham Stern (1):
  wifi: mac80211: accept protected frames for NAN device

Benjamin Berg (8):
  wifi: mac80211_hwsim: remove unused nan_vif struct member
  wifi: mac80211_hwsim: move NAN related variables into a struct
  wifi: mac80211_hwsim: split NAN handling into separate file
  wifi: mac80211_hwsim: rename and switch simulation time to boottime
  wifi: mac80211_hwsim: move timestamp writing later in the datapath
  wifi: mac80211_hwsim: register beacon timer by calculating TBTT
  wifi: mac80211_hwsim: refactor NAN timer handling
  wifi: mac80211_hwsim: switch to use TXQs

Ilan Peer (2):
  wifi: mac80211: allow userspace TX/RX over NAN Data interfaces
  wifi: mac80211: Allow setting MAC address on interface creation

Miri Korenblit (3):
  wifi: mac80211: track the id of the NAN cluster we joined
  wifi: mac80211: avoid out-of-bounds access in monitor
  wifi: mac80211: add NAN channel evacuation support

 MAINTAINERS                                   |   2 +-
 drivers/net/wireless/virtual/Makefile         |   2 +
 .../net/wireless/virtual/mac80211_hwsim_i.h   | 139 +++++
 ...mac80211_hwsim.c => mac80211_hwsim_main.c} | 508 +++++-------------
 .../net/wireless/virtual/mac80211_hwsim_nan.c | 233 ++++++++
 .../net/wireless/virtual/mac80211_hwsim_nan.h |  36 ++
 include/net/mac80211.h                        |  29 +
 net/mac80211/cfg.c                            |  19 +
 net/mac80211/chan.c                           |  28 +-
 net/mac80211/iface.c                          |   7 +-
 net/mac80211/main.c                           |   4 +
 net/mac80211/nan.c                            | 126 +++++
 net/mac80211/offchannel.c                     |   9 +-
 net/mac80211/rx.c                             |  26 +-
 net/mac80211/status.c                         |   9 +-
 net/mac80211/tx.c                             |  18 +-
 16 files changed, 786 insertions(+), 409 deletions(-)
 create mode 100644 drivers/net/wireless/virtual/mac80211_hwsim_i.h
 rename drivers/net/wireless/virtual/{mac80211_hwsim.c => mac80211_hwsim_main.c} (94%)
 create mode 100644 drivers/net/wireless/virtual/mac80211_hwsim_nan.c
 create mode 100644 drivers/net/wireless/virtual/mac80211_hwsim_nan.h

-- 
2.34.1
---
v2: fix MAINTAINERS file to include the newly added files

             reply	other threads:[~2026-04-29 11:41 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-29 11:40 Miri Korenblit [this message]
2026-04-29 11:40 ` [PATCH v2 wireless-next 01/15] wifi: mac80211: track the id of the NAN cluster we joined Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 02/15] wifi: mac80211: allow userspace TX/RX over NAN Data interfaces Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 03/15] wifi: mac80211: accept protected frames for NAN device Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 04/15] wifi: mac80211: Allow setting MAC address on interface creation Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 05/15] wifi: mac80211: Fix a kernel panic in ieee80211_encrypt_tx_skb() Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 06/15] wifi: mac80211: avoid out-of-bounds access in monitor Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 07/15] wifi: mac80211: add NAN channel evacuation support Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 08/15] wifi: mac80211_hwsim: remove unused nan_vif struct member Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 09/15] wifi: mac80211_hwsim: move NAN related variables into a struct Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 10/15] wifi: mac80211_hwsim: split NAN handling into separate file Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 11/15] wifi: mac80211_hwsim: rename and switch simulation time to boottime Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 12/15] wifi: mac80211_hwsim: move timestamp writing later in the datapath Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 13/15] wifi: mac80211_hwsim: register beacon timer by calculating TBTT Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 14/15] wifi: mac80211_hwsim: refactor NAN timer handling Miri Korenblit
2026-04-29 11:40 ` [PATCH v2 wireless-next 15/15] wifi: mac80211_hwsim: switch to use TXQs Miri Korenblit

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260429114049.4167111-1-miriam.rachel.korenblit@intel.com \
    --to=miriam.rachel.korenblit@intel.com \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox