From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: "Cássio Gabriel" <cassiogabrielcontato@gmail.com>,
"Takashi Iwai" <tiwai@suse.de>, "Sasha Levin" <sashal@kernel.org>,
perex@perex.cz, tiwai@suse.com, linux-sound@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18-5.10] ALSA: seq: oss: Reject reads that cannot fit the next event
Date: Mon, 31 Aug 2026 09:24:37 -0400 [thread overview]
Message-ID: <20260831133314.4125787-249-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>
From: Cássio Gabriel <cassiogabrielcontato@gmail.com>
[ Upstream commit 611f538253d970f4d152003841544e875828d015 ]
snd_seq_oss_read() checks whether the next queued OSS sequencer event
fits in the remaining userspace buffer before removing it from the read
queue.
The check is inverted. It currently stops when the event is smaller than
the remaining buffer, so a normal 4-byte event is not copied for an
8-byte read buffer. Conversely, an 8-byte event can be copied for a
smaller read count.
Break only when the remaining userspace buffer is smaller than the next
event, and report -EINVAL if no complete event has been copied. This
prevents an undersized read from looking like end-of-file while leaving
the event queued for a later read with a large enough buffer.
Signed-off-by: Cássio Gabriel <cassiogabrielcontato@gmail.com>
Link: https://patch.msgid.link/20260602-alsa-seq-oss-read-size-check-v1-1-10e59b1742e0@gmail.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: ALSA seq OSS read size check
**Local tree:** Linux **6.18.44** (`v6.18.44-1-gef4bf62bccf3c`, detached
from `stable/linux-6.18.y`)
**Mainline fix commit:** `611f538253d97` (not yet in this stable tree;
`git apply --check` passes cleanly)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject line
**Record:** `[ALSA: seq: oss]` `[Reject]` — fixes inverted buffer-size
check in `snd_seq_oss_read()` so reads that cannot hold the next
complete event are rejected instead of mishandled.
### Step 1.2: Tags
**Record:**
| Tag | Value |
|-----|-------|
| Signed-off-by | Cássio Gabriel \<cassiogabrielcontato@gmail.com\> |
| Link | https://patch.msgid.link/20260602-alsa-seq-oss-read-size-
check-v1-1-10e59b1742e0@gmail.com |
| Signed-off-by | Takashi Iwai \<tiwai@suse.de\> (committer) |
**Notable patterns:** No Fixes:, Reported-by:, Tested-by:, Reviewed-by:,
or Cc: stable. Maintainer (Iwai) committed the patch. No syzbot report.
### Step 1.3: Body analysis
**Record:**
- **Bug:** `snd_seq_oss_read()` uses `if (ev_len < count)` instead of
`if (count < ev_len)` to decide whether the next queued event fits in
the remaining userspace buffer.
- **Symptom 1:** A normal 4-byte short event is **not** copied when the
read buffer is larger (e.g. 8 bytes); loop breaks with `result == 0`
and `err == 0` → `read()` returns 0 (EOF semantics).
- **Symptom 2:** An 8-byte long event **can** be copied when `count` is
smaller (e.g. 4), writing past the bytes the user requested for this
read.
- **Fix:** Break only when `count < ev_len`; set `err = -EINVAL` so
undersized reads return an error instead of false EOF, leaving the
event queued.
- **Root cause:** Inverted comparison operator.
### Step 1.4: Hidden bug fix?
**Record:** Yes — described as a size-check correction, but it fixes
both functional breakage (reads never succeed when buffer > event size)
and a userspace buffer overrun on undersized reads for long events.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **File:** `sound/core/seq/oss/seq_oss_rw.c` (+2 / −1)
- **Function:** `snd_seq_oss_read()`
- **Scope:** Single-file, surgical fix (3 net lines)
### Step 2.2: Code flow per hunk
**Record:**
| Before | After |
|--------|-------|
| `if (ev_len < count)` → break when event is **smaller** than buffer |
`if (count < ev_len)` → break when buffer is **smaller** than event |
| On break: `err` unchanged (stays 0) | On break: `err = -EINVAL` |
| Event dequeued and copied even when `count < ev_len` | Event stays
queued; no copy attempted |
**Affected path:** Normal blocking/non-blocking `read()` on OSS
sequencer device (`odev_read()` → `snd_seq_oss_read()`).
### Step 2.3: Bug mechanism
**Record:**
- **Category:** Logic/correctness bug + userspace buffer overrun
- **Mechanism:** With `ev_len=4, count=8`: `4 < 8` is true → break
without copying → returns 0 (false EOF). With `ev_len=8, count=4`: `8
< 4` is false → `copy_to_user(buf, &rec, 8)` writes 8 bytes when only
4 were requested — userspace overrun.
### Step 2.4: Fix quality
**Record:** Obviously correct — flips the comparison to match the stated
intent and matches the write-side pattern (`if (count < ev_size) break;`
at line 116). Minimal regression risk; `-EINVAL` is appropriate for
invalid read size.
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** Buggy lines introduced in `1da177e4c3f41` (Linux-2.6.12-rc2
import, April 2005). Present unchanged in this 6.18.44 tree at lines
60–62.
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag in commit message.
### Step 3.3: File history
**Record:** Recent stable-tree changes to this file include UAF fix
(`6dc781778b595`), SEQ_FULLSIZE write fix (`33074b1e6c18f`). No prior
fix for this read-size issue. Standalone single-patch submission (v1
only per `b4 dig -a`).
### Step 3.4: Author context
**Record:** Cássio Gabriel has one prior OSS seq commit in this tree
(`33074b1e6c18f`). Patch committed by ALSA maintainer Takashi Iwai.
### Step 3.5: Dependencies
**Record:** None. Self-contained; no prerequisite commits or series
dependencies.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original discussion
**Record:**
- **URL:** https://patch.msgid.link/20260602-alsa-seq-oss-read-size-
check-v1-1-10e59b1742e0@gmail.com
- **Series:** v1 only (no revisions)
- **Reviewer feedback:** Takashi Iwai replied "Applied to for-next
branch now. Thanks." No NAKs, no stable nomination in thread.
### Step 4.2: Reviewers (b4 dig -w)
**Record:** CC'd: Takashi Iwai, Jaroslav Kysela, linux-
sound@vger.kernel.org, linux-kernel@vger.kernel.org. Appropriate
subsystem coverage; maintainer applied.
### Step 4.3: Bug report
**Record:** No external bug report, syzbot link, or user Reported-by.
Author discovered via code review.
### Step 4.4: Related patches
**Record:** Standalone; not part of a multi-patch series.
### Step 4.5: Stable list
**Record:** Not searched separately; no stable discussion found in the
patch thread.
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key functions
**Record:** `snd_seq_oss_read()` (modified); helpers: `ev_length()`,
`snd_seq_oss_readq_pick()`, `snd_seq_oss_readq_free()`,
`copy_to_user()`.
### Step 5.2: Callers
**Record:** `odev_read()` in `sound/core/seq/oss/seq_oss.c:152` —
standard `read()` file operation on `/dev/sequencer` and `/dev/music`
(OSS sequencer minors). Reachable from any userspace process with device
access.
### Step 5.3: Callees
**Record:** Queue lock/pick/free/wait, `ev_length()` (4 or 8 bytes via
`SHORT_EVENT_SIZE`/`LONG_EVENT_SIZE`), `copy_to_user()`.
### Step 5.4: Call chain / reachability
**Record:** `read(2)` → `odev_read()` → `snd_seq_oss_read()` → queue
pick + `copy_to_user()`. **Userspace-reachable** when
`CONFIG_SND_SEQUENCER_OSS` is enabled (tristate module `snd-seq-oss`).
### Step 5.5: Similar patterns
**Record:** Write path in the same file correctly uses `if (count <
ev_size) break;` (line 116). Read path was the lone inverted check.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
### Step 6.1: Buggy code present?
**Record:** **Yes.** Current tree at
`sound/core/seq/oss/seq_oss_rw.c:60`:
```60:62:sound/core/seq/oss/seq_oss_rw.c
if (ev_len < count) {
snd_seq_oss_readq_unlock(readq, flags);
break;
```
Bug present since 2.6.12 import; not introduced after 6.18 branch point.
### Step 6.2: Backport complications
**Record:** **Clean apply** — `git show 611f538253d97 | git apply
--check` succeeds with no conflicts. No refactoring divergence in this
hunk between stable and mainline.
### Step 6.3: Related fixes already present?
**Record:** No. `git log stable/linux-6.18.y --grep="Reject reads"`
returns nothing. Fix exists on `master` (`611f538253d97`) but not on
`stable/linux-6.18.y`.
---
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: Subsystem criticality
**Record:** **ALSA / sound** — OSS sequencer emulation
(`CONFIG_SND_SEQUENCER_OSS`). **PERIPHERAL** (legacy API), but syscall-
reachable for users of `/dev/sequencer`.
### Step 7.2: Subsystem activity
**Record:** Actively maintained in 6.18.y — recent stable backports
include UAF fix (`6dc781778b595`), readq locking (`287d506d4e086` on
mainline).
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who is affected
**Record:** Users of OSS sequencer API (`snd-seq-oss` module): legacy
MIDI/sequencer applications reading from `/dev/sequencer` or
`/dev/music`. Config-specific (`CONFIG_SND_SEQUENCER_OSS`), but commonly
enabled on desktop distros.
### Step 8.2: Trigger conditions
**Record:**
- **Common case:** `read()` with `count > 4` and a 4-byte short event
queued → always returns 0 (broken).
- **Overflow case:** `read()` with `count == 4` and an 8-byte long event
(`code >= 128`) queued → copies 8 bytes into a 4-byte read window.
- Any unprivileged user with read access to the device node can trigger.
### Step 8.3: Failure mode severity
**Record:**
- False EOF (return 0): **HIGH** functional breakage — OSS sequencer
input effectively unusable for typical read buffer sizes.
- Userspace buffer overrun on long events: **MEDIUM-HIGH** — kernel
writes past userspace buffer bounds (userspace corruption; potential
security impact for setuid readers).
- No kernel oops/panic.
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** Restores working read path; prevents userspace overrun;
fixes 20-year-old logic error.
- **Risk:** Very low — 2-line logic flip + explicit `-EINVAL`; mirrors
existing write-side logic.
- **Ratio:** Clear benefit, minimal risk.
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence summary
**FOR backport:**
- Objectively inverted comparison (verified in tree and since 2.6.12)
- Breaks normal reads when buffer > event size (returns false EOF)
- Allows `copy_to_user()` beyond requested read size for long events
- Minimal, maintainer-committed fix; applies cleanly to 6.18.44
- Buggy code confirmed present; fix not yet in stable branch
**AGAINST backport:**
- Legacy OSS API with limited user base
- No user reports or fuzzer findings
- Bug latent since 2005 (apps may use exact 4-byte reads)
- Failure is userspace corruption, not kernel crash
**Unresolved:** No runtime test results or user bug reports beyond
author analysis.
### Step 9.2: Stable rules checklist
| Criterion | Result |
|-----------|--------|
| 1. Obviously correct and tested? | **PASS** — logic fix is self-
evident; maintainer applied; no formal Tested-by |
| 2. Fixes a real bug affecting users? | **PASS** — breaks OSS sequencer
reads; userspace overrun on long events |
| 3. Important issue? | **PASS** — HIGH functional breakage; MEDIUM-HIGH
userspace safety |
| 4. Small and contained? | **PASS** — 3 lines, one file |
| 5. No new features/APIs? | **PASS** — corrects existing behavior only
|
| 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 fix).
### Step 9.4: Decision rationale
For **Linux 6.18.y**, this commit should be backported. The inverted
comparison is an unambiguous logic error that makes the OSS sequencer
read path fail for the common case (read buffer larger than a 4-byte
event) and permits writing more data to userspace than the read
requested for 8-byte events. The fix is tiny, obviously correct, matches
the write-side pattern in the same file, was committed by the ALSA
maintainer, and applies cleanly to the checked-out 6.18.44 tree where
the buggy code is still present.
---
## Verification
- **[Phase 1]** Parsed commit message from user query and `git show
611f538253d97`
- **[Phase 1]** Tags: Signed-off-by (author + Iwai), Link to lore; no
Fixes/Reported-by/syzbot
- **[Phase 2]** Diff: 3-line change in `snd_seq_oss_read()`; inverted
`ev_len < count` → `count < ev_len` + `err = -EINVAL`
- **[Phase 2]** Read current buggy code at `seq_oss_rw.c:60-62`;
verified return path `return result > 0 ? result : err` yields 0 on
buggy break
- **[Phase 2]** `ev_length()` macro: 4 or 8 bytes
(`seq_oss_event.h:92`); `SHORT_EVENT_SIZE=4`, `LONG_EVENT_SIZE=8`
- **[Phase 3]** `git blame -L 59,63`: bug since `1da177e4c3f41`
(Linux-2.6.12-rc2)
- **[Phase 3]** `git log -20 -- sound/core/seq/oss/seq_oss_rw.c`: no
prior read-size fix
- **[Phase 3]** `git show 1da177e4c3f41:...`: original code had same
inverted check
- **[Phase 4]** `b4 dig -c 611f538253d97`: found thread at
patch.msgid.link URL
- **[Phase 4]** `b4 dig -a`: v1 only, no revisions
- **[Phase 4]** `b4 dig -w`: Iwai, Kysela, linux-sound CC'd
- **[Phase 4]** Read `/tmp/alsa_seq_oss_read_fix.mbx`: Iwai applied to
for-next; no NAKs or stable CC
- **[Phase 5]** `grep snd_seq_oss_read`: caller is `odev_read()` in
`seq_oss.c:152`
- **[Phase 5]** Write-side pattern at `seq_oss_rw.c:116`: `if (count <
ev_size) break;` (correct)
- **[Phase 6]** `git describe HEAD`: v6.18.44-1-gef4bf62bccf3c; Makefile
6.18.44
- **[Phase 6]** Buggy code present at lines 60-62 (verified by Read
tool)
- **[Phase 6]** `git show 611f538253d97 | git apply --check`: clean
apply
- **[Phase 6]** `git log stable/linux-6.18.y --grep="Reject reads"`:
empty; fix not in stable
- **[Phase 6]** `git branch --contains 611f538253d97`: master/all-next
only, not stable
- **[Phase 7]** `CONFIG_SND_SEQUENCER_OSS` in
`sound/core/seq/Kconfig:29` (tristate OSS sequencer module)
- **[Phase 8]** Traced failure modes: false EOF (count=8, ev_len=4) and
overrun (count=4, ev_len=8) from verified code paths
**YES**
sound/core/seq/oss/seq_oss_rw.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sound/core/seq/oss/seq_oss_rw.c b/sound/core/seq/oss/seq_oss_rw.c
index 111c792bc72ca..b7147ac78ee8b 100644
--- a/sound/core/seq/oss/seq_oss_rw.c
+++ b/sound/core/seq/oss/seq_oss_rw.c
@@ -57,7 +57,8 @@ snd_seq_oss_read(struct seq_oss_devinfo *dp, char __user *buf, int count)
break;
}
ev_len = ev_length(&rec);
- if (ev_len < count) {
+ if (count < ev_len) {
+ err = -EINVAL;
snd_seq_oss_readq_unlock(readq, flags);
break;
}
--
2.53.0
next prev parent reply other threads:[~2026-08-31 13:41 UTC|newest]
Thread overview: 74+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260831133314.4125787-1-sashal@kernel.org>
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] ALSA: es18xx: check control allocation before private data setup Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Add quirk for HP EliteBook 830 G8 (8AB8) to enable mute LEDs Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] ASoC: fs210x: Make cache write through again during resume Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Add quirk for HP 255 15.6 inch G9 Notebook PC Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Propagate write errors in generic mixer put callbacks Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Fix speakers on MECHREVO WUJIE Series Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] soundwire: only handle alert events when the peripheral is attached Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] ALSA: hda/conexant: Add pin config quirk for Lenovo IdeaPad Slim 5 16AKP10 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] ASoC: Intel: catpt: Complete coredump handling Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.12] soundwire: intel_auxdevice: Add cs42l43b to wake_capable_list Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.1] ALSA: usb-audio: Add quirk flags for SC13A Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Enable mute LED quirk for HP Laptop 15-dw0xxx Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Fix speakers on Alienware x16 R2 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda: Add Lenovo Legion 7i 16IAX7 17AA3874 quirk Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.6] ALSA: hda/realtek: Add quirk for HP Pavilion x360 Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.1] ALSA: hda/realtek: Add quirk for Lenovo Xiaoxin 14 GT Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18] ASoC: SOF: validate probe info element counts Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] ASoC: Intel: sof_sdw: append dai type to dai link name unconditionally Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: rockchip_pdm: Handle runtime PM resume failures in set_fmt Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] ASoC: mediatek: mt8365-afe-pcm: fix possible NULL-pointer dereferences in mt8365_afe_suspend() Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] ALSA: hda: cs35l41: imply SERIAL_MULTI_INSTANTIATE Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] ASoC/soundwire: Intel: reset the PCMSyCM registers in hda_sdw_bpt_close Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] ALSA: hda/ca0132: add QUIRK_GENERIC path for Gigabyte GA-Z170X-Gaming G1 Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rt5645: Perform the initial jack detect at probe Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Add quirk for Corsair Virtuoso (later revision) Sasha Levin
2026-08-31 13:24 ` Sasha Levin [this message]
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] ALSA: ice1724: Fix blocking open for independent surround PCMs Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ASoC: codecs: pcm3168a: Drop CONFIG_PM-conditional preproc directive Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] ASoC: codecs: rk3328: Use managed GPIO and clock helpers Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] ASoC: rt712-sdca: reset codec at io_init to fix silent headphone Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.6] ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14IRH8 Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] ALSA: usb-audio: qcom: Free QMI handle Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Add quirk for YAMAHA CDS3000 Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.12] ASoC: fsl-asoc-card: reduce WM8904 PLL ratio to meet frequency limit Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.1] ASoC: amd: yc: Add Alienware m15 R7 AMD to DMIC quirk table Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] ASoC: ti: omap3pandora: update board check to use DT compatible Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Add quirk for Infinix INBOOK X3 Slim Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] ALSA: hda/tas2781: clear cali_data.total_sz when calibration read fails Sasha Levin
2026-08-31 19:32 ` Philipp Oster
2026-09-01 12:25 ` Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] ALSA: hda/realtek: Add mute LED quirk for HP Laptop 14s-dr1xxx Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] ASoC: tas2781: Update default register address to TAS2563 Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-5.10] soundwire: validate DT compatible before parsing it Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek: Add quirk for Lenovo Yoga 7 16IAP7 Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usx2y: Drain pending US-428 pipe-4 output commands Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] ASoC: codecs: pcm3168a: Prevent regulator double-disable in S4 Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] ASoC: amd: yc: Add DMI quirk for HyperX OMEN Gaming Laptop 16-ap1xxx Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] ALSA: hda/realtek: Add HDA_CODEC_QUIRK for Samsung 750XBE/730XBE Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] ASoC: sdw_utils: Add missed component_name strings for TI amps Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] ALSA: usb-audio: Add dB map quirk for Razer Barracuda X 2.4 Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Add quirk for HP Dragonfly Folio G3 2-in-1 (103c:8a05) Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] soundwire: dmi-quirks: Disable ghost Realtek devices Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] ALSA: hda/tas2781: Fix device-0 reset issue and handle -EXDEV in block data processing Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda: cs35l56: Fail if wmfw file is missing Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek: Add mute LED quirk for HP Victus 16-e0xxx (MB 88ED) Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: spdif: Restore regcache cache-only mode on sync failure Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: Add quirk for Novation Mininova Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.1] ASoC: qcom: q6apm: return error code to consumers on failures Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Add CS35L41 I2C quirk for ASUS UM3405GA Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] ALSA: usb-audio: caiaq: validate EP1 reply lengths Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.6] ASoC: amd: yc: Add DMI quirk for HP Victus Laptop 16-e1xxx Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.12] ASoC: Intel: sof_sdw: Add quirks for new Dell laptops Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek - Add quirk for HP Victus 15-fa0xxx (MB 8A50) Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: rockchip_pdm: Reorder clock enable sequence Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: Fix headphone output on ASUS ROG Ally X Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] ALSA: hda/realtek: Add quirk for HP Victus 16-e0xxx (88EE) to enable mute LED Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ALSA: usb-audio: Add delay quirk for iBasso DC-Elite Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.6] soundwire: intel: Move suspend tracking from trigger to pm suspend Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ASoC: rt1320: run the initialisation preset on the first hardware init Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: ALC882: Fixup for Clevo P775TM1 Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] ALSA: seq: Remove arbitrary prioq insertion limit Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.15] ALSA: usb-audio: Add FIXED_RATE quirk for JBL Quantum650 Wireless Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-5.10] ALSA: hda/realtek: Add quirk for ASUS VivoBook X509DAP Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] ASoC: sof_sdw: Add a quirk for 0x17aa383c laptop using sidecar amps with cs42l43 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-249-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=cassiogabrielcontato@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=patches@lists.linux.dev \
--cc=perex@perex.cz \
--cc=stable@vger.kernel.org \
--cc=tiwai@suse.com \
--cc=tiwai@suse.de \
/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