2021-03-03 00:40:25

by Dinghao Liu

[permalink] [raw]
Subject: [PATCH] iio: gyro: mpu3050: Fix error handling in mpu3050_trigger_handler

There is one regmap_bulk_read() call in mpu3050_trigger_handler
that we have caught its return value bug lack further handling.
Check and terminate the execution flow just like the other three
regmap_bulk_read() calls in this function.

Signed-off-by: Dinghao Liu <[email protected]>
---
drivers/iio/gyro/mpu3050-core.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/drivers/iio/gyro/mpu3050-core.c b/drivers/iio/gyro/mpu3050-core.c
index dfa31a23500f..ac90be03332a 100644
--- a/drivers/iio/gyro/mpu3050-core.c
+++ b/drivers/iio/gyro/mpu3050-core.c
@@ -551,6 +551,8 @@ static irqreturn_t mpu3050_trigger_handler(int irq, void *p)
MPU3050_FIFO_R,
&fifo_values[offset],
toread);
+ if (ret)
+ goto out_trigger_unlock;

dev_dbg(mpu3050->dev,
"%04x %04x %04x %04x %04x\n",
--
2.17.1


2021-03-04 06:36:19

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH] iio: gyro: mpu3050: Fix error handling in mpu3050_trigger_handler

On Mon, Mar 1, 2021 at 9:04 AM Dinghao Liu <[email protected]> wrote:

> There is one regmap_bulk_read() call in mpu3050_trigger_handler
> that we have caught its return value bug lack further handling.
> Check and terminate the execution flow just like the other three
> regmap_bulk_read() calls in this function.
>
> Signed-off-by: Dinghao Liu <[email protected]>

OK that makes sense.
Reviewed-by: Linus Walleij <[email protected]>

Yours,
Linus Walleij

2021-03-06 17:18:42

by Jonathan Cameron

[permalink] [raw]
Subject: Re: [PATCH] iio: gyro: mpu3050: Fix error handling in mpu3050_trigger_handler

On Tue, 2 Mar 2021 16:45:10 +0100
Linus Walleij <[email protected]> wrote:

> On Mon, Mar 1, 2021 at 9:04 AM Dinghao Liu <[email protected]> wrote:
>
> > There is one regmap_bulk_read() call in mpu3050_trigger_handler
> > that we have caught its return value bug lack further handling.
> > Check and terminate the execution flow just like the other three
> > regmap_bulk_read() calls in this function.
> >
> > Signed-off-by: Dinghao Liu <[email protected]>
>
> OK that makes sense.
> Reviewed-by: Linus Walleij <[email protected]>
Applied with a fixes tag (it goes all the way back) and marked
for stable.

Thanks,

Jonathan

>
> Yours,
> Linus Walleij