All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] ALSA: Don't share mixer->urb with the FCP/scarlett2 notification endpoint
@ 2026-08-09 18:05 Geoffrey D. Bennett
  2026-08-09 18:06 ` [PATCH 1/2] ALSA: FCP: Use a private URB for the " Geoffrey D. Bennett
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Geoffrey D. Bennett @ 2026-08-09 18:05 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Takashi Iwai, linux-sound

Hi Takashi,

Both the FCP and scarlett2 drivers used mixer->urb for their
notification endpoint URB, but that field belongs to
snd_usb_mixer_status_create() and is managed by mixer.c. Sharing it
means the "already set up" check in the driver's init_notify() can be
satisfied by the status endpoint's URB, so the driver's own URB is
never submitted and the first command would crash in
wait_for_completion_timeout() on the still-zeroed cmd_done. mixer.c
can also kill, resubmit or free the URB from under the driver.

Give each driver its own URB in its private data. For scarlett2 this
also means taking over the free/suspend/resume handling that mixer.c
was doing for it.

Tested on an ISA C8X and a Scarlett 18i20 Gen 4 (FCP), and a Scarlett
4i4 Gen 3 and 4i4 Gen 4 (scarlett2) on 7.1.7, including suspend/resume
and configuration save on suspend.

Thanks,
Geoffrey

Geoffrey D. Bennett (2):
  ALSA: FCP: Use a private URB for the notification endpoint
  ALSA: scarlett2: Use a private URB for the notification endpoint

 sound/usb/fcp.c             | 38 +++++++-------
 sound/usb/mixer.c           |  6 +++
 sound/usb/mixer.h           |  2 +
 sound/usb/mixer_scarlett2.c | 98 ++++++++++++++++++++++++-------------
 4 files changed, 92 insertions(+), 52 deletions(-)

-- 
2.55.0


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

end of thread, other threads:[~2026-08-10 11:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-09 18:05 [PATCH 0/2] ALSA: Don't share mixer->urb with the FCP/scarlett2 notification endpoint Geoffrey D. Bennett
2026-08-09 18:06 ` [PATCH 1/2] ALSA: FCP: Use a private URB for the " Geoffrey D. Bennett
2026-08-09 18:06 ` [PATCH 2/2] ALSA: scarlett2: " Geoffrey D. Bennett
2026-08-10 11:37 ` [PATCH 0/2] ALSA: Don't share mixer->urb with the FCP/scarlett2 " Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.