From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Emmanuel Grumbach <emmanuel.grumbach@intel.com>,
Johannes Berg <johannes.berg@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 7.0-6.1] wifi: iwlwifi: mvm: zero iwl_geo_tx_power_profiles_cmd before sending
Date: Mon, 20 Apr 2026 09:08:31 -0400 [thread overview]
Message-ID: <20260420131539.986432-45-sashal@kernel.org> (raw)
In-Reply-To: <20260420131539.986432-1-sashal@kernel.org>
From: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
[ Upstream commit 5562b3bbeede8be25092064720e4a942e9fd3e3e ]
Otherwise we may send garbage.
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Reviewed-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20260319204647.2d494b0f4692.I9afd0fa6b2ea5a27118144ac4e3bbbedc2089c10@changeid
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
Now I have all the information needed for a thorough analysis. Let me
compile it.
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject Line
- **Subsystem**: wifi: iwlwifi: mvm
- **Action verb**: "zero" (initialization fix)
- **Summary**: Zero-initialize `iwl_geo_tx_power_profiles_cmd` union
before sending to firmware
### Step 1.2: Tags
- **Signed-off-by**: Emmanuel Grumbach (author, Intel iwlwifi core
developer)
- **Reviewed-by**: Johannes Berg (iwlwifi/mac80211 subsystem maintainer
- strong trust signal)
- **Signed-off-by**: Miri Korenblit (Intel wireless maintainer,
committer)
- **Link**: patch.msgid.link for the original submission
- No Fixes: tag (expected for AUTOSEL candidates)
- No Cc: stable (expected)
### Step 1.3: Commit Body
- "Otherwise we may send garbage." - Clear and direct. The union is
stack-allocated and not zero-initialized, so whatever stack data
happens to be there gets sent to the firmware.
### Step 1.4: Hidden Bug Fix?
- YES. The word "zero" and "= {}" pattern is a classic **uninitialized
data fix**. Sending uninitialized stack data to firmware hardware is a
real bug: potential information leak and potential firmware
misbehavior.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
- **1 file changed**: `drivers/net/wireless/intel/iwlwifi/mvm/fw.c`
- **2 lines changed** (2 additions, 2 removals)
- **Functions modified**: `iwl_mvm_get_sar_geo_profile()`,
`iwl_mvm_sar_geo_init()`
- **Scope**: Extremely minimal, single-file surgical fix
### Step 2.2: Code Flow
Two identical changes:
- Line 910: `union iwl_geo_tx_power_profiles_cmd geo_tx_cmd;` → `...
geo_tx_cmd = {};`
- Line 962: `union iwl_geo_tx_power_profiles_cmd cmd;` → `... cmd = {};`
Both change stack-allocated union variables from uninitialized to zero-
initialized.
### Step 2.3: Bug Mechanism
This is an **uninitialized data** bug (category e: initialization
fixes).
The union `iwl_geo_tx_power_profiles_cmd` contains 5 struct variants
(v1-v5) of different sizes. The union is the size of the largest (v5),
which contains `table[8][3]` of `iwl_per_chain_offset` structs plus ops
and table_revision. This is a substantial structure.
In `iwl_mvm_get_sar_geo_profile()`:
- Only `geo_tx_cmd.v1.ops` is explicitly set
- Then `len` bytes (up to `sizeof(geo_tx_cmd.v5)`) are sent to firmware
- All table and table_revision fields are **uninitialized stack
garbage** being sent to firmware
In `iwl_mvm_sar_geo_init()`:
- `ops`, `table_revision`, and table contents are filled, but any
padding within the structure or unused bytes remain uninitialized
### Step 2.4: Fix Quality
- **Obviously correct**: `= {}` is the standard C idiom for zero-
initialization
- **Minimal/surgical**: 2 lines changed, only adding initialization
- **Regression risk**: Zero. Zero-initializing before populating fields
cannot break anything.
- The newer `mld/regulatory.c` code already uses `= {}` initialization
(line 76), confirming this is the correct pattern.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
The uninitialized declarations were introduced in commit
`dd2a1256e6a8d8` ("iwlwifi: acpi: rename geo structs to contain
versioning") from **2020-09-28**, which restructured these commands into
a union. The bug has existed since then.
### Step 3.2: Fixes Tag
No Fixes: tag present (expected for AUTOSEL). The bug was introduced by
`dd2a1256e6a8d8` which is present in v5.10, v5.15, v6.1, v6.6, and all
later stable trees.
### Step 3.3: File History
The file has significant recent activity (196 commits since the buggy
commit). The newer `mld/regulatory.c` equivalent already uses zero-
initialization, confirming the pattern was eventually corrected in newer
code but the `mvm/fw.c` path was missed.
### Step 3.4: Author Context
Emmanuel Grumbach is a core Intel iwlwifi developer with many recent
commits. Johannes Berg (who reviewed this) is the iwlwifi/mac80211
maintainer. This is a fix from the subsystem's core team.
### Step 3.5: Dependencies
This patch is **fully standalone**. It only adds `= {}` to existing
variable declarations. No prerequisite commits needed.
---
## PHASE 4: MAILING LIST RESEARCH
### Step 4.1: Original Submission
b4 dig found the patch at: `https://patch.msgid.link/20260319204647.2d49
4b0f4692.I9afd0fa6b2ea5a27118144ac4e3bbbedc2089c10@changeid`
It was submitted as **[PATCH iwlwifi-next 03/15]** as part of a 15-patch
series. However, this patch is **completely independent** - it's just a
variable initialization change.
### Step 4.2: Reviewers
- Johannes Berg (iwlwifi maintainer) gave **Reviewed-by**
- linux-wireless@vger.kernel.org was CC'd
### Step 4.3-4.5: Bug Report / Related Patches / Stable Discussion
No explicit bug report or stable discussion found. The bug was found by
code inspection by an Intel developer.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1-5.2: Function Callers
- `iwl_mvm_get_sar_geo_profile()`: Called from `debugfs.c` (debugfs
handler) and `nvm.c` (NVM/regulatory init)
- `iwl_mvm_sar_geo_init()`: Called from main firmware init path at line
1735 during `iwl_mvm_up()` - this runs on **every iwlwifi device
initialization**
### Step 5.4: Reachability
`iwl_mvm_sar_geo_init` runs during driver initialization for every Intel
WiFi device using the MVM firmware path. This is a **hot, commonly-
executed path** affecting every Intel WiFi user.
---
## PHASE 6: STABLE TREE ANALYSIS
### Step 6.1: Buggy Code in Stable
The buggy commit `dd2a1256e6a8d8` is confirmed present in:
- v5.10 ✓
- v5.15 ✓
- v6.1 ✓
- v6.6 ✓
The bug affects **all active stable trees**.
### Step 6.2: Backport Complications
The fix is trivial (adding `= {}` to declarations). The only concern is
whether the variable declarations exist identically in stable trees.
Since these are the same variable names in the same functions and the
union type hasn't changed names, this should apply cleanly or with
trivial adjustment.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem
- **Subsystem**: Wireless networking driver (iwlwifi) - Intel WiFi
- **Criticality**: IMPORTANT - iwlwifi is one of the most widely used
WiFi drivers, found in most Intel-based laptops
### Step 7.2: Activity
Very actively developed (20+ recent commits shown in file history).
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who Is Affected
All users with Intel WiFi hardware using iwlwifi MVM firmware (millions
of laptops and desktops).
### Step 8.2: Trigger Conditions
- `iwl_mvm_sar_geo_init`: Triggered on **every driver initialization**
(boot, resume, WiFi toggle)
- `iwl_mvm_get_sar_geo_profile`: Triggered from debugfs and NVM init
### Step 8.3: Failure Mode Severity
- **Uninitialized kernel stack data sent to firmware**: This is a
potential kernel info leak to firmware
- **Firmware misbehavior**: If firmware interprets garbage values in the
table/revision fields, it could misapply TX power settings (regulatory
compliance issue) or behave unpredictably
- **Severity**: MEDIUM-HIGH (info leak + potential incorrect radio
behavior)
### Step 8.4: Risk-Benefit
- **Benefit**: HIGH - fixes uninitialized data being sent to firmware on
every Intel WiFi init
- **Risk**: VERY LOW - 2 lines, `= {}` is the safest possible change
- **Ratio**: Strongly favorable for backport
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence Compilation
**FOR backporting:**
- Fixes a real bug: uninitialized kernel stack data sent to WiFi
firmware
- Extremely minimal fix (2 lines, `= {}` only)
- Obviously correct - zero-initialization is the standard pattern
- Reviewed by iwlwifi maintainer (Johannes Berg)
- Written by core Intel iwlwifi developer
- Bug present in all active stable trees (since v5.10)
- Affects all Intel WiFi users (common hardware)
- Triggered on every driver initialization
- No regression risk whatsoever
- Standalone fix with zero dependencies
- The newer MLD code path already uses this pattern
**AGAINST backporting:**
- No user-visible crash or panic reported (the firmware likely tolerates
the garbage in many cases)
- No Fixes: tag, no syzbot report
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **YES** - `= {}` is trivially correct,
reviewed by maintainer
2. Fixes a real bug? **YES** - uninitialized data sent to firmware
hardware
3. Important issue? **YES** - info leak + potential firmware misbehavior
on common hardware
4. Small and contained? **YES** - 2 lines in 1 file
5. No new features or APIs? **YES** - no new functionality
6. Can apply to stable? **YES** - trivial change to variable
declarations
### Step 9.3: Exception Categories
Not an exception category; this is a standard initialization bug fix.
---
## Verification
- [Phase 1] Parsed all tags: Reviewed-by Johannes Berg (iwlwifi
maintainer), author is Emmanuel Grumbach (Intel iwlwifi developer)
- [Phase 2] Diff analysis: exactly 2 lines changed - both add `= {}` to
union variable declarations in `iwl_mvm_get_sar_geo_profile()` and
`iwl_mvm_sar_geo_init()`
- [Phase 3] git blame: buggy code introduced in commit dd2a1256e6a8d8
(2020-09-28), present since v5.10
- [Phase 3] git merge-base: confirmed dd2a1256e6a8d8 is in v5.10, v5.15,
v6.1, v6.6
- [Phase 3] No prerequisite commits needed - fix is standalone
- [Phase 4] b4 dig -c: found original submission at lore, patch 3/15 of
iwlwifi-next series
- [Phase 4] b4 dig -w: reviewed by Johannes Berg, CC'd to linux-wireless
- [Phase 5] Callers traced: `iwl_mvm_sar_geo_init` called from main init
path (`iwl_mvm_up`); `iwl_mvm_get_sar_geo_profile` called from debugfs
and NVM init
- [Phase 5] Confirmed newer `mld/regulatory.c` line 76 already uses `=
{}` pattern for same union type
- [Phase 6] Buggy code exists in all active stable trees (v5.10+)
- [Phase 6] Fix should apply cleanly or with trivial adjustment
- [Phase 8] Impact: all Intel WiFi users; triggered on every driver
init; severity MEDIUM-HIGH (info leak + potential firmware
misbehavior)
The fix is a textbook example of an uninitialized data bug fix: minimal,
obviously correct, zero regression risk, affects widely-used hardware,
and has been reviewed by the subsystem maintainer.
**YES**
drivers/net/wireless/intel/iwlwifi/mvm/fw.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/fw.c b/drivers/net/wireless/intel/iwlwifi/mvm/fw.c
index 6cc78661116e5..cfe2bb6c1d90a 100644
--- a/drivers/net/wireless/intel/iwlwifi/mvm/fw.c
+++ b/drivers/net/wireless/intel/iwlwifi/mvm/fw.c
@@ -907,7 +907,7 @@ int iwl_mvm_sar_select_profile(struct iwl_mvm *mvm, int prof_a, int prof_b)
int iwl_mvm_get_sar_geo_profile(struct iwl_mvm *mvm)
{
- union iwl_geo_tx_power_profiles_cmd geo_tx_cmd;
+ union iwl_geo_tx_power_profiles_cmd geo_tx_cmd = {};
struct iwl_geo_tx_power_profiles_resp *resp;
u16 len;
int ret;
@@ -959,7 +959,7 @@ int iwl_mvm_get_sar_geo_profile(struct iwl_mvm *mvm)
static int iwl_mvm_sar_geo_init(struct iwl_mvm *mvm)
{
u32 cmd_id = WIDE_ID(PHY_OPS_GROUP, PER_CHAIN_LIMIT_OFFSET_CMD);
- union iwl_geo_tx_power_profiles_cmd cmd;
+ union iwl_geo_tx_power_profiles_cmd cmd = {};
u16 len;
u32 n_bands;
u32 n_profiles;
--
2.53.0
next prev parent reply other threads:[~2026-04-20 13:16 UTC|newest]
Thread overview: 91+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-20 13:07 [PATCH AUTOSEL 6.18] ALSA: hda/realtek: add quirk for Lenovo Yoga 7 2-in-1 16AKP10 Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 6.18] net: stmmac: Fix PTP ref clock for Tegra234 Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.12] ring-buffer: Enforce read ordering of trace_buffer cpumask and buffers Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.6] PCI: Prevent assignment to unsupported bridge windows Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-5.10] smb: client: fix integer underflow in receive_encrypted_read() Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-5.10] gpio: lp873x: normalize return value of gpio_get Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.12] ALSA: hda: cs35l41: Fix boost type for HP Dragonfly 13.5 inch G4 Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.18] wifi: mt76: don't return TXQ when exceeding max non-AQL packets Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 6.18] arm64: dts: imx91-tqma9131: improve eMMC pad configuration Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 6.18] ASoC: amd: acp: add ASUS HN7306EA quirk for legacy SDW machine Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.12] wifi: mac80211: properly handle error in ieee80211_add_virtual_monitor Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-5.10] net: qrtr: fix endian handling of confirm_rx field Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.18] mmc: sdhci-esdhc-imx: wait for data transfer completion before reset Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] tracing/probe: reject non-closed empty immediate strings Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] media: rc: fix race between unregister and urb/irq callbacks Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] netfilter: xt_multiport: validate range encoding in checkentry Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] arm64: dts: imx93-tqma9352: improve eMMC pad configuration Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] dm vdo slab-depot: validate old zone count on load Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] wifi: mt76: mt792x: Fix a potential deadlock in high-load situations Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] orangefs: add usercopy whitelist to orangefs_op_cache Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ice: ptp: don't WARN when controlling PF is unavailable Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] e1000: check return value of e1000_read_eeprom Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.19] ALSA: usb-audio: Add quirks for Arturia AF16Rig Sasha Levin
2026-04-20 13:27 ` Philip Willoughby
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] ALSA: asihpi: detect truncated control names Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] ALSA: hda/realtek: Add support for ASUS 2026 Commercial laptops using CS35L41 HDA Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] jfs: Set the lbmDone flag at the end of lbmIODone Sasha Levin
2026-04-20 14:10 ` Edward Adam Davis
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.19] ASoC: SDCA: Add CS47L47 to class driver Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] media: renesas: vsp1: rpf: Fix crop left and top clamping Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ASoC: amd: yc: Add DMI entry for HP Laptop 15-fc0xxx Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] media: au0828: Fix green screen in analog Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ASoC: Intel: avs: Fix memory leak in avs_register_i2s_test_boards() Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] nvme-loop: do not cancel I/O and admin tagset during ctrl reset/shutdown Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] bpf, sockmap: Annotate af_unix sock:: Sk_state data-races Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] net: wangxun: reorder timer and work sync cancellations Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] PCI: tegra194: Assert CLKREQ# explicitly by default Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.15] net: mvneta: support EPROBE_DEFER when reading MAC address Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: add quirk for Framework F111:000F Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] jfs: add dmapctl integrity check to prevent invalid operations Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] wifi: mac80211: Remove deleted sta links in ieee80211_ml_reconf_work() Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] HID: logitech-hidpp: fix race condition when accessing stale stack pointer Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] net/mlx5e: XSK, Increase size for chunk_size param Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] PCI: dwc: Proceed with system suspend even if the endpoint doesn't respond with PME_TO_Ack message Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] ACPI: processor: idle: Fix NULL pointer dereference in hotplug path Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] ppp: disconnect channel before nullifying pch->chan Sasha Levin
2026-04-20 13:08 ` Sasha Levin [this message]
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.15] ALSA: pcm: Serialize snd_pcm_suspend_all() with open_mutex Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] Bluetooth: hci_qca: disable power control for WCN7850 when bt_en is not defined Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] Bluetooth: hci_qca: Fix missing wakeup during SSR memdump handling Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] pinctrl: intel: Fix the revision for new features (1kOhm PD, HW debouncer) Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] fbdev: viafb: check ioremap return value in viafb_lcd_get_mobile_state Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.19] drm/panel-edp: Add BOE NV153WUM-N42, CMN N153JCA-ELK, CSW MNF307QS3-2 Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0] drm/amdgpu/userq: remove queue from doorbell xarray Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] memory: brcmstb_memc: Expand LPDDR4 check to cover for LPDDR5 Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] nouveau: pci: quiesce GPU on shutdown Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] perf/amd/ibs: Avoid race between event add and NMI Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] drm/amd/display: Fix dcn401_optimize_bandwidth Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] wifi: rtw88: coex: Ignore BT info byte 5 from RTL8821A Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] btrfs: tracepoints: get correct superblock from dentry in event btrfs_sync_file() Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] ALSA: hda/realtek: Add quirk for CSL Unity BF24B Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] media: stm32: dcmi: stop the dma transfer on overrun Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] ALSA: aoa/onyx: Fix OF node leak on probe failure Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] drm/bridge: waveshare-dsi: Register and attach our DSI device at probe Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] wifi: rtw89: retry efuse physical map dump on transient failure Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] netfilter: nfnetlink_queue: make hash table per queue Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] gpio: cgbc: normalize return value of gpio_get Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] HID: logitech-hidpp: Check bounds when deleting force-feedback effects Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] x86: shadow stacks: proper error handling for mmap lock Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] sched: Fix incorrect schedstats for rt and dl thread Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] wifi: iwlwifi: pcie: don't dump on reset handshake in dump Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] net: sfp: add quirks for Hisense and HSGQ GPON ONT SFP modules Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ixgbevf: add missing negotiate_features op to Hyper-V ops table Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] hwmon: (pmbus/isl68137) Add support for Renesas RAA228942 and RAA228943 Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.15] btrfs: use BTRFS_FS_UPDATE_UUID_TREE_GEN flag for UUID tree rescan check Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.19] Bluetooth: hci_ll: Enable BROKEN_ENHANCED_SETUP_SYNC_CONN for WL183x Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] wifi: mt76: abort ROC on chanctx changes Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] perf/amd/ibs: Limit ldlat->l3missonly dependency to Zen5 Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] drm/amdkfd: Fix queue preemption/eviction failures by aligning control stack size to GPU page size Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] clockevents: Prevent timer interrupt starvation Sasha Levin
2026-04-20 14:12 ` Thomas Gleixner
2026-04-21 6:26 ` [PATCH stable backport] clockevents: Add missing resets of the next_event_forced flag Thomas Gleixner
2026-04-21 7:44 ` Patch "clockevents: Add missing resets of the next_event_forced flag" has been added to the 7.0-stable tree gregkh
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-5.10] ASoC: tas2552: Allow audio enable GPIO to sleep Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] wifi: ath12k: Fix the assignment of logical link index Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.12] drm/amdgpu: fix DF NULL pointer issue for soc24 Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] drm/ttm: Avoid invoking the OOM killer when reading back swapped content Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] drm/vc4: Release runtime PM reference after binding V3D Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-5.10] media: i2c: mt9p031: Check return value of devm_gpiod_get_optional() in mt9p031_probe() Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] Bluetooth: hci_sync: annotate data-races around hdev->req_status Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-5.10] ASoC: Intel: bytcr_rt5651: Fix MCLK leak on platform_clock_control error 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=20260420131539.986432-45-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