Skip to content

Commit

Permalink
ALSA: hda: enable regmap internal locking
Browse files Browse the repository at this point in the history
This reverts commit 42ec336 ("ALSA: hda: Disable regmap
internal locking").

Without regmap locking, there is a race between snd_hda_codec_amp_init()
and PM callbacks issuing regcache_sync(). This was caught by
following kernel warning trace:

<4> [358.080081] WARNING: CPU: 2 PID: 4157 at drivers/base/regmap/regcache.c:498 regcache_cache_only+0xf5/0x130
[...]
<4> [358.080148] Call Trace:
<4> [358.080158]  snd_hda_codec_amp_init+0x4e/0x100 [snd_hda_codec]
<4> [358.080169]  snd_hda_codec_amp_init_stereo+0x40/0x80 [snd_hda_codec]

Suggested-by: Takashi Iwai <tiwai@suse.de>
BugLink: https://gitlab.freedesktop.org/drm/intel/issues/592
Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
Link: https://lore.kernel.org/r/20200108180856.5194-1-kai.vehmanen@linux.intel.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Kai Vehmanen authored and Takashi Iwai committed Jan 8, 2020
1 parent 54a6a7d commit 8e85def
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion sound/hda/hdac_regmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,6 @@ static const struct regmap_config hda_regmap_cfg = {
.reg_write = hda_reg_write,
.use_single_read = true,
.use_single_write = true,
.disable_locking = true,
};

/**
Expand Down

0 comments on commit 8e85def

Please sign in to comment.