From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Alex Natalsson <harmoniesworlds@gmail.com>,
Kai Vehmanen <kai.vehmanen@linux.intel.com>,
Bard Liao <yung-chuan.liao@linux.intel.com>,
Ranjani Sridharan <ranjani.sridharan@linux.intel.com>,
Takashi Iwai <tiwai@suse.de>, Mark Brown <broonie@kernel.org>,
linux-sound@vger.kernel.org,
ALSA Development Mailing List <alsa-devel@alsa-project.org>
Subject: Re: Sound not working after commit bbf7d3b1c4f40eb02dd1dffb500ba00b0bff0303 on Amlogic A311D device
Date: Fri, 1 Jul 2022 11:42:27 -0500 [thread overview]
Message-ID: <c4d32547-5f99-595e-21d3-fdb22a1af237@linux.intel.com> (raw)
In-Reply-To: <CADs9LoOOOXVC0p8R=b1y+Kfb1+ESEyMaVe9eoW=F5gdp0_GitQ@mail.gmail.com>
On 7/1/22 10:47, Alex Natalsson wrote:
>> Wow. So there's already a problem with a config and we made it worse...
>>
>> Can you try with this hack attached, just to see what causes the kernel
>> oops? Thanks!
>
> Hello friends)
> I modified your hack a little. And I don't understanding what is fe
> and be, but I see what problem apearing due to be_substream points to
> 0.
> The
> "if (!fe_substream->pcm->nonatomic && be_substream->pcm->nonatomic) {"
> at result gives the error...
>
> * I am sorry what delete recipients in the previous send((
Interesting, thanks for the test results!
[ 108.090732] dpcm_be_connect: start
[ 108.090734] dpcm_be_connect: 1
[ 108.090735] dpcm_be_connect: 3
[ 108.090737] dpcm_be_connect: 3.1
[ 108.090738] dpcm_be_connect: 3.1 fe_substream_addr=128378368
[ 108.090740] dpcm_be_connect: 3.1 be_substream_addr=0
[ 108.090750] Unable to handle kernel NULL pointer dereference at
virtual address 0000000000000000
Indeed it looks like we are de-referencing a NULL pointer, be_substream
isn't initialized.
we could add a simple error check as in the diff below but I don't know
what the root cause might be
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
index a827cc3c158a..093b98b0e394 100644
--- a/sound/soc/soc-pcm.c
+++ b/sound/soc/soc-pcm.c
@@ -1203,6 +1203,15 @@ static int dpcm_be_connect(struct
snd_soc_pcm_runtime *fe,
fe_substream = snd_soc_dpcm_get_substream(fe, stream);
be_substream = snd_soc_dpcm_get_substream(be, stream);
+ if (!fe_substream) {
+ dev_err(fe->dev, "%s: fe_substream not initialized\n",
__func__);
+ return -EINVAL;
+ }
+ if (!be_substream) {
+ dev_err(be->dev, "%s: be_substream not initialized\n",
__func__);
+ return -EINVAL;
+ }
+
if (!fe_substream->pcm->nonatomic && be_substream->pcm->nonatomic) {
dev_err(be->dev, "%s: FE is atomic but BE is nonatomic,
invalid configuration\n",
__func__);
next prev parent reply other threads:[~2022-07-01 16:43 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CADs9LoPZH_D+eJ9qjTxSLE5jGyhKsjMN7g2NighZ16biVxsyKw@mail.gmail.com>
2022-06-27 15:12 ` Sound not working after commit bbf7d3b1c4f40eb02dd1dffb500ba00b0bff0303 on Amlogic A311D device Pierre-Louis Bossart
2022-06-27 16:52 ` Mark Brown
[not found] ` <CADs9LoN-L0X1Dr1sP2K7xrcWm7dpHW6MhF47c2eBB0moLNnPRQ@mail.gmail.com>
2022-06-28 22:47 ` Pierre-Louis Bossart
[not found] ` <CADs9LoOZjK=cUuNSEELtgxYoA+yHVFKM_Y9YLcY74smqx8XsjQ@mail.gmail.com>
[not found] ` <c554b69c-0c73-158d-85d8-95a0375babeb@linux.intel.com>
2022-07-01 15:47 ` Alex Natalsson
2022-07-01 16:42 ` Pierre-Louis Bossart [this message]
2022-07-01 22:17 ` Alex Natalsson
2022-07-09 11:19 ` Alex Natalsson
2022-07-11 14:33 ` Pierre-Louis Bossart
2022-07-12 8:00 ` Péter Ujfalusi
2022-07-12 9:29 ` Takashi Iwai
2022-07-12 13:05 ` Alex Natalsson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c4d32547-5f99-595e-21d3-fdb22a1af237@linux.intel.com \
--to=pierre-louis.bossart@linux.intel.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=harmoniesworlds@gmail.com \
--cc=kai.vehmanen@linux.intel.com \
--cc=linux-sound@vger.kernel.org \
--cc=ranjani.sridharan@linux.intel.com \
--cc=tiwai@suse.de \
--cc=yung-chuan.liao@linux.intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox