mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [GIT PULL] sound fixes for 7.3-rc2
@ 2026-09-04 14:45 Takashi Iwai
  2026-09-04 16:30 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Takashi Iwai @ 2026-09-04 14:45 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Linux Sound Mailing List, Linux Kernel Mailing List

Linus,

please pull sound fixes for v7.3-rc2 from:

  git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-7.3-rc2

The topmost commit is 3b26ceef88c110f4d188387cffa0df78657be904

----------------------------------------------------------------

sound fixes for 7.3-rc2

A collection of small fixes since 7.3-rc1.  Quite a few fixes are
for ALSA core for issues that have been detected by the things you
know well.  Additionally a series of hardening for runtime PM, and
usual quirk updates, and some other misc driver fixes are included.

* Core:
- Fixes for PCM races
- UMP parser NULL dereference fix
- Fix error handling in rawmidi ioctl

* USB- and HD-audio:
- Implement missing runtime PM guards across multiple interfaces
- Fix for OOB access in US-122L MIDI driver
- Double-free fix for CAIAQ driver
- Quirks for HD-audio Realtek & Cirrus codecs, Conexant S3-resume,
  USB Audient devices

* Others:
- Fix of logical mistakes in dummy driver mixer and selftest code
- Lock init fix in the legacy harmony driver

----------------------------------------------------------------

HyeongJun An (4):
      ALSA: usb-audio: fix OOB write in snd_usbmidi_us122l_output()
      ALSA: dummy: Report a change when one capture switch channel moves
      ALSA: rawmidi: Return the error from snd_rawmidi_input_params()
      selftests/alsa: Fix the step check for INTEGER controls

Jonne Vuorela (1):
      ALSA: hda/cs420x: Add CS4208 fixup for MacBookAir 7,2

Oleksandr Kovalov (1):
      ALSA: hda/realtek: Fix cold-boot headset misdetection on Acer Aspire A515-57G

Peter Drabik (1):
      ALSA: usb-audio: Add mixer map quirk for Audient iD24

Qingyu Zhang (1):
      ALSA: ump: do not touch legacy_rmidi before it exists

Riku Matsumura (1):
      ALSA: hda/realtek: Add quirk for VAIO VJS131

Runyu Xiao (1):
      ALSA: harmony: initialize locks before requesting IRQ

Takashi Iwai (2):
      ALSA: pcm: Fix race between non-atomic ops and trigger-start
      ALSA: caiaq: Fix potential double-free at error path

Will Porter (6):
      ALSA: usb-audio: Add PM guard to Studio 1810c controls
      ALSA: usb-audio: Add PM guards to US-16x08 transfers
      ALSA: usb-audio: Add PM guard to Scarlett meter reads
      ALSA: usb-audio: Guard Scarlett2 protocol transfers
      ALSA: usb-audio: Add PM guards to RME Digiface controls
      ALSA: usb-audio: Guard FCP protocol transfers

Xu Rao (1):
      ALSA: hda: restore MFG widget enumeration after core split

Yilin Zhang (1):
      ALSA: pcm: Serialize PCM mmap with buffer reallocation to fix page UAF

Zhang Heng (2):
      ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 9 14ILL10
      ALSA: hda/realtek: Add quirk for Acer Predator PHN16-72

feng liu (1):
      ALSA: hda/conexant:Fix abnormal Mic/Speaker functionality on SN6140 after S3 wake-up

---
 sound/core/pcm_native.c                   | 37 +++++++++++++++++++++--------
 sound/core/rawmidi.c                      |  2 +-
 sound/core/ump.c                          |  4 ++++
 sound/drivers/dummy.c                     |  2 +-
 sound/hda/codecs/cirrus/cs420x.c          |  2 ++
 sound/hda/codecs/conexant.c               | 20 ++++++++++++++++
 sound/hda/codecs/realtek/alc269.c         | 39 ++++++++++++++++++++++++++++++-
 sound/hda/core/device.c                   |  5 ++--
 sound/parisc/harmony.c                    |  6 ++---
 sound/usb/caiaq/audio.c                   | 10 ++++----
 sound/usb/fcp.c                           |  8 +++++++
 sound/usb/midi.c                          |  2 ++
 sound/usb/mixer_maps.c                    | 18 ++++++++++++++
 sound/usb/mixer_quirks.c                  |  8 +++++++
 sound/usb/mixer_s1810c.c                  |  8 +++++++
 sound/usb/mixer_scarlett.c                |  4 ++++
 sound/usb/mixer_scarlett2.c               | 36 +++++++++++++++++++++++-----
 sound/usb/mixer_us16x08.c                 |  7 ++++++
 tools/testing/selftests/alsa/mixer-test.c |  4 ++--
 19 files changed, 191 insertions(+), 31 deletions(-)


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] sound fixes for 7.3-rc2
  2026-09-04 14:45 [GIT PULL] sound fixes for 7.3-rc2 Takashi Iwai
@ 2026-09-04 16:30 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2026-09-04 16:30 UTC (permalink / raw)
  To: Takashi Iwai
  Cc: Linus Torvalds, Linux Sound Mailing List, Linux Kernel Mailing List

The pull request you sent on Fri, 04 Sep 2026 16:45:17 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git tags/sound-7.3-rc2

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/36ec09e2637c3430acb8ec8fc3c303d9f1a24837

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-09-04 16:31 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-04 14:45 [GIT PULL] sound fixes for 7.3-rc2 Takashi Iwai
2026-09-04 16:30 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®