Linux Sound subsystem development
 help / color / mirror / Atom feed
* [PATCH 00/20] ASoC: Intel: Use guard() for mutex & spin locks
@ 2026-06-11 11:58 phucduc.bui
  2026-06-11 11:58 ` [PATCH 01/20] ASoC: Intel: catpt: ipc: " phucduc.bui
                   ` (20 more replies)
  0 siblings, 21 replies; 25+ messages in thread
From: phucduc.bui @ 2026-06-11 11:58 UTC (permalink / raw)
  To: Mark Brown, Liam Girdwood, Cezary Rojewski
  Cc: Jaroslav Kysela, Takashi Iwai, Peter Ujfalusi, Bard Liao,
	Kai Vehmanen, Pierre-Louis Bossart, linux-sound, linux-kernel,
	bui duc phuc

From: bui duc phuc <phucduc.bui@gmail.com>

Hi all,

This series converts mutex and spinlock handling in Intel ASoC drivers
to use guard()/scoped_guard() helpers.

Most patches are straightforward conversions. A few patches include
small cleanup changes as part of the conversion process; these are
documented in the individual commit messages. Overall, the series is
intended to simplify the code and cleanup paths, with no behavioral
changes to the affected functions.

The series has been compile-tested only.

Best regards,
Phuc

bui duc phuc (20):
  ASoC: Intel: catpt: ipc: Use guard() for mutex & spin locks
  ASoC: Intel: catpt: dsp: Use guard() for mutex locks
  ASoC: Intel: avs: utils: Use guard() for mutex locks
  ASoC: Intel: avs: probes: Use guard() for spin locks
  ASoC: Intel: avs: pcm: Use guard() for mutex & spin locks
  ASoC: Intel: avs: path: Use guard() for mutex & spin locks
  ASoC: Intel: avs: loader: Use guard() for mutex locks
  ASoC: Intel: avs: ipc: Use guard() for mutex & spin locks
  ASoC: Intel: avs: icl: Use guard() for spin locks
  ASoC: Intel: avs: debugfs: Use guard() for spin locks
  ASoC: Intel: avs: debug: Use guard() for spin locks
  ASoC: Intel: avs: core: Use guard() for mutex & spin locks
  ASoC: Intel: avs: control: Use guard() for spin locks
  ASoC: Intel: avs: apl: Use guard() for spin locks
  ASoC: Intel: atom: sst_stream: Use guard() for mutex locks
  ASoC: Intel: atom: sst_pvt: Use guard() for mutex & spin locks
  ASoC: Intel: atom: sst: Use guard() for spin locks
  ASoC: Intel: atom: sst-atom-controls: Use guard() for mutex locks
  ASoC: Intel: atom: sst-mfld-platform-pcm: Use guard() for mutex & spin
    locks
  ASoC: Intel: atom: sst_ipc: Use guard() for spin locks

 sound/soc/intel/atom/sst-atom-controls.c     |  85 +++++++--------
 sound/soc/intel/atom/sst-mfld-platform-pcm.c |  51 ++++-----
 sound/soc/intel/atom/sst/sst.c               |  37 ++++---
 sound/soc/intel/atom/sst/sst_ipc.c           |   9 +-
 sound/soc/intel/atom/sst/sst_pvt.c           |  19 ++--
 sound/soc/intel/atom/sst/sst_stream.c        |  52 ++++-----
 sound/soc/intel/avs/apl.c                    |   7 +-
 sound/soc/intel/avs/control.c                |   7 +-
 sound/soc/intel/avs/core.c                   |  11 +-
 sound/soc/intel/avs/debug.h                  |   9 +-
 sound/soc/intel/avs/debugfs.c                |  18 ++--
 sound/soc/intel/avs/icl.c                    |  10 +-
 sound/soc/intel/avs/ipc.c                    | 105 +++++++++----------
 sound/soc/intel/avs/loader.c                 |  14 +--
 sound/soc/intel/avs/path.c                   |  39 +++----
 sound/soc/intel/avs/pcm.c                    |  21 ++--
 sound/soc/intel/avs/probes.c                 |  11 +-
 sound/soc/intel/avs/utils.c                  |  39 +++----
 sound/soc/intel/catpt/dsp.c                  |  11 +-
 sound/soc/intel/catpt/ipc.c                  |  12 +--
 20 files changed, 231 insertions(+), 336 deletions(-)

-- 
2.43.0


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

end of thread, other threads:[~2026-06-11 19:34 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-11 11:58 [PATCH 00/20] ASoC: Intel: Use guard() for mutex & spin locks phucduc.bui
2026-06-11 11:58 ` [PATCH 01/20] ASoC: Intel: catpt: ipc: " phucduc.bui
2026-06-11 18:44   ` Cezary Rojewski
2026-06-11 11:58 ` [PATCH 02/20] ASoC: Intel: catpt: dsp: Use guard() for mutex locks phucduc.bui
2026-06-11 18:39   ` Cezary Rojewski
2026-06-11 11:58 ` [PATCH 03/20] ASoC: Intel: avs: utils: " phucduc.bui
2026-06-11 11:58 ` [PATCH 04/20] ASoC: Intel: avs: probes: Use guard() for spin locks phucduc.bui
2026-06-11 19:34   ` Cezary Rojewski
2026-06-11 11:58 ` [PATCH 05/20] ASoC: Intel: avs: pcm: Use guard() for mutex & " phucduc.bui
2026-06-11 11:58 ` [PATCH 06/20] ASoC: Intel: avs: path: " phucduc.bui
2026-06-11 11:58 ` [PATCH 07/20] ASoC: Intel: avs: loader: Use guard() for mutex locks phucduc.bui
2026-06-11 11:58 ` [PATCH 08/20] ASoC: Intel: avs: ipc: Use guard() for mutex & spin locks phucduc.bui
2026-06-11 11:58 ` [PATCH 09/20] ASoC: Intel: avs: icl: Use guard() for " phucduc.bui
2026-06-11 11:58 ` [PATCH 10/20] ASoC: Intel: avs: debugfs: " phucduc.bui
2026-06-11 11:58 ` [PATCH 11/20] ASoC: Intel: avs: debug: " phucduc.bui
2026-06-11 11:58 ` [PATCH 12/20] ASoC: Intel: avs: core: Use guard() for mutex & " phucduc.bui
2026-06-11 11:58 ` [PATCH 13/20] ASoC: Intel: avs: control: Use guard() for " phucduc.bui
2026-06-11 11:58 ` [PATCH 14/20] ASoC: Intel: avs: apl: " phucduc.bui
2026-06-11 11:58 ` [PATCH 15/20] ASoC: Intel: atom: sst_stream: Use guard() for mutex locks phucduc.bui
2026-06-11 11:58 ` [PATCH 16/20] ASoC: Intel: atom: sst_pvt: Use guard() for mutex & spin locks phucduc.bui
2026-06-11 11:58 ` [PATCH 17/20] ASoC: Intel: atom: sst: Use guard() for " phucduc.bui
2026-06-11 11:58 ` [PATCH 18/20] ASoC: Intel: atom: sst-atom-controls: Use guard() for mutex locks phucduc.bui
2026-06-11 11:59 ` [PATCH 19/20] ASoC: Intel: atom: sst-mfld-platform-pcm: Use guard() for mutex & spin locks phucduc.bui
2026-06-11 11:59 ` [PATCH 20/20] ASoC: Intel: atom: sst_ipc: Use guard() for " phucduc.bui
2026-06-11 19:04 ` [PATCH 00/20] ASoC: Intel: Use guard() for mutex & " Cezary Rojewski

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