From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Johannes Berg <johannes.berg@intel.com>,
Emmanuel Grumbach <emmanuel.grumbach@intel.com>,
Miri Korenblit <miriam.rachel.korenblit@intel.com>,
Sasha Levin <sashal@kernel.org>,
linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: don't WARN on WoWLAN suspend w/o netdetect
Date: Mon, 31 Aug 2026 09:26:33 -0400 [thread overview]
Message-ID: <20260831133314.4125787-365-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>
From: Johannes Berg <johannes.berg@intel.com>
[ Upstream commit 301b0dfa9db3f1e204de95e803bbd88fbd878c7c ]
Clearly, from a user perspective, it must be valid to configure
WoWLAN and then suspend while not connected to a network. Since
mac80211 doesn't distinguish these cases and simply calls the
driver to suspend whenever WoWLAN is configured, the driver has
to cleanly handle the case where it's called for WoWLAN, it's
not connected but there's also no netdetect configured.
Remove the WARN_ON() and keep returning 1 to disconnect and
then suspend.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Reviewed-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Link: https://patch.msgid.link/20260527230313.19720967372b.Iff30814510a26f9f609f98eeea3111c50c1afb31@changeid
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `wifi: iwlwifi: mld: don't WARN on WoWLAN
suspend w/o netdetect`
**Local tree:** Linux **6.18.44** (`git describe HEAD` → `v6.18.44`)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[wifi: iwlwifi: mld]` `[don't WARN]` — Remove spurious
`WARN_ON()` when suspending with WoWLAN configured but not associated
and without netdetect.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Johannes Berg, Miri Korenblit (author SOBs; ignore
pipeline SOBs per instructions)
- **Reviewed-by:** Emmanuel Grumbach \<emmanuel.grumbach@intel.com\>
(iwlwifi maintainer)
- **Link:** https://patch.msgid.link/20260527230313.19720967372b.Iff3081
4510a26f9f609f98eeea3111c50c1afb31@changeid
- No Fixes:, Reported-by:, Tested-by:, Cc: stable, or syzbot tags
### Step 1.3: Body analysis
**Record:**
- **Bug:** `WARN_ON(!wowlan->nd_config)` fires when WoWLAN is
configured, the STA is not associated, and netdetect is not enabled.
- **Symptom:** Kernel warning + stack trace on a valid suspend path;
behavior was already to `return 1`.
- **Root cause:** Incorrect assumption that “not associated ⇒ must be
netdetect”; mac80211 calls the WoWLAN suspend path whenever WoWLAN is
configured, without distinguishing netdetect vs. other WoWLAN
triggers.
- **Fix approach:** Remove `WARN_ON()`, keep `return 1` so mac80211
disconnects and falls back to normal suspend.
### Step 1.4: Hidden bug fix?
**Record:** Yes — labeled as warning cleanup, but it corrects a wrong
invariant on the system suspend path. Functional handling was already
correct (`return 1`); the bug is the spurious `WARN_ON()` on a
legitimate user scenario.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `drivers/net/wireless/intel/iwlwifi/mld/d3.c` (+5 / -2
lines)
- **Function:** `iwl_mld_wowlan_suspend()`
- **Scope:** Single-file, surgical change
### Step 2.2: Code flow change
**Record:**
- **Hunk (not associated branch):**
- **Before:** `WARN_ON(!wowlan->nd_config)` then `return 1` — logs
warning on valid path.
- **After:** `if (!wowlan->nd_config) return 1` — same control flow,
no warning.
- **Path:** WoWLAN suspend when STA is not associated and netdetect is
disabled.
### Step 2.3: Bug mechanism
**Record:** **Category:** Logic / correctness — incorrect assertion on
valid error/fallback path. **Mechanism:** Driver treated “no netdetect
while disconnected” as impossible; mac80211 can legitimately reach this
case. `return 1` is the intended mac80211 contract (disconnect then
suspend normally).
### Step 2.4: Fix quality
**Record:** Obviously correct; matches existing `iwl_mvm` behavior (see
below). Minimal diff. **Regression risk:** Very low — only removes a
warning; return value unchanged.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** `WARN_ON(!wowlan->nd_config)` introduced in
**d1e879ec600f9** (`wifi: iwlwifi: add iwlmld sub-driver`, 2025-03-05).
Present since iwl_mld was added; iwl_mld is in v6.18.
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag.
### Step 3.3: Related file history
**Record:** Recent `d3.c` changes are WoWLAN API updates and null-check
fixes; no duplicate fix for this issue. Patch is **12/15** in an
iwlwifi-next series but this hunk is **standalone** (no series
dependency for this change).
### Step 3.4: Author context
**Record:** Johannes Berg is mac80211/iwlwifi lead. Reviewed by Emmanuel
Grumbach (maintainer).
### Step 3.5: Prerequisites
**Record:** None. `git format-patch -1 dc71bf31e0159 | git apply
--check` succeeds on current HEAD.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:** `b4 dig -c dc71bf31e0159` found thread: [PATCH iwlwifi-next
12/15] at lore URL above. Part of v1 15-patch series (2026-05-27, Miri
Korenblit). **UNVERIFIED:** Full thread content (stable nominations,
NAKs) — WebFetch blocked by bot protection.
### Step 4.2: Reviewers
**Record:** `b4 dig -w`: CC'd linux-wireless, Johannes Berg, Emmanuel
Grumbach.
### Step 4.3: Bug report
**Record:** N/A — no external bug report or syzbot link.
### Step 4.4: Series context
**Record:** Patch 12/15 of iwlwifi-next series; this change is
independent.
### Step 4.5: Stable list
**Record:** **UNVERIFIED** — could not search stable@ lore due to fetch
limitations.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `iwl_mld_wowlan_suspend()`, called from `iwl_mld_suspend()`.
### Step 5.2: Callers
**Record:**
- `iwl_mld_suspend()` → `iwl_mld_wowlan_suspend()` (`mac80211.c:1996`)
- `iwl_mld_suspend()` registered as mac80211 `.suspend` op
- mac80211 `__ieee80211_suspend()` → `drv_suspend()` (`pm.c:116`)
- Triggered on system suspend when WoWLAN is configured
### Step 5.3: Callees
**Record:** On the affected path: early `return 1` (no netdetect
config). Otherwise `iwl_mld_netdetect_config()` or
`iwl_mld_wowlan_config()`.
### Step 5.4: Reachability
**Record:** **Userspace-reachable** via system suspend with WoWLAN
enabled, STA disconnected, netdetect not configured. Common laptop
scenario (WoWLAN enabled, not connected).
### Step 5.5: Similar patterns
**Record:** `iwl_mvm` already handles this without `WARN_ON`:
```1289:1294:drivers/net/wireless/intel/iwlwifi/mvm/d3.c
if (mvm_link->ap_sta_id == IWL_INVALID_STA) {
/* if we're not associated, this must be netdetect */
if (!wowlan->nd_config) {
ret = 1;
goto out_noreset;
}
```
MLD incorrectly added `WARN_ON()` where MVM silently returns 1.
When driver returns 1, mac80211 handles it explicitly:
```132:141:net/mac80211/pm.c
} else if (err > 0) {
WARN_ON(err != 1);
/* cfg80211 will call back into mac80211 to
disconnect
- all interfaces, allow that to proceed properly
*/
ieee80211_wake_queues_by_reason(hw,
IEEE80211_MAX_QUEUE_MAP,
IEEE80211_QUEUE_STOP_REASON_SUSPEND,
false);
return err;
```
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
### Step 6.1: Buggy code present?
**Record:** **Yes** — current HEAD still has:
```1944:1948:drivers/net/wireless/intel/iwlwifi/mld/d3.c
if (!bss_vif->cfg.assoc) {
int ret;
/* If we're not associated, this must be netdetect */
if (WARN_ON(!wowlan->nd_config))
return 1;
```
`d1e879ec600f9` is an ancestor of HEAD; iwl_mld has been in tree since
v6.18.
### Step 6.2: Backport complications
**Record:** **Clean apply** — verified with `git apply --check`. No
rework needed.
### Step 6.3: Related fixes already present?
**Record:** **No** — `git merge-base --is-ancestor dc71bf31e0159 HEAD` →
fix **NOT** in HEAD.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** **IMPORTANT** — Intel iwlwifi MLD driver (`CONFIG_IWLMLD`),
WoWLAN/system suspend on laptops.
### Step 7.2: Activity
**Record:** Actively developed; multiple recent mld fixes in this tree
(race fixes, null checks, WoWLAN updates).
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of Intel WiFi chips using iwl_mld (new MLD-capable
devices) on 6.18.y with WoWLAN configured.
### Step 8.2: Trigger conditions
**Record:** System suspend while disconnected, WoWLAN enabled, netdetect
not configured. **Common** on laptops. Any user can trigger via suspend.
### Step 8.3: Failure mode severity
**Record:** **MEDIUM** — spurious `WARN_ON()` (kernel warning + stack
trace, taints debugging). Suspend still proceeds via `return 1`. Could
panic only with `panic_on_warn=1`. Not data corruption or security.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** Eliminates false warnings on a real suspend path; aligns
MLD with MVM; cleaner logs for production/monitoring.
- **Risk:** Very low — 3-line behavioral-equivalent change.
- **Ratio:** Moderate benefit, very low risk. Precedent in this tree for
iwlwifi/mac80211 “don’t WARN” stable fixes.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real bug: spurious `WARN_ON()` on valid WoWLAN suspend path
- Bug present in 6.18.44 since iwl_mld introduction
- Fix is minimal, reviewed by maintainer, matches proven MVM pattern
- Applies cleanly
- Affects laptop suspend — important PM path
- Similar “don’t WARN” iwlwifi/mac80211 fixes exist in tree history
**AGAINST backport:**
- Functional suspend already works (`return 1` unchanged)
- Severity is warning-only under default config
- Does not meet “critical” bar (crash/corruption/security/deadlock)
- No user bug report or syzbot
**UNRESOLVED:**
- Lore thread review comments / stable nomination (fetch blocked)
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — matches MVM; Reviewed-by
maintainer
2. Fixes real bug affecting users? **PASS** — spurious warning on real
suspend scenario
3. Important issue? **PASS (low-medium)** — not crash/corruption, but
incorrect behavior on PM path for new driver in this tree
4. Small and contained? **PASS** — 7 lines, one function
5. No new features/APIs? **PASS**
6. Can apply to local tree? **PASS** — clean apply verified
### Step 9.3: Exception categories
**Record:** None (not device ID, quirk, DT, build, or docs).
### Step 9.4: Decision rationale
For **Linux 6.18.44**, iwl_mld is part of this stable series and the
buggy `WARN_ON()` has been present since the driver landed. The fix
removes a developer assertion that fires on a legitimate user workflow
(WoWLAN configured, disconnected suspend without netdetect). The iwl_mvm
driver already handles this case correctly without warning. The change
is trivial, safe, and applies cleanly. While severity is moderate rather
than critical, this is an appropriate stable fix for a new driver’s
suspend path in a tree that already carries similar iwlwifi/mac80211
warning fixes.
---
## Verification
- **[Phase 1]** Parsed commit message and tags from user query and `git
show dc71bf31e0159`
- **[Phase 2]** Read current `d3.c:1929-1958`; confirmed diff scope
(nd_config WARN_ON only)
- **[Phase 3]** `git blame -L 1944,1955`: buggy code from d1e879ec600f9
(2025-03-05)
- **[Phase 3]** `git log -S 'WARN_ON(!wowlan->nd_config)'`: only
d1e879ec600f9 introduced it
- **[Phase 3]** `git merge-base --is-ancestor d1e879ec600f9 HEAD`: MLD
driver in this tree
- **[Phase 3]** `git merge-base --is-ancestor d1e879ec600f9 v6.18`: MLD
in v6.18 release
- **[Phase 3]** `git merge-base --is-ancestor dc71bf31e0159 HEAD`: fix
NOT in HEAD
- **[Phase 3]** `git format-patch -1 dc71bf31e0159 | git apply --check`:
applies cleanly
- **[Phase 4]** `b4 dig -c dc71bf31e0159`: found lore thread URL
- **[Phase 4]** `b4 dig -a`: patch 12/15 of iwlwifi-next v1 series
- **[Phase 4]** `b4 dig -w`: CC'd linux-wireless, Berg, Grumbach
- **[Phase 4]** WebFetch lore URL: **FAILED** (bot protection) — review
discussion UNVERIFIED
- **[Phase 5]** Traced call chain: `__ieee80211_suspend` →
`iwl_mld_suspend` → `iwl_mld_wowlan_suspend`
- **[Phase 5]** Compared with `mvm/d3.c:1289-1294`: MVM returns 1
without WARN
- **[Phase 5]** Read `pm.c:132-141`: return 1 triggers disconnect-then-
suspend flow
- **[Phase 6]** `git describe HEAD` / `make kernelversion`: 6.18.44
- **[Phase 6]** Confirmed buggy code at `d3.c:1947`
- **[Phase 7]** `Kconfig`: `CONFIG_IWLMLD` exists
- **[Phase 8]** Assessed trigger: WoWLAN + disconnected suspend
- **UNVERIFIED:** Lore review comments and stable@ discussion
**YES**
drivers/net/wireless/intel/iwlwifi/mld/d3.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/net/wireless/intel/iwlwifi/mld/d3.c b/drivers/net/wireless/intel/iwlwifi/mld/d3.c
index dd85be94433cc..0cb7bfcd6420e 100644
--- a/drivers/net/wireless/intel/iwlwifi/mld/d3.c
+++ b/drivers/net/wireless/intel/iwlwifi/mld/d3.c
@@ -1943,8 +1943,11 @@ int iwl_mld_wowlan_suspend(struct iwl_mld *mld, struct cfg80211_wowlan *wowlan)
if (!bss_vif->cfg.assoc) {
int ret;
- /* If we're not associated, this must be netdetect */
- if (WARN_ON(!wowlan->nd_config))
+ /*
+ * If not associated we can only do netdetect, if
+ * that's not enabled then just suspend normally.
+ */
+ if (!wowlan->nd_config)
return 1;
ret = iwl_mld_netdetect_config(mld, bss_vif, wowlan);
--
2.53.0
next prev parent reply other threads:[~2026-08-31 13:44 UTC|newest]
Thread overview: 78+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-31 13:20 [PATCH AUTOSEL 6.18-5.10] wifi: cfg80211: validate IEs in cfg80211_wext_siwgenie() Sasha Levin
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: handle 320MHz bandwidth in RXV and TXS Sasha Levin
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18-6.12] wifi: iwlwifi: mvm: parse beacon notif per layout Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mvm: fix P2P-Device binding handling Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] wifi: nl80211: check link is beaconing for color change Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] wifi: nl80211: Increase ie_len size to prevent truncated IEs in new peer notifications Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] wifi: iwlwifi: pcie: null RX pointers after free Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] wifi: ath12k: Prevent incorrect vif chanctx switch when handling multi-radio contexts Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.15] wifi: iwlwifi: mvm: fix sched scan IE sizing Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: add support for AX231 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: pcie: add two LNL PCI IDs Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: fix an off-by-1 boundary check Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: adapt ND match notif sizing to fixed matches array Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.12] wifi: iwlwifi: mvm: validate mac_link_id in session protect notif Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.1] wifi: nl80211: reject beacons with bad HE operation Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.1] wifi: iwlwifi: acpi: validate WGDS table revision index Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.1] wifi: rtw89: pci: enable LTR based on pcie control register Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] wifi: mac80211: unify link STA removal in vif link removal Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.6] wifi: iwlwifi: mvm: validate sta_id in BA window status notif Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] wifi: mac80211: avoid out-of-bounds access in monitor Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: fw: validate SMEM response size Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: purge async notifications upon nic error Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] wifi: mac80211: use chandef in ieee80211_get_sta_bw() Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] wifi: iwlwifi: mvm: fix an off-by-1 boundary check Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.12] wifi: iwlwifi: mvm: validate TX_CMD response layout Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: honor BSS_CHANGED_BEACON_ENABLED Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] wifi: ralink: RT2X00: init EEPROM properly Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.1] wifi: rtw88: Add NULL check for chip->edcca_th in rtw_fw_adaptivity_result() Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.15] wifi: cfg80211: validate rx/tx MLME callback frame lengths before access Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] wifi: mt76: transform aspm_conf for pci_disable_link_state Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.6] wifi: iwlwifi: mvm: fix a possible underflow Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: add Netgear A8500 USB device ID Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] wifi: rsi: avoid reading TKIP MIC keys for non-TKIP ciphers Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] wifi: mac80211: validate deauth frame length before reason access Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] wifi: mwifiex: replace one-element arrays with flexible array members Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mvm: validate sta_id in TLC notif Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: add 320MHz bandwidth to bss_rlm_tlv Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: populate EHT 320MHz MCS map in sta_rec Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: disallow puncturing in US/CA for WH Sasha Levin
2026-08-31 13:26 ` Sasha Levin [this message]
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.12] wifi: cfg80211: reject duplicate wiphy cipher suite entries Sasha Levin
2026-09-03 8:09 ` Yuqi Xu
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: validate SEC_RT TLV minimum size Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] wifi: mac80211: always allow transmitting null-data on TXQs Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: validate reorder BAID Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] wifi: mac80211_hwsim: reject undersized HWSIM_ATTR_TX_INFO Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] wifi: rtw89: disable HTC field in AP mode Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] wifi: mac80211: explicitly disable FTM responder on AP stop Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] wifi: iwlwifi: mvm: add a check on the tid coming from the firmware Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] wifi: rtw89: suspend DIG when remain-on-channel Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: clear tzone on fail Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mvm: validate MCC header before n_channels Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: fix the access to CNVR TOP registers Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] wifi: mac80211: ibss: wait for in-flight TX on disconnect Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: pcie: fix ACPI DSM check Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] wifi: mac80211: clarify beacon parsing with MBSSID/EMA Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] wifi: cfg80211: harden cfg80211_defragment_element() Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: call iwl_mld_free_ap_early_key() for AP only Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.6] wifi: rtw89: phy: check length before parsing PHY status IE Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-5.10] wifi: rsi: validate beacon length before fixed buffer copy Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-5.10] wifi: iwlwifi: bound aligned TLV advance in FW parser Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] wifi: rtw89: disable CSI STBC for VHT 160MHz Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: Transition to basic uAPSD with MAC_PM_POWER_TABLE API VER_3 Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mvm: d3: validate D3 resume notification payloads Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] wifi: rtw89: mlo: rearrange MLSR link decision flow Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.1] wifi: cfg80211: validate assoc response length before status and IE access Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: validate txq_id in TX response handler Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] wifi: libertas: reject short monitor TX frames Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] wifi: mac80211: don't call ieee80211_handle_reconfig_failure when not needed Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] wifi: rtw89: 8851bu: add Mercusys MA60XNB (2c4e:0128) Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mvm: verify scan id reported by firmware Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] wifi: libipw: fix key index receive bound checks Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.1] wifi: ath11k: fix invalid data access in ath11k_dp_rx_h_undecap_nwifi Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.6] wifi: iwlwifi: mvm: fix out-of-bounds tid_data access in BA notif Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] wifi: mt76: route TDLS-peer frames as 3-addr non-DS in HW encap Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: don't parse a notif before checking its length Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: keep healthy link on EMLSR missed beacon exit Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] wifi: ath9k: Obtain system GPIOS from descriptors Sasha Levin
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=20260831133314.4125787-365-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=emmanuel.grumbach@intel.com \
--cc=johannes.berg@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=miriam.rachel.korenblit@intel.com \
--cc=patches@lists.linux.dev \
--cc=stable@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