The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Jon Hunter <jonathanh@nvidia.com>
To: Saurav Sachidanand <sauravsc@amazon.com>,
	wsa+renesas@sang-engineering.com
Cc: Laxman Dewangan <ldewangan@nvidia.com>,
	Dmitry Osipenko <digetx@gmail.com>,
	Andi Shyti <andi.shyti@kernel.org>,
	Thierry Reding <thierry.reding@kernel.org>,
	Kartik Rajput <kkartik@nvidia.com>,
	Akhil R <akhilrajeev@nvidia.com>,
	linux-i2c@vger.kernel.org, linux-tegra@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/1] i2c: tegra: fix error handling in tegra_i2c_xfer()
Date: Thu, 7 May 2026 08:23:39 +0100	[thread overview]
Message-ID: <550181b1-7612-4b01-92d9-3257bb488d8d@nvidia.com> (raw)
In-Reply-To: <20260506195319.44810-1-sauravsc@amazon.com>


On 06/05/2026 20:53, Saurav Sachidanand wrote:
> Fix two bugs in the SW mutex path introduced by commit 6077cfd716fb
> ("i2c: tegra: Add support for SW mutex register"):
> 
> 1. If tegra_i2c_mutex_lock() fails, the function returns without calling
>     pm_runtime_put(), leaking the runtime PM reference acquired by the
>     preceding pm_runtime_get_sync(). Add the missing pm_runtime_put()
>     before returning.
> 
> 2. tegra_i2c_mutex_unlock() unconditionally overwrites ret, which may
>     already hold a transfer error from tegra_i2c_xfer_msg(). If the
>     transfer failed but the unlock succeeds, the error is silently lost
>     and the function incorrectly reports success. Use a separate variable
>     for the unlock return value and preserve error priority:
>     transfer error > unlock error > message count.
> 
> Fixes: 6077cfd716fb ("i2c: tegra: Add support for SW mutex register")

Although this is fixing issues associated with one patch, this is fixing 
two different issues and so I think that this should be split into 2 
patches.

> Signed-off-by: Saurav Sachidanand <sauravsc@amazon.com>
> ---
>   drivers/i2c/busses/i2c-tegra.c | 10 ++++++----
>   1 file changed, 6 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/i2c/busses/i2c-tegra.c b/drivers/i2c/busses/i2c-tegra.c
> index 9fd5ade774a0b..704942d10d69d 100644
> --- a/drivers/i2c/busses/i2c-tegra.c
> +++ b/drivers/i2c/busses/i2c-tegra.c
> @@ -1656,7 +1656,7 @@ static int tegra_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
>   			  int num)
>   {
>   	struct tegra_i2c_dev *i2c_dev = i2c_get_adapdata(adap);
> -	int i, ret;
> +	int i, ret, ret2;
>   
>   	ret = pm_runtime_get_sync(i2c_dev->dev);
>   	if (ret < 0) {
> @@ -1666,8 +1666,10 @@ static int tegra_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
>   	}
>   
>   	ret = tegra_i2c_mutex_lock(i2c_dev);
> -	if (ret)
> +	if (ret) {
> +		pm_runtime_put(i2c_dev->dev);
>   		return ret;
> +	}
>   
>   	for (i = 0; i < num; i++) {
>   		enum msg_end_type end_type = MSG_END_STOP;
> @@ -1698,10 +1700,10 @@ static int tegra_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],
>   			break;
>   	}
>   
> -	ret = tegra_i2c_mutex_unlock(i2c_dev);
> +	ret2 = tegra_i2c_mutex_unlock(i2c_dev);
>   	pm_runtime_put(i2c_dev->dev);
>   
> -	return ret ?: i;
> +	return ret ?: ret2 ?: i;

I can't say I am a fan of this. I wonder if we would be better off 
removing the return value from tegra_i2c_mutex_unlock() and just WARN if 
this ever happens? If the unlock did fail, the actual I2C message may 
still have been sent and the next time we try to send a message I assume 
that the lock would fail anyway and we would not be able to send further 
messages.

Jon

-- 
nvpublic


  reply	other threads:[~2026-05-07  7:23 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-06 19:53 [PATCH 1/1] i2c: tegra: fix error handling in tegra_i2c_xfer() Saurav Sachidanand
2026-05-07  7:23 ` Jon Hunter [this message]
2026-05-07 22:11 ` [PATCH v2 0/2] " Saurav Sachidanand
2026-05-07 22:11   ` [PATCH v2 1/2] i2c: tegra: fix pm_runtime leak on mutex_lock failure Saurav Sachidanand
2026-05-08 10:24     ` Thierry Reding
2026-05-08 15:13       ` Jon Hunter
2026-05-07 22:11   ` [PATCH v2 2/2] i2c: tegra: make tegra_i2c_mutex_unlock() return void Saurav Sachidanand
2026-05-08 10:24     ` Thierry Reding
2026-05-08 15:14       ` Jon Hunter

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=550181b1-7612-4b01-92d9-3257bb488d8d@nvidia.com \
    --to=jonathanh@nvidia.com \
    --cc=akhilrajeev@nvidia.com \
    --cc=andi.shyti@kernel.org \
    --cc=digetx@gmail.com \
    --cc=kkartik@nvidia.com \
    --cc=ldewangan@nvidia.com \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=sauravsc@amazon.com \
    --cc=thierry.reding@kernel.org \
    --cc=wsa+renesas@sang-engineering.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