From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: 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-6.1] wifi: iwlwifi: acpi: validate WGDS table revision index
Date: Mon, 31 Aug 2026 09:23:13 -0400 [thread overview]
Message-ID: <20260831133314.4125787-165-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>
From: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
[ Upstream commit 954e821f42aaca56073ca830c5fd4bcf1a89048c ]
Check tbl_rev bounds before BIT(tbl_rev) to avoid undefined shifts when
firmware reports an invalid revision value.
Assisted-by: GitHubCopilot:GPT-5.3-Codex
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Link: https://patch.msgid.link/20260717173215.52a01f841f2a.Ic0131eaac31d9ff71b169138d9b0865cb39b44a9@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:
## Phase 1: Commit Message Forensics
**Step 1.1 — Subject line**
Record: `[wifi: iwlwifi: acpi]` `[validate]` — Validate WGDS ACPI table
revision index before using it in a bit-shift.
**Step 1.2 — Tags**
Record:
- **Fixes:** — none
- **Reported-by:** — none
- **Tested-by:** — none
- **Reviewed-by:** — none
- **Acked-by:** — none
- **Cc: stable@vger.kernel.org:** — none
- **Link:** https://patch.msgid.link/20260717173215.52a01f841f2a.Ic0131e
aac31d9ff71b169138d9b0865cb39b44a9@changeid
- **Signed-off-by:** Emmanuel Grumbach `<emmanuel.grumbach@intel.com>`,
Miri Korenblit `<miriam.rachel.korenblit@intel.com>`
- **Assisted-by:** GitHubCopilot:GPT-5.3-Codex
Notable: no fuzzer report, no user report, no explicit stable
nomination.
**Step 1.3 — Body analysis**
Record:
- **Bug:** `tbl_rev` is used in `BIT(tbl_rev)` without validating it is
a valid bit index for the `u8 revisions` mask.
- **Symptom:** Undefined left-shift if ACPI reports an out-of-range
revision (commit message says “firmware”; in code the value comes from
the ACPI WGDS package revision field).
- **Root cause:** `iwl_acpi_get_wifi_pkg_range()` copies the ACPI
integer into `*tbl_rev` but does not bound-check it;
`iwl_acpi_get_wgds_table()` then does `BIT(tbl_rev) &
rev_data[idx].revisions`.
**Step 1.4 — Hidden bug fix?**
Record: No — this is an explicit defensive validation fix, not cleanup
disguised as a bug fix.
---
## Phase 2: Diff Analysis
**Step 2.1 — Inventory**
Record:
- **Files:** `drivers/net/wireless/intel/iwlwifi/fw/acpi.c` (+5 / -0)
- **Function:** `iwl_acpi_get_wgds_table()`
- **Scope:** Single-file, surgical fix in one loop body
**Step 2.2 — Code flow change**
Record:
- **Before:** On successful `iwl_acpi_get_wifi_pkg_range()`, code
immediately evaluates `BIT(tbl_rev) & rev_data[idx].revisions`.
- **After:** Rejects `tbl_rev < 0` or `tbl_rev >= 8` (`BITS_PER_BYTE *
sizeof(u8)`) and `continue`s to the next `rev_data[]` entry.
- **Path affected:** ACPI WGDS table parsing during driver
regulatory/SAR init (normal probe path, not error-only).
**Step 2.3 — Bug mechanism**
Record:
- **Category:** Memory safety / undefined behavior (invalid shift),
logic/correctness.
- **Mechanism:** `tbl_rev` is assigned from a 64-bit ACPI integer into
an `int` (`acpi.c:249`). Large values can truncate to negative; large
positive values can be `>= BITS_PER_LONG`. `BIT(nr)` is `(UL(1) <<
(nr))` (`include/vdos/bits.h`), so out-of-range shifts are undefined
in C. The `revisions` field is `u8`, so only bits 0–7 are meaningful.
**Step 2.4 — Fix quality**
Record:
- Fix is minimal and matches an existing pattern in the same file
(`iwl_acpi_get_tas_table()` already checks `tbl_rev < 0 || tbl_rev >
2` at line 304).
- Regression risk is very low: invalid revisions are skipped instead of
provoking UB.
- No API or behavior change for valid ACPI tables.
---
## Phase 3: Git History Investigation
**Step 3.1 — Blame**
Record: The vulnerable `BIT(tbl_rev)` line is at `acpi.c:764` in this
tree. `git blame` attributes it to merge commit `5d324e5159d9e` (shallow
history artifact). The same `rev_data` + `BIT(tbl_rev)` pattern is
present in tag `v6.18`, so the bug exists since the 6.18 release in this
series.
**Step 3.2 — Fixes: tag**
Record: N/A — no `Fixes:` tag.
**Step 3.3 — Related file history**
Record:
- Commit `954e821f42aac` is on `master` but not in stable `HEAD`
(6.18.44).
- Related mainline-only WGDS work (`f951689793e6c`, `c5cc3d3717783`) is
**not** in this 6.18.y tree.
- This fix is patch **3/5** of an iwlwifi-fixes series, but the 5-line
hunk is standalone and does not depend on the other series members for
correctness.
**Step 3.4 — Author context**
Record: Emmanuel Grumbach is a senior Intel iwlwifi developer; Miri
Korenblit committed it. No other recent acpi.c commits from this author
in the shallow stable history.
**Step 3.5 — Dependencies**
Record: No prerequisites. `git cherry-pick --no-commit 954e821f42aac`
auto-merged cleanly on stable `HEAD` (5 lines added, 1 file).
---
## Phase 4: Mailing List and External Research
**Step 4.1 — Original discussion**
Record:
- `b4 dig -c 954e821f42aac` → https://patch.msgid.link/20260717173215.52
a01f841f2a.Ic0131eaac31d9ff71b169138d9b0865cb39b44a9@changeid
- Part of `[PATCH iwlwifi-fixes 3/5]` series (v1 only in b4 `-a`
output).
- Mbox saved to `/tmp/wgds_thread.mbox`; thread contains patch
submissions only — no review replies, no stable nominations, no NAKs
found.
**Step 4.2 — Reviewers**
Record: `b4 dig -w` shows To/Cc: Miri Korenblit,
johannes@sipsolutions.net, linux-wireless@vger.kernel.org, Emmanuel
Grumbach. No `Reviewed-by:` in the committed version.
**Step 4.3 — Bug report**
Record: N/A — no external bug report linked.
**Step 4.4 — Series context**
Record: 5-patch iwlwifi-fixes series (FW parser bounds, PNVM, this WGDS
fix, SEC_RT TLV, etc.). This patch is independently applicable.
**Step 4.5 — Stable list**
Record: No stable-list discussion found (WebFetch to lore blocked by bot
protection; mbox grep found no “stable” mentions).
---
## Phase 5: Code Semantic Analysis
**Step 5.1 — Key functions**
Record: `iwl_acpi_get_wgds_table()`, called via
`iwl_acpi_get_wifi_pkg_range()`.
**Step 5.2 — Callers**
Record:
- `iwl_bios_get_wgds_table()` — macro-generated in `fw/regulatory.c:35`,
tries UEFI then ACPI.
- Called from:
- `mvm/fw.c:1231,1252` during MVM firmware/SAR table load
- `mld/regulatory.c:39,58` during MLD regulatory init
**Step 5.3 — Callees**
Record: `iwl_acpi_get_object()`, `iwl_acpi_get_wifi_pkg_range()`, ACPI
package parsing, `kfree()` on exit.
**Step 5.4 — Reachability**
Record: Reachable at Intel WiFi driver probe/init on ACPI platforms
(`CONFIG_ACPI`, `CONFIG_IWLMVM` or `CONFIG_IWLMLD`). Trigger requires
malformed WGDS ACPI data, not a direct syscall — but it runs on every
boot for affected hardware.
**Step 5.5 — Similar patterns**
Record: `iwl_acpi_get_tas_table()` already validates `tbl_rev` bounds
(`acpi.c:304`). This fix brings WGDS parsing in line with that
precedent.
---
## Phase 6: Cross-Reference Against Local Tree
**Step 6.1 — Buggy code present?**
Record: **Yes.** Local tree is **6.18.44** (`git describe HEAD` →
`v6.18.44-2-g1b9e1abadee04`, `make kernelversion` → `6.18.44`), detached
from `stable/linux-6.18.y`. Vulnerable line confirmed at `acpi.c:764`:
```764:765:drivers/net/wireless/intel/iwlwifi/fw/acpi.c
if (!(BIT(tbl_rev) & rev_data[idx].revisions))
continue;
```
**Step 6.2 — Backport complications**
Record: **Clean apply** — verified by test cherry-pick. No conflicts.
**Step 6.3 — Fix already present?**
Record: **No.** `git log HEAD --grep="validate WGDS"` returns nothing;
bounds check not in current `acpi.c`.
---
## Phase 7: Subsystem and Maintainer Context
**Step 7.1 — Subsystem**
Record: `drivers/net/wireless/intel/iwlwifi` — **IMPORTANT** (Intel
WiFi, widely deployed on laptops).
**Step 7.2 — Activity**
Record: Active stable backports in this tree include several recent
iwlwifi validation fixes (`eae7fdf7d4469`, `a076b0c457c71`,
`1de92789ce31e`, etc.).
---
## Phase 8: Impact and Risk Assessment
**Step 8.1 — Who is affected**
Record: Intel WiFi users on ACPI platforms (laptops/desktops) during
driver initialization.
**Step 8.2 — Trigger conditions**
Record: ACPI WGDS table with revision integer outside 0–7 (or negative
due to truncation). Uncommon but plausible with buggy OEM ACPI. Not
user-triggerable via normal syscalls; ACPI is the input source.
**Step 8.3 — Failure mode severity**
Record: **HIGH** potential (undefined behavior → possible oops/panic at
probe); **MEDIUM** likelihood (requires bad ACPI). Not data corruption,
but can prevent WiFi from loading or crash the kernel during probe.
**Step 8.4 — Risk vs benefit**
Record:
- **Benefit:** Eliminates UB on a real probe path; aligns with existing
in-file validation style.
- **Risk:** Very low — 5 lines, skip-invalid-and-continue semantics.
- **Ratio:** Favorable for stable.
---
## Phase 9: Final Synthesis
**Step 9.1 — Evidence summary**
FOR backport:
- Real UB bug in production code present since 6.18.0
- Probe-time path on common hardware
- Tiny, obviously correct, applies cleanly
- Consistent with existing `tbl_rev` validation elsewhere in same file
- iwlwifi stable tree already accepts similar validation fixes
AGAINST backport:
- No syzbot/user report
- Requires malformed ACPI (uncommon)
- Part of a larger series (though this hunk is independent)
- Commit message slightly mislabels ACPI revision as “firmware”
Unresolved: No runtime crash report confirming the bug was hit in the
field.
**Step 9.2 — Stable rules checklist**
1. Obviously correct and tested? **PASS** — logic is clear; no Tested-by
but pattern is established in-file.
2. Fixes a real bug? **PASS** — C undefined shift on invalid index.
3. Important issue? **PASS** — probe-time UB with potential kernel
crash.
4. Small and contained? **PASS** — 5 lines, 1 file.
5. No new features/APIs? **PASS** — pure validation.
6. Can apply to local tree? **PASS** — verified clean cherry-pick.
**Step 9.3 — Exception categories**
Record: None (not device ID, quirk, DT, build, or docs).
**Step 9.4 — Problem and decision**
This commit adds a bounds check on `tbl_rev` before `BIT(tbl_rev)` in
`iwl_acpi_get_wgds_table()`. Without it, a malformed ACPI WGDS revision
field can cause undefined bit-shifts during Intel WiFi driver
initialization on 6.18.y systems. The fix is minimal, self-contained,
matches existing validation in the same driver file, and applies cleanly
to the checked-out **linux-6.18.y (6.18.44)** tree where the vulnerable
code is present and the fix is not yet applied.
---
## Verification
- [Phase 1] Parsed commit `954e821f42aac`: subject, body, Link tag,
SOBs; no Reported-by/syzbot/Fixes/stable tags
- [Phase 2] Read diff: +5 lines in `iwl_acpi_get_wgds_table()` before
`BIT(tbl_rev)`
- [Phase 2] Read `iwl_acpi_get_wifi_pkg_range()` at `acpi.c:249`:
`*tbl_rev = data->package.elements[0].integer.value`
- [Phase 2] Confirmed `BIT()` definition in `include/vdso/bits.h`:
`(UL(1) << (nr))`
- [Phase 3] `git describe HEAD` → `v6.18.44-2-g1b9e1abadee04`; `make
kernelversion` → `6.18.44`
- [Phase 3] `git log HEAD..master --
drivers/net/wireless/intel/iwlwifi/fw/acpi.c` → fix commit
`954e821f42aac` not in stable HEAD
- [Phase 3] `git show v6.18:.../acpi.c | grep rev_data` → buggy pattern
present in v6.18.0
- [Phase 3] Cherry-pick test: clean auto-merge, 5 lines added
- [Phase 3] `f951689793e6c`, `c5cc3d3717783` confirmed **NOT** in
v6.18/HEAD (mainline-only related work)
- [Phase 4] `b4 dig -c 954e821f42aac` → lore URL found; patch 3/5 of
iwlwifi-fixes series
- [Phase 4] `b4 dig -a`, `b4 dig -w` → v1 series; CC list includes
linux-wireless and Johannes
- [Phase 4] Mbox grep: no stable/Reviewed/Acked/Tested replies in thread
- [Phase 5] `grep iwl_bios_get_wgds_table` → callers in `mvm/fw.c`,
`mld/regulatory.c`; loader in `fw/regulatory.c:35`
- [Phase 5] Existing precedent: `acpi.c:304` validates `tbl_rev` for
WTAS table
- [Phase 6] Confirmed vulnerable code at `acpi.c:764` in current tree;
fix absent
- [Phase 8] Assessed severity: UB at probe, ACPI-triggered, Intel WiFi
laptops
**YES**The background checks finished and line up with the earlier
analysis:
- **`iwl_acpi_get_wgds_table()`** goes back to the UEFI/SAR table work
(e.g. `427661e4c4888` / `2594e4d9e1a2d`); the `rev_data` +
`BIT(tbl_rev)` path is already in **6.18.y**.
- Related mainline WGDS commits (`f951689793e6c`, `c5cc3d3717783`,
`f863093a914c4`) are **not** in this **6.18.44** tree — only the small
bounds-check fix is needed here.
- This checkout is **detached from `stable/linux-6.18.y`** at
**6.18.44**, well behind `master`.
**Verdict unchanged: YES** — backport `954e821f42aac`; it applies
cleanly and fixes real undefined-shift behavior on the ACPI WGDS probe
path.
drivers/net/wireless/intel/iwlwifi/fw/acpi.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/net/wireless/intel/iwlwifi/fw/acpi.c b/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
index 52edc19d8cdd5..852c5ac36c221 100644
--- a/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
+++ b/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
@@ -761,6 +761,11 @@ int iwl_acpi_get_wgds_table(struct iwl_fw_runtime *fwrt)
min_size, max_size,
&tbl_rev);
if (!IS_ERR(wifi_pkg)) {
+ if (tbl_rev < 0 ||
+ tbl_rev >= BITS_PER_BYTE *
+ sizeof(rev_data[idx].revisions))
+ continue;
+
if (!(BIT(tbl_rev) & rev_data[idx].revisions))
continue;
--
2.53.0
next prev parent reply other threads:[~2026-08-31 13:39 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 ` Sasha Levin [this message]
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 ` [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-165-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=emmanuel.grumbach@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