* [PATCH] iio: proximity: rfd77402: Fix completion race condition in IRQ mode
@ 2026-03-04 14:14 Felix Gu
2026-03-07 17:07 ` Jonathan Cameron
2026-03-09 17:02 ` Shrikant
0 siblings, 2 replies; 4+ messages in thread
From: Felix Gu @ 2026-03-04 14:14 UTC (permalink / raw)
To: Jonathan Cameron, David Lechner, Nuno Sá, Andy Shevchenko,
Shrikant Raskar
Cc: Jonathan Cameron, linux-iio, linux-kernel, Felix Gu
In IRQ mode, the completion was being reinitialized after the
measurement command had already been sent to the hardware. This
created a race condition where the IRQ handler could call complete()
before reinit_completion() was executed. Consequently,
wait_for_completion_timeout() would fail to see the signal and wait
until it timed out.
Move reinit_completion() to occur before the measurement command is
triggered to ensure the synchronization primitive is ready to
capture the interrupt.
Fixes: dc81be96a73a ("iio: proximity: rfd77402: Add interrupt handling support")
Signed-off-by: Felix Gu <ustc.gu@gmail.com>
---
drivers/iio/proximity/rfd77402.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/drivers/iio/proximity/rfd77402.c b/drivers/iio/proximity/rfd77402.c
index 6afdbfca3e5a..81b8daf17a54 100644
--- a/drivers/iio/proximity/rfd77402.c
+++ b/drivers/iio/proximity/rfd77402.c
@@ -173,10 +173,8 @@ static int rfd77402_wait_for_result(struct rfd77402_data *data)
struct i2c_client *client = data->client;
int val, ret;
- if (data->irq_en) {
- reinit_completion(&data->completion);
+ if (data->irq_en)
return rfd77402_wait_for_irq(data);
- }
/*
* As per RFD77402 datasheet section '3.1.1 Single Measure', the
@@ -204,6 +202,9 @@ static int rfd77402_measure(struct rfd77402_data *data)
if (ret < 0)
return ret;
+ if (data->irq_en)
+ reinit_completion(&data->completion);
+
ret = i2c_smbus_write_byte_data(client, RFD77402_CMD_R,
RFD77402_CMD_SINGLE |
RFD77402_CMD_VALID);
---
base-commit: c025f6cf4209e1542ec2afebe49f42bbaf1a5c7b
change-id: 20260304-77402-ec479de1b9f6
Best regards,
--
Felix Gu <ustc.gu@gmail.com>
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] iio: proximity: rfd77402: Fix completion race condition in IRQ mode
2026-03-04 14:14 [PATCH] iio: proximity: rfd77402: Fix completion race condition in IRQ mode Felix Gu
@ 2026-03-07 17:07 ` Jonathan Cameron
2026-03-09 17:02 ` Shrikant
1 sibling, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2026-03-07 17:07 UTC (permalink / raw)
To: Felix Gu
Cc: David Lechner, Nuno Sá, Andy Shevchenko, Shrikant Raskar,
Jonathan Cameron, linux-iio, linux-kernel
On Wed, 04 Mar 2026 22:14:32 +0800
Felix Gu <ustc.gu@gmail.com> wrote:
> In IRQ mode, the completion was being reinitialized after the
> measurement command had already been sent to the hardware. This
> created a race condition where the IRQ handler could call complete()
> before reinit_completion() was executed. Consequently,
> wait_for_completion_timeout() would fail to see the signal and wait
> until it timed out.
>
> Move reinit_completion() to occur before the measurement command is
> triggered to ensure the synchronization primitive is ready to
> capture the interrupt.
>
> Fixes: dc81be96a73a ("iio: proximity: rfd77402: Add interrupt handling support")
> Signed-off-by: Felix Gu <ustc.gu@gmail.com>
Looks good to me. Shrikant, you know this driver better than I do so if you
can take a look as well that would be great.
Thanks,
J
> ---
> drivers/iio/proximity/rfd77402.c | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/iio/proximity/rfd77402.c b/drivers/iio/proximity/rfd77402.c
> index 6afdbfca3e5a..81b8daf17a54 100644
> --- a/drivers/iio/proximity/rfd77402.c
> +++ b/drivers/iio/proximity/rfd77402.c
> @@ -173,10 +173,8 @@ static int rfd77402_wait_for_result(struct rfd77402_data *data)
> struct i2c_client *client = data->client;
> int val, ret;
>
> - if (data->irq_en) {
> - reinit_completion(&data->completion);
> + if (data->irq_en)
> return rfd77402_wait_for_irq(data);
> - }
>
> /*
> * As per RFD77402 datasheet section '3.1.1 Single Measure', the
> @@ -204,6 +202,9 @@ static int rfd77402_measure(struct rfd77402_data *data)
> if (ret < 0)
> return ret;
>
> + if (data->irq_en)
> + reinit_completion(&data->completion);
> +
> ret = i2c_smbus_write_byte_data(client, RFD77402_CMD_R,
> RFD77402_CMD_SINGLE |
> RFD77402_CMD_VALID);
>
> ---
> base-commit: c025f6cf4209e1542ec2afebe49f42bbaf1a5c7b
> change-id: 20260304-77402-ec479de1b9f6
>
> Best regards,
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] iio: proximity: rfd77402: Fix completion race condition in IRQ mode
2026-03-04 14:14 [PATCH] iio: proximity: rfd77402: Fix completion race condition in IRQ mode Felix Gu
2026-03-07 17:07 ` Jonathan Cameron
@ 2026-03-09 17:02 ` Shrikant
2026-03-14 11:17 ` Jonathan Cameron
1 sibling, 1 reply; 4+ messages in thread
From: Shrikant @ 2026-03-09 17:02 UTC (permalink / raw)
To: Felix Gu
Cc: Jonathan Cameron, David Lechner, Nuno Sá, Andy Shevchenko,
Jonathan Cameron, linux-iio, linux-kernel
On Wed, Mar 4, 2026 at 7:44 PM Felix Gu <ustc.gu@gmail.com> wrote:
>
> In IRQ mode, the completion was being reinitialized after the
> measurement command had already been sent to the hardware. This
> created a race condition where the IRQ handler could call complete()
> before reinit_completion() was executed. Consequently,
> wait_for_completion_timeout() would fail to see the signal and wait
> until it timed out.
>
> Move reinit_completion() to occur before the measurement command is
> triggered to ensure the synchronization primitive is ready to
> capture the interrupt.
>
> Fixes: dc81be96a73a ("iio: proximity: rfd77402: Add interrupt handling support")
> Signed-off-by: Felix Gu <ustc.gu@gmail.com>
> ---
> drivers/iio/proximity/rfd77402.c | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/iio/proximity/rfd77402.c b/drivers/iio/proximity/rfd77402.c
> index 6afdbfca3e5a..81b8daf17a54 100644
> --- a/drivers/iio/proximity/rfd77402.c
> +++ b/drivers/iio/proximity/rfd77402.c
> @@ -173,10 +173,8 @@ static int rfd77402_wait_for_result(struct rfd77402_data *data)
> struct i2c_client *client = data->client;
> int val, ret;
>
> - if (data->irq_en) {
> - reinit_completion(&data->completion);
> + if (data->irq_en)
> return rfd77402_wait_for_irq(data);
> - }
>
> /*
> * As per RFD77402 datasheet section '3.1.1 Single Measure', the
> @@ -204,6 +202,9 @@ static int rfd77402_measure(struct rfd77402_data *data)
> if (ret < 0)
> return ret;
>
> + if (data->irq_en)
> + reinit_completion(&data->completion);
> +
Looks good to me.
Reviewed-by: Shrikant Raskar <raskar.shree97@gmail.com>
Regards,
Shrikant
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] iio: proximity: rfd77402: Fix completion race condition in IRQ mode
2026-03-09 17:02 ` Shrikant
@ 2026-03-14 11:17 ` Jonathan Cameron
0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2026-03-14 11:17 UTC (permalink / raw)
To: Shrikant
Cc: Felix Gu, David Lechner, Nuno Sá, Andy Shevchenko,
Jonathan Cameron, linux-iio, linux-kernel
On Mon, 9 Mar 2026 22:32:58 +0530
Shrikant <raskar.shree97@gmail.com> wrote:
> On Wed, Mar 4, 2026 at 7:44 PM Felix Gu <ustc.gu@gmail.com> wrote:
> >
> > In IRQ mode, the completion was being reinitialized after the
> > measurement command had already been sent to the hardware. This
> > created a race condition where the IRQ handler could call complete()
> > before reinit_completion() was executed. Consequently,
> > wait_for_completion_timeout() would fail to see the signal and wait
> > until it timed out.
> >
> > Move reinit_completion() to occur before the measurement command is
> > triggered to ensure the synchronization primitive is ready to
> > capture the interrupt.
> >
> > Fixes: dc81be96a73a ("iio: proximity: rfd77402: Add interrupt handling support")
> > Signed-off-by: Felix Gu <ustc.gu@gmail.com>
> > ---
> > drivers/iio/proximity/rfd77402.c | 7 ++++---
> > 1 file changed, 4 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/iio/proximity/rfd77402.c b/drivers/iio/proximity/rfd77402.c
> > index 6afdbfca3e5a..81b8daf17a54 100644
> > --- a/drivers/iio/proximity/rfd77402.c
> > +++ b/drivers/iio/proximity/rfd77402.c
> > @@ -173,10 +173,8 @@ static int rfd77402_wait_for_result(struct rfd77402_data *data)
> > struct i2c_client *client = data->client;
> > int val, ret;
> >
> > - if (data->irq_en) {
> > - reinit_completion(&data->completion);
> > + if (data->irq_en)
> > return rfd77402_wait_for_irq(data);
> > - }
> >
> > /*
> > * As per RFD77402 datasheet section '3.1.1 Single Measure', the
> > @@ -204,6 +202,9 @@ static int rfd77402_measure(struct rfd77402_data *data)
> > if (ret < 0)
> > return ret;
> >
> > + if (data->irq_en)
> > + reinit_completion(&data->completion);
> > +
> Looks good to me.
> Reviewed-by: Shrikant Raskar <raskar.shree97@gmail.com>
>
Applied to the fixes-togreg branch of iio.git. Note I just sent a pull
request on that so will probably rebase after that (hopefully) gets
merged into char-misc-linus.
Thanks,
Jonathan
> Regards,
> Shrikant
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-03-14 11:18 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-04 14:14 [PATCH] iio: proximity: rfd77402: Fix completion race condition in IRQ mode Felix Gu
2026-03-07 17:07 ` Jonathan Cameron
2026-03-09 17:02 ` Shrikant
2026-03-14 11:17 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox