[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <312061ed-61d6-4e2f-a180-8e8c85573e31@linaro.org>
Date: Mon, 21 Mar 2022 07:18:57 -0500
From: Alex Elder <elder@...aro.org>
To: Jakob Koschel <jakobkoschel@...il.com>,
Dan Carpenter <dan.carpenter@...cle.com>
Cc: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
greybus-dev@...ts.linaro.org, linux-staging@...ts.linux.dev,
Johan Hovold <johan@...nel.org>, Alex Elder <elder@...nel.org>,
Mike Rapport <rppt@...nel.org>,
Brian Johannesmeyer <bjohannesmeyer@...il.com>,
Cristiano Giuffrida <c.giuffrida@...nl>,
"Bos, H.J." <h.j.bos@...nl>
Subject: Re: [greybus-dev] Re: [PATCH] staging: greybus: codecs: fix type
confusion with dedicated list iterator variable
On 3/21/22 4:27 AM, Jakob Koschel wrote:
>
I just released some messages that were marked as spam. So
this looks to me like it's already been seen on the list.
I'm not sure why this happens but if it seems like deja vu,
you're not imagining things. Please know that this could
happen from time to time, but I'll see if I can find out
how to avoid it.
-Alex
>> On 21. Mar 2022, at 10:21, Dan Carpenter <dan.carpenter@...cle.com> wrote:
>>
>> On Mon, Mar 21, 2022 at 10:06:13AM +0100, Jakob Koschel wrote:
>>>
>>>> On 21. Mar 2022, at 09:48, Dan Carpenter <dan.carpenter@...cle.com> wrote:
>>>>
>>>> The subject says that it fixes a bug but it does not.
>>>
>>> Thank you for your review!
>>>
>>> I don't agree that this doesn't fix a bug:
>>>
>>>> + }
>>>> }
>>>> if (!data) {
>>>> - dev_err(dai->dev, "%s:%s DATA connection missing\n",
>>>> - dai->name, module->name);
>>>
>>> Using 'module' when data == NULL is *guaranteed* to be a type confused
>>> bogus pointer. It fundamentally can never be correct.
>>
>> Ah. I did not read all the way to the end of the patch.
>>
>> The bugfix needs to be sent as it's own patch. Just the one liner. It
>> needs a fixes tag as well.
>>
>> [PATCH] staging: greybus: fix Oops in error message
>>
>> The "module" pointer is invalid here. It's the list iterator and we
>> exited the loop without finding a valid entry.
>>
>> Fixes: 6dd67645f22c ("greybus: audio: Use single codec driver registration")
>> Signed-off-by: You
>>
>> if (!data) {
>> - dev_err(dai->dev, "%s:%s DATA connection missing\n",
>> - dai->name, module->name);
>> + dev_err(dai->dev, "%s DATA connection missing\n",
>> + dai->name);
>> mutex_unlock(&codec->lock);
>>
>> We're happy to apply the other stuff as well, but we don't mix cleanups
>> and bug fixes like that.
>
> ok great, I'll separate and resubmit both. Thanks!
>
>>
>> regards,
>> dan carpenter
>
> Jakob
>
> _______________________________________________
> greybus-dev mailing list -- greybus-dev@...ts.linaro.org
> To unsubscribe send an email to greybus-dev-leave@...ts.linaro.org
Powered by blists - more mailing lists