From: Jonathan Cameron <jic23@kernel.org>
To: David Lechner <dlechner@baylibre.com>
Cc: "Matti Vaittinen" <mazziesaccount@gmail.com>,
"Nuno Sá" <noname.nuno@gmail.com>,
linux-iio@vger.kernel.org,
"Antoniu Miclaus" <antoniu.miclaus@analog.com>,
"Jonathan Cameron" <Jonathan.Cameron@huawei.com>
Subject: Re: [PATCH 5/8] iio: accel: kx022a: Switch to sparse friendly iio_device_claim/release_direct()
Date: Wed, 19 Feb 2025 19:05:00 +0000 [thread overview]
Message-ID: <20250219190500.01457211@jic23-huawei> (raw)
In-Reply-To: <2ad4ca67-5a70-4b7b-b744-d9bd92ce386a@baylibre.com>
On Wed, 19 Feb 2025 09:25:00 -0600
David Lechner <dlechner@baylibre.com> wrote:
> On 2/19/25 6:21 AM, Matti Vaittinen wrote:
> > On 19/02/2025 12:51, Nuno Sá wrote:
> >> On Wed, 2025-02-19 at 07:36 +0200, Matti Vaittinen wrote:
> >>> On 18/02/2025 17:42, David Lechner wrote:
> >>>> On 2/18/25 1:39 AM, Matti Vaittinen wrote:
> >>>>> On 17/02/2025 16:01, Jonathan Cameron wrote:
> >>>>>> From: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> >>>>>>
> >>>>>> These new functions allow sparse to find failures to release
> >>>>>> direct mode reducing chances of bugs over the claim_direct_mode()
> >>>>>> functions that are deprecated.
> >>>>>>
> >>>>>> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
> >>>>>> Cc: Matti Vaittinen <mazziesaccount@gmail.com>
> >>>>>> ---
> >>>>>> drivers/iio/accel/kionix-kx022a.c | 14 ++++++--------
> >>>>>> 1 file changed, 6 insertions(+), 8 deletions(-)
> >>>>>>
> >>>>>> diff --git a/drivers/iio/accel/kionix-kx022a.c
> >>>>>> b/drivers/iio/accel/kionix-kx022a.c
> >>>>>> index 727e007c5fc1..07dcf5f0599f 100644
> >>>>>> --- a/drivers/iio/accel/kionix-kx022a.c
> >>>>>> +++ b/drivers/iio/accel/kionix-kx022a.c
> >>>>>> @@ -577,13 +577,12 @@ static int kx022a_write_raw(struct iio_dev *idev,
> >>>>>> * issues if users trust the watermark to be reached within known
> >>>>>> * time-limit).
> >>>>>> */
> >>>>>> - ret = iio_device_claim_direct_mode(idev);
> >>>>>> - if (ret)
> >>>>>> - return ret;
> >>>>>> + if (!iio_device_claim_direct(idev))
> >>>>>> + return -EBUSY;
> >>>>>
> >>>>> Not really in the scope of this review - but in my opinion the logic of
> >>>>> this check is terribly counter intuitive. I mean,
> >>>>>
> >>>>>> + if (iio_device_claim_direct(idev))
> >>>>>> + return -EBUSY;
> >>>>
> >>>> I'm curious how you read this then. I read this as:
> >>>>
> >>>> "If claiming direct mode succeeded, then return an error!"
> >>>
> >>> I am used to seeing a pattern where function returning zero indicates a
> >>> success. I have no statistics but I believe this is true for a vast
> >>> majority of functions in the kernel. I believe this was the case with
> >>> the old 'iio_device_claim_direct_mode(idev)' too.
> >>>
> >>
> >> Fair enough... Note though this is returning a boolean where true makes total
> >> sense for the "good" case. I do agree it's not super clear just by reading the
> >> code that the API is supposed to return a boolean.
> >
> > Exactly. Just seeing the call in code was not obvious to me. It required finding the prototype to understand what happens.
> >
> > Anyways, I guess this discussion is out of the scope of this patch and if no one else sees this important enough to go and change the iio_device_claim_direct() - then I am fine with this patch. So, with a bit of teeth grinding:
> >
> > Reviewed-by: Matti Vaittinen <mazziesaccount@gmail.com>
> >
> > Yours,
> > -- Matti
> >
> >
>
> Would a name like iio_device_try_claim_direct_mode() make it more
> obvious that it returned a bool instead of int?
FWIW I'd consider this a reasonable change if people in general
find it more intuitive. Conveys to those not familiar with the
fun of IIO that failure is something we kind of expect to happen.
Slightly messy to change the patches already applied to my
tree but cleaner to do so now than later as I haven't pushed
the branch out as togreg yet (it's just the testing branch
for 0-day).
Jonathan
>
next prev parent reply other threads:[~2025-02-19 19:05 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-17 14:01 [PATCH 0/8] IIO: Accelerometers: Sparse friendly claim of direct mode Jonathan Cameron
2025-02-17 14:01 ` [PATCH 1/8] iio: accel: mma8452: Ensure error return on failure to matching oversampling ratio Jonathan Cameron
2025-02-17 14:01 ` [PATCH 2/8] iio: accel: mma8452: Factor out guts of write_raw() to simplify locking Jonathan Cameron
2025-02-17 14:01 ` [PATCH 3/8] iio: accel: mma8452: Switch to sparse friendly iio_device_claim/release_direct() Jonathan Cameron
2025-02-17 14:01 ` [PATCH 4/8] iio: accel: kx022a: Factor out guts of write_raw() to allow direct returns Jonathan Cameron
2025-02-18 7:32 ` Matti Vaittinen
2025-02-17 14:01 ` [PATCH 5/8] iio: accel: kx022a: Switch to sparse friendly iio_device_claim/release_direct() Jonathan Cameron
2025-02-18 7:39 ` Matti Vaittinen
2025-02-18 15:42 ` David Lechner
2025-02-19 5:36 ` Matti Vaittinen
2025-02-19 10:51 ` Nuno Sá
2025-02-19 12:21 ` Matti Vaittinen
2025-02-19 15:25 ` David Lechner
2025-02-19 19:05 ` Jonathan Cameron [this message]
2025-02-20 6:31 ` Matti Vaittinen
2025-02-20 17:49 ` Jonathan Cameron
2025-02-20 6:26 ` Matti Vaittinen
2025-02-19 16:06 ` Jonathan Cameron
2025-02-17 14:01 ` [PATCH 6/8] iio: accel: msa311: Fix failure to release runtime pm if direct mode claim fails Jonathan Cameron
2025-02-17 14:01 ` [PATCH 7/8] iio: accel: msa311: Switch to sparse friendly iio_device_claim/release_direct() Jonathan Cameron
2025-02-17 14:01 ` [PATCH 8/8] iio: accel: " Jonathan Cameron
2025-02-17 22:21 ` [PATCH 0/8] IIO: Accelerometers: Sparse friendly claim of direct mode David Lechner
2025-02-22 12:42 ` Jonathan Cameron
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=20250219190500.01457211@jic23-huawei \
--to=jic23@kernel.org \
--cc=Jonathan.Cameron@huawei.com \
--cc=antoniu.miclaus@analog.com \
--cc=dlechner@baylibre.com \
--cc=linux-iio@vger.kernel.org \
--cc=mazziesaccount@gmail.com \
--cc=noname.nuno@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