Message ID | 20211207173745.15850-2-pierre-louis.bossart@linux.intel.com |
---|---|
State | Accepted |
Commit | d8a9c6e1f6766a16cf02b4e99a629f3c5512c183 |
Headers | show |
Series | ASoC : soc-pcm: fix trigger race conditions with shared BE | expand |
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c index 3b4412183344..f66808dfb508 100644 --- a/sound/soc/soc-pcm.c +++ b/sound/soc/soc-pcm.c @@ -1113,7 +1113,7 @@ static int dpcm_be_connect(struct snd_soc_pcm_runtime *fe, return 0; } - dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_KERNEL); + dpcm = kzalloc(sizeof(struct snd_soc_dpcm), GFP_ATOMIC); if (!dpcm) return -ENOMEM;