From: Miri Korenblit <miriam.rachel.korenblit@intel.com>
To: linux-wireless@vger.kernel.org
Subject: [PATCH iwlwifi-next 00/15] wifi: iwlwifi: updates - 2026-05-12 part2
Date: Tue, 12 May 2026 22:34:26 +0300 [thread overview]
Message-ID: <20260512193441.2352467-1-miriam.rachel.korenblit@intel.com> (raw)
Hi,
More patches from our internal tree.
Thanks,
Miri
---
Aaron Katzin (1):
wifi: iwlwifi: pcie: add debug print for resume flow if powered off
Avinash Bhatt (4):
wifi: iwlwifi: Transition to basic uAPSD with MAC_PM_POWER_TABLE API
VER_3
wifi: iwlwifi: mld: add chan-load hysteresis for MLO scan triggers
wifi: iwlwifi: mld: add duplicated beacon RSSI adjustment
wifi: iwlwifi: mld: Add KUnit tests for channel-load thresholds
Avraham Stern (2):
wifi: iwlwifi: mld: call iwl_mld_free_ap_early_key() for AP only
wifi: iwlwifi: mld: add support for nan schedule config command
version 2
Daniel Gabay (3):
wifi: iwlwifi: mld: fix NAN DW end notification handler
wifi: iwlwifi: mld: add NULL check for channel in DW end handler
wifi: iwlwifi: mld: validate aux sta before flush in stop_nan
Emmanuel Grumbach (1):
wifi: iwlwifi: implement the new RSC notification
Ilan Peer (1):
wifi: iwlwifi: mld: Add support for multiple NAN Management stations
Johannes Berg (3):
wifi: iwlwifi: tighten flags in debugfs command sending
wifi: iwlwifi: define new FSEQ TLV with MAC ID
wifi: iwlwifi: set state to NO_FW on reset
.../wireless/intel/iwlwifi/fw/api/datapath.h | 9 +-
.../wireless/intel/iwlwifi/fw/api/mac-cfg.h | 55 +++++-
.../net/wireless/intel/iwlwifi/fw/api/power.h | 48 ++++-
.../net/wireless/intel/iwlwifi/fw/debugfs.c | 15 +-
drivers/net/wireless/intel/iwlwifi/fw/file.h | 7 +-
drivers/net/wireless/intel/iwlwifi/mld/d3.c | 148 +++++++++++++--
drivers/net/wireless/intel/iwlwifi/mld/d3.h | 6 +-
.../net/wireless/intel/iwlwifi/mld/iface.c | 30 +--
.../net/wireless/intel/iwlwifi/mld/iface.h | 9 +-
drivers/net/wireless/intel/iwlwifi/mld/link.c | 129 ++++++++++++-
drivers/net/wireless/intel/iwlwifi/mld/link.h | 15 ++
.../net/wireless/intel/iwlwifi/mld/mac80211.c | 4 +-
drivers/net/wireless/intel/iwlwifi/mld/mld.c | 2 +-
drivers/net/wireless/intel/iwlwifi/mld/mlo.c | 29 ++-
drivers/net/wireless/intel/iwlwifi/mld/nan.c | 149 ++++++++++++---
drivers/net/wireless/intel/iwlwifi/mld/nan.h | 2 +
.../net/wireless/intel/iwlwifi/mld/notif.c | 12 +-
.../net/wireless/intel/iwlwifi/mld/power.c | 177 ++++++++++++++++--
drivers/net/wireless/intel/iwlwifi/mld/rx.c | 22 +++
drivers/net/wireless/intel/iwlwifi/mld/rx.h | 5 +-
drivers/net/wireless/intel/iwlwifi/mld/sta.c | 69 +++++--
drivers/net/wireless/intel/iwlwifi/mld/sta.h | 13 ++
.../net/wireless/intel/iwlwifi/mld/stats.c | 4 +
.../wireless/intel/iwlwifi/mld/tests/Makefile | 1 +
.../iwlwifi/mld/tests/chan_load_thresh.c | 139 ++++++++++++++
drivers/net/wireless/intel/iwlwifi/mld/tx.c | 5 +-
drivers/net/wireless/intel/iwlwifi/mvm/mvm.h | 4 +-
.../net/wireless/intel/iwlwifi/mvm/power.c | 14 +-
drivers/net/wireless/intel/iwlwifi/pcie/drv.c | 6 +-
.../intel/iwlwifi/pcie/gen1_2/trans.c | 3 +-
30 files changed, 993 insertions(+), 138 deletions(-)
create mode 100644 drivers/net/wireless/intel/iwlwifi/mld/tests/chan_load_thresh.c
--
2.34.1
next reply other threads:[~2026-05-12 19:34 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-12 19:34 Miri Korenblit [this message]
2026-05-12 19:34 ` [PATCH iwlwifi-next 01/15] wifi: iwlwifi: pcie: add debug print for resume flow if powered off Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 02/15] wifi: iwlwifi: tighten flags in debugfs command sending Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 03/15] wifi: iwlwifi: define new FSEQ TLV with MAC ID Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 04/15] wifi: iwlwifi: set state to NO_FW on reset Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 05/15] wifi: iwlwifi: mld: call iwl_mld_free_ap_early_key() for AP only Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 06/15] wifi: iwlwifi: Transition to basic uAPSD with MAC_PM_POWER_TABLE API VER_3 Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 07/15] wifi: iwlwifi: mld: fix NAN DW end notification handler Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 08/15] wifi: iwlwifi: mld: add NULL check for channel in DW end handler Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 09/15] wifi: iwlwifi: mld: validate aux sta before flush in stop_nan Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 10/15] wifi: iwlwifi: mld: add chan-load hysteresis for MLO scan triggers Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 11/15] wifi: iwlwifi: implement the new RSC notification Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 12/15] wifi: iwlwifi: mld: add duplicated beacon RSSI adjustment Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 13/15] wifi: iwlwifi: mld: add support for nan schedule config command version 2 Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 14/15] wifi: iwlwifi: mld: Add support for multiple NAN Management stations Miri Korenblit
2026-05-12 19:34 ` [PATCH iwlwifi-next 15/15] wifi: iwlwifi: mld: Add KUnit tests for channel-load thresholds 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=20260512193441.2352467-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