The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Joshua Crofts <joshua.crofts1@gmail.com>
To: Paul Geurts <paul.geurts@prodrive-technologies.com>
Cc: <jic23@kernel.org>, <dlechner@baylibre.com>, <nuno.sa@analog.com>,
	<andy@kernel.org>, <linux-iio@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>, <tobias.sperling@softing.com>
Subject: Re: [PATCH] ti-ads7138: Disable STATS_EN bit while reading conversion results
Date: Fri, 19 Jun 2026 10:20:06 +0200	[thread overview]
Message-ID: <20260619102006.000007f2@gmail.com> (raw)
In-Reply-To: <20260619075646.4100193-1-paul.geurts@prodrive-technologies.com>

On Fri, 19 Jun 2026 09:56:46 +0200
Paul Geurts <paul.geurts@prodrive-technologies.com> wrote:

> The device might update channel data while it's read by the host,
> providing a data race. Disable the update of the channel stats before
> reading the values.
> 
> Signed-off-by: Paul Geurts <paul.geurts@prodrive-technologies.com>
> Fixes: 93a39542d3c3 ("iio: adc: Add driver for ADS7128 / ADS7138")
> ---

Don't forget to add the iio: prefix to the subject/commit title.

>  	switch (mask) {
>  	case IIO_CHAN_INFO_RAW:
> +		/* Disable statistics update so the value is not updated mid read */
> +		ret = ads7138_i2c_clear_bit(data->client, ADS7138_REG_GENERAL_CFG,
> +					    ADS7138_GENERAL_CFG_STATS_EN);

You're not checking the value of ret here :(

>  		ret = ads7138_i2c_read_block(data->client,
>  					     ADS7138_REG_RECENT_LSB_CH(chan->channel),
>  					     values, ARRAY_SIZE(values));

Additionally, since you've added a i2c_set_bit function below,
you're not checking the return value of the i2c_read_block function.
Instead of returning the return value if an error occurs, the values
variable will remain uninitialized, causing a kernel stack leak.

> +		/* Enable statistics update after read */
> +		ret = ads7138_i2c_set_bit(data->client, ADS7138_REG_GENERAL_CFG,
> +					  ADS7138_GENERAL_CFG_STATS_EN);
>  		if (ret)
>  			return ret;
>  

-- 
Kind regards

CJD

      reply	other threads:[~2026-06-19  8:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-19  7:56 [PATCH] ti-ads7138: Disable STATS_EN bit while reading conversion results Paul Geurts
2026-06-19  8:20 ` Joshua Crofts [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=20260619102006.000007f2@gmail.com \
    --to=joshua.crofts1@gmail.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=paul.geurts@prodrive-technologies.com \
    --cc=tobias.sperling@softing.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