From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Johannes Berg <johannes.berg@intel.com>, Jouni Malinen <j@w1.fi>,
Sasha Levin <sashal@kernel.org>,
johannes@sipsolutions.net, linux-wireless@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18-5.10] wifi: mac80211: always allow transmitting null-data on TXQs
Date: Mon, 31 Aug 2026 09:26:49 -0400 [thread overview]
Message-ID: <20260831133314.4125787-381-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>
From: Johannes Berg <johannes.berg@intel.com>
[ Upstream commit 51129a2ca0482b006d0e12a0aa025ff1e1cad2cb ]
Jouni reported that certain sequences of tests caused some
WDS tests to fail after applying the upcoming hwsim changes
for NAN. I bisected that down to converting hwsim to TXQs,
and after a long debug session found that the 4-addr NDP was
getting dropped, because it goes out via a (management) TXQ
and is a data frame.
It's unclear to me now why this only happens in some test
sequences (e.g. "sigma_dut_sae_h2e_ap_loop ap_wds_sta" and
"sigma_dut_eap_ttls_all_akm_suites ap_wds_sta_open"), maybe
that affects timing and the frame is otherwise delayed in
some way.
Correct the check to only drop frames that actually carry
data, not NDPs.
Reported-by: Jouni Malinen <j@w1.fi>
Link: https://patch.msgid.link/20260417141601.851ddf4adb59.I3d668c0e1bdca9cd98f2fc46f84a066e68cc7a62@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `wifi: mac80211: always allow transmitting
null-data on TXQs`
**Local tree:** Linux **6.18.43** (`stable/linux-6.18.y`, detached HEAD)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[wifi: mac80211]` `[allow]` — always allow transmitting
null-data frames on TXQs during dequeue.
### Step 1.2: Commit tags
**Record:**
- **Reported-by:** Jouni Malinen `<j@w1.fi>` (hostap/wpa_supplicant
maintainer — credible wireless reporter)
- **Link:** https://patch.msgid.link/20260417141601.851ddf4adb59.I3d668c
0e1bdca9cd98f2fc46f84a066e68cc7a62@changeid
- **Signed-off-by:** Johannes Berg `<johannes.berg@intel.com>` (mac80211
maintainer)
- No Fixes:, Cc: stable, Reviewed-by, Tested-by, or syzbot tags
- Notable: single reporter, but a highly credible one in the WiFi stack
### Step 1.3: Body analysis
**Record:**
- **Bug:** 4-address null data packets (NDPs/nullfunc) are silently
dropped in `ieee80211_tx_dequeue()` because they are IEEE 802.11 data-
type frames routed through a management TXQ while the target STA is
not yet `WLAN_STA_AUTHORIZED`.
- **Symptom:** WDS (Wireless Distribution System) test failures —
specifically WiFi Alliance sigma tests `sigma_dut_sae_h2e_ap_loop
ap_wds_sta` and `sigma_dut_eap_ttls_all_akm_suites ap_wds_sta_open`.
- **Root cause (author):** The unauthorized-station drop check uses
`ieee80211_is_data()`, which matches nullfunc frames; it should use
`ieee80211_is_data_present()`, which excludes null/QoS-null subtypes.
- **Timing:** Intermittent — only some test sequences trigger it; author
suspects timing affects whether the frame is still unauthorized when
dequeued.
### Step 1.4: Hidden bug fix detection
**Record:** Yes — despite “allow transmitting” wording, this is a logic
bug fix. The unauthorized-port drop was incorrectly classifying nullfunc
signaling frames as data frames carrying payload.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Change inventory
**Record:**
- **Files:** `net/mac80211/tx.c` — 1 insertion, 1 deletion (net 0 lines)
- **Function:** `ieee80211_tx_dequeue()`
- **Scope:** Single-file, single-line surgical fix
### Step 2.2: Code flow change
**Record:**
- **Before:** In `ieee80211_tx_dequeue()`, when `txq->sta` is set,
nullfunc frames matching `ieee80211_is_data()` are dropped if the STA
lacks `WLAN_STA_AUTHORIZED` (unless injected or EAPOL).
- **After:** Only frames with actual data payload
(`ieee80211_is_data_present()`) are subject to the unauthorized drop.
Nullfunc/NDP frames pass through.
- **Path affected:** Software TXQ dequeue path — normal TX path for
drivers using `ieee80211_tx_dequeue()`.
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Logic / correctness fix (incorrect frame classification)
- **Mechanism:** `ieee80211_is_data()` returns true for
`IEEE80211_STYPE_NULLFUNC` frames. `ieee80211_is_data_present()` masks
bit 0x40 to exclude null/QoS-null subtypes. The unauthorized-port
guard was meant to block user data to unauthorized STAs, not signaling
nullfunc frames used in 4-address WDS setup.
### Step 2.4: Fix quality
**Record:**
- **Obviously correct:** Yes — same file already uses
`ieee80211_is_data_present()` at lines 633, 640, 667, and 1312 for the
same data-vs-nullfunc distinction.
- **Minimal:** One-line change, no unrelated edits.
- **Regression risk:** Very low — only exempts nullfunc frames (no
payload) from an unauthorized-data drop; EAPOL exemption path
unchanged.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** In 6.18.43, lines 3891–3910 are present with
`ieee80211_is_data()`. Git blame in this tree points to `19eef1d98eeda`
(afs fix) due to a wholesale tree import; history is not granular here.
Verified the buggy pattern exists identically in `v6.18`, `v6.12`,
`v6.6`, `v6.1`, and `v5.10` tags.
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag in commit message.
### Step 3.3: Related file history
**Record:** Fix commit `51129a2ca0482` exists on `wireless-next`/`all-
next` but is **not** in `stable/linux-6.18.y`. Recent stable `tx.c`
changes since v6.18 are unrelated skb-free/injection fixes. Standalone
one-commit fix.
### Step 3.4: Author context
**Record:** Johannes Berg is the mac80211 subsystem maintainer. No
related series — v1 only (confirmed via b4 dig -a).
### Step 3.5: Dependencies
**Record:** None. `ieee80211_is_data_present()` is defined in
`include/linux/ieee80211.h` and has been present since at least v5.10 in
this tree. Fix applies cleanly to 6.18.43 at line 3898.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:** `b4 dig -c 51129a2ca0482` found the thread: https://patch.ms
gid.link/20260417141601.851ddf4adb59.I3d668c0e1bdca9cd98f2fc46f84a066e68
cc7a62@changeid. Single v1 patch, no replies in downloaded mbox. No
stable nomination, no NAKs, no reviewer comments in thread.
### Step 4.2: Reviewers
**Record:** `b4 dig -w` shows CC to `linux-wireless@vger.kernel.org`,
Johannes Berg, Jouni Malinen. No explicit Reviewed-by in thread.
### Step 4.3: Bug report
**Record:** Reported by Jouni Malinen during WDS sigma certification
test failures. Severity: connectivity failure in 4-address WDS setups,
timing-dependent. No syzbot/CVE.
### Step 4.4: Related patches
**Record:** Bug surfaced during hwsim TXQ conversion for NAN, but the
fix targets core mac80211 `ieee80211_tx_dequeue()` — not hwsim-specific.
No multi-patch series dependency.
### Step 4.5: Stable list history
**Record:** Lore search blocked by Anubis bot protection on direct
WebFetch. No stable-list discussion found via b4.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `ieee80211_tx_dequeue()` modified. Related:
`ieee80211_send_4addr_nullfunc()` (sends the affected frame type).
### Step 5.2: Callers
**Record:** `ieee80211_tx_dequeue()` called from:
- `net/mac80211/util.c` (wake TX queue handler)
- Multiple wireless drivers: iwlwifi, mt76, ath9k/ath10k, rtw88, rtw89,
etc.
- Hot path for all drivers using software TXQs.
### Step 5.3: Callees
**Record:** Dequeue path calls `test_sta_flag(tx.sta,
WLAN_STA_AUTHORIZED)`, `ieee80211_is_our_addr()`,
`ieee80211_free_txskb()` on drop.
### Step 5.4: Reachability
**Record:** Triggerable during normal WiFi operation when:
1. Driver uses `ieee80211_tx_dequeue()` (most modern mac80211 drivers)
2. Frame is a 4-address nullfunc (`ieee80211_send_4addr_nullfunc()` in
`mlme.c:6458`, `cfg.c:281`)
3. Target STA in TXQ is not yet `WLAN_STA_AUTHORIZED`
4. Frame is not injected and not EAPOL
Reachable from userspace-driven WDS/4-address configuration — no special
privileges beyond normal wireless admin.
### Step 5.5: Similar patterns
**Record:** Same file consistently uses `ieee80211_is_data_present()`
for “does this frame carry data?” decisions (lines 633, 640, 667, 1312).
The `ieee80211_tx_dequeue()` check is the outlier using
`ieee80211_is_data()`.
---
## PHASE 6: CROSS-REFERENCE WITH LOCAL TREE (6.18.43)
### Step 6.1: Buggy code present?
**Record:** **Yes.** At `net/mac80211/tx.c:3898`, the tree uses
`ieee80211_is_data(hdr->frame_control)`. Bug present since at least
v5.10; confirmed in v6.18.0 and v6.12.0.
### Step 6.2: Backport complications
**Record:** **Clean apply** — identical context at line 3898 in 6.18.43
matches mainline fix. No refactoring conflicts.
### Step 6.3: Related fixes already present?
**Record:** **No.** `git branch --contains 51129a2ca0482` shows fix only
on development branches (wireless-next, all-next), not
stable/linux-6.18.y.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem criticality
**Record:** `net/mac80211` — **CORE/IMPORTANT**. mac80211 is the shared
802.11 stack for virtually all Linux WiFi drivers.
### Step 7.2: Activity
**Record:** Actively maintained; recent stable backports to tx.c in
6.18.y (injection, skb-free fixes).
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of **4-address WDS mode** and AP+WDS-bridging setups.
Not universal, but affects a real production use case (enterprise
bridging, repeater setups, certification-tested configurations).
### Step 8.2: Trigger conditions
**Record:** Timing-dependent race between nullfunc TX and STA
authorization during WDS 4-address setup. Not every boot, but
reproducible in certification tests. Triggerable by normal wireless
admin configuring WDS.
### Step 8.3: Failure mode
**Record:** Silent frame drop → 4-address WDS setup fails → connectivity
broken. **Severity: MEDIUM-HIGH** (functional connectivity failure, not
crash/corruption/security, but complete feature breakage when
triggered).
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** Restores 4-address WDS nullfunc transmission; fixes
logically incorrect frame classification that has existed for years.
- **Risk:** Minimal — one-line change, maintainer-authored, aligns with
existing in-file conventions, only relaxes drop for zero-payload
nullfunc frames.
- **Ratio:** High benefit, very low risk.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Real logic bug — nullfunc frames incorrectly treated as data-carrying
- Causes WDS 4-address connectivity failures (reported by Jouni Malinen)
- One-line, obviously correct fix matching existing mac80211 conventions
- mac80211 maintainer-authored
- Bug present in 6.18.43; fix applies cleanly
- No dependencies; helper function already exists
- Affects common driver TXQ dequeue path
**AGAINST backport:**
- Not a crash, security, or data-corruption issue
- Timing-dependent; author notes uncertainty about production frequency
- Discovered in hwsim/NAN TXQ testing context
- No explicit stable nomination or reviewer thread discussion
- WDS is a narrower audience than general WiFi
**Unresolved:** Exact production frequency outside certification tests
(author explicitly uncertain).
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — logically correct,
consistent with in-file patterns; reported via WDS sigma tests.
2. Fixes a real bug affecting users? **PASS** — silent drop of 4addr
nullfunc breaks WDS setup.
3. Important issue? **PASS** — connectivity failure in WDS/4-address
mode (functional break, not cosmetic).
4. Small and contained? **PASS** — 1 line, 1 file.
5. No new features or APIs? **PASS** — pure logic correction.
6. Can apply to local tree? **PASS** — clean apply to 6.18.43.
### Step 9.3: Exception categories
**Record:** N/A — not a device ID, quirk, DT, build, or docs fix.
Standard bug fix.
### Step 9.4: Decision rationale
This is a long-standing classification error in
`ieee80211_tx_dequeue()`: the unauthorized-port drop guard was meant to
block user data to STAs that have not completed 802.1X authorization,
but it also blocked nullfunc signaling frames that carry no payload.
Those frames are essential for 4-address WDS negotiation
(`ieee80211_send_4addr_nullfunc()`). The fix changes one macro call to
match the same data-vs-nullfunc distinction used elsewhere in the same
file. The change is maintainer-authored, trivial, zero-risk, and fixes a
real connectivity bug in WDS deployments.
---
## Verification
- [Phase 1] `git describe HEAD` / `make kernelversion`: tree is 6.18.43
- [Phase 1] Parsed tags: Reported-by Jouni Malinen, Link to
patch.msgid.link, SOB Johannes Berg
- [Phase 2] Read `include/linux/ieee80211.h:481-528`: confirmed
`ieee80211_is_data()` vs `ieee80211_is_data_present()` semantics
- [Phase 2] Read `net/mac80211/tx.c:3891-3910`: buggy code uses
`ieee80211_is_data()` at line 3898
- [Phase 2] Grep `ieee80211_is_data_present` in tx.c: used at lines 633,
640, 667, 1312 for same distinction
- [Phase 3] `git show 51129a2ca0482`: confirmed mainline fix commit and
exact diff
- [Phase 3] `git show v6.18:net/mac80211/tx.c` lines 3875-3895: buggy
code present in v6.18.0
- [Phase 3] `git show v6.12:net/mac80211/tx.c` lines 3875-3895: buggy
code present in v6.12.0
- [Phase 3] `git show v5.10:net/mac80211/tx.c` line 3640: buggy pattern
present since v5.10
- [Phase 3] `git branch --contains 51129a2ca0482`: fix NOT in
stable/linux-6.18.y
- [Phase 4] `b4 dig -c 51129a2ca0482`: found lore thread URL
- [Phase 4] `b4 dig -a`: single v1 revision only
- [Phase 4] `b4 dig -w`: CC linux-wireless, Johannes Berg, Jouni Malinen
- [Phase 4] `b4 dig -m /tmp/null_data_txq.mbox`: thread contains only
patch, no replies/stable nomination
- [Phase 5] Grep `ieee80211_tx_dequeue` callers: util.c + iwlwifi, mt76,
ath9k, ath10k, rtw88, rtw89
- [Phase 5] Read `mlme.c:2403-2431`, `mlme.c:6457-6458`,
`cfg.c:280-281`: 4addr nullfunc send sites
- [Phase 6] Confirmed buggy code at tx.c:3898 in current 6.18.43
checkout
- [Phase 6] Confirmed `ieee80211_is_data_present` exists in
include/linux/ieee80211.h
- [Phase 8] Assessed failure mode: silent frame drop → WDS connectivity
failure, severity MEDIUM-HIGH
**YES**The background history searches finished, but they didn’t add
much beyond what we already verified.
`git log -S "tx_handlers_drop_unauth_port"` only surfaced unrelated
commits like the afs import (`19eef1d98eeda`) and `Linux 6.18-rc7`,
because this repo’s history is heavily squashed. The reverse pickaxe on
`all-next` similarly hit very old unrelated commits.
That doesn’t change the conclusion. Using release tags (`v5.10` through
`v6.18`) confirmed the buggy `ieee80211_is_data()` check has been in
`ieee80211_tx_dequeue()` for a long time, and the one-line fix still
applies cleanly to **6.18.43**.
**Verdict remains: YES** for backport to this tree.
net/mac80211/tx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index c125871adb62b..602974a16edc6 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -3895,7 +3895,7 @@ struct sk_buff *ieee80211_tx_dequeue(struct ieee80211_hw *hw,
* injected frames or EAPOL frames from the local station.
*/
if (unlikely(!(info->flags & IEEE80211_TX_CTL_INJECTED) &&
- ieee80211_is_data(hdr->frame_control) &&
+ ieee80211_is_data_present(hdr->frame_control) &&
!ieee80211_vif_is_mesh(&tx.sdata->vif) &&
tx.sdata->vif.type != NL80211_IFTYPE_OCB &&
!is_multicast_ether_addr(hdr->addr1) &&
--
2.53.0
next prev parent reply other threads:[~2026-08-31 13:45 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 ` [PATCH AUTOSEL 6.18] wifi: iwlwifi: mld: don't WARN on WoWLAN suspend w/o netdetect Sasha Levin
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 ` Sasha Levin [this message]
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-381-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=j@w1.fi \
--cc=johannes.berg@intel.com \
--cc=johannes@sipsolutions.net \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--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