From: Andy Shevchenko <andriy.shevchenko@intel.com>
To: Salah Triki <salah.triki@gmail.com>
Cc: "Jonathan Cameron" <jic23@kernel.org>,
"David Lechner" <dlechner@baylibre.com>,
"Nuno Sá" <nuno.sa@analog.com>,
"Andy Shevchenko" <andy@kernel.org>,
linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] iio: lmp91000: fix probe order and cleanup paths
Date: Wed, 6 May 2026 11:18:56 +0300 [thread overview]
Message-ID: <afr5cCLrpiMRaPe0@ashevche-desk.local> (raw)
In-Reply-To: <afr5K9aEfOKUJm4Z@ashevche-desk.local>
On Wed, May 06, 2026 at 11:17:51AM +0300, Andy Shevchenko wrote:
> On Tue, May 05, 2026 at 08:46:24PM +0100, Salah Triki wrote:
> > Fix the initialization order in lmp91000_probe where the immutable trigger
>
> lmp91000_probe()
>
> > is set before data->cb_buffer is initialized, which would cause a NULL
> > pointer dereference.
> >
> > Also, correct the cleanup labels in the error path to properly unregister
> > the trigger before performing the triggered buffer cleanup, following the
> > standard LIFO (Last-In-First-Out) resource release order.
...
> > + data->cb_buffer = iio_channel_get_all_cb(dev, &lmp91000_buffer_cb,
> > + indio_dev);
>
> I would go with a single line here.
>
> > +
>
> Despite being in the original code, please drop this unneeded blank line.
>
> > + if (IS_ERR(data->cb_buffer)) {
> > + if (PTR_ERR(data->cb_buffer) == -ENODEV)
> > + ret = -EPROBE_DEFER;
> > + else
> > + ret = PTR_ERR(data->cb_buffer);
> > +
> > + goto error_unreg_buffer;
> > + }
On top of that fix the Subject as Joshua suggested in the other patch.
--
With Best Regards,
Andy Shevchenko
prev parent reply other threads:[~2026-05-06 8:19 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-05 19:46 [PATCH] iio: lmp91000: fix probe order and cleanup paths Salah Triki
2026-05-06 8:17 ` Andy Shevchenko
2026-05-06 8:18 ` Andy Shevchenko [this message]
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=afr5cCLrpiMRaPe0@ashevche-desk.local \
--to=andriy.shevchenko@intel.com \
--cc=andy@kernel.org \
--cc=dlechner@baylibre.com \
--cc=jic23@kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=nuno.sa@analog.com \
--cc=salah.triki@gmail.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