Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1356040 > unrolled thread

[PATCH] gpio: pca953x: Fix pca953x_gpio_set_multiple() on 64-bit

Started byGeert Uytterhoeven <geert+renesas@glider.be>
First post2016-03-11 17:40 +0100
Last post2016-03-16 13:10 +0100
Articles 3 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] gpio: pca953x: Fix pca953x_gpio_set_multiple() on 64-bit Geert Uytterhoeven <geert+renesas@glider.be> - 2016-03-11 17:40 +0100
    Re: [PATCH] gpio: pca953x: Fix pca953x_gpio_set_multiple() on 64-bit Phil Reid <preid@electromag.com.au> - 2016-03-12 16:30 +0100
    Re: [PATCH] gpio: pca953x: Fix pca953x_gpio_set_multiple() on 64-bit Linus Walleij <linus.walleij@linaro.org> - 2016-03-16 13:10 +0100

#1356040 — [PATCH] gpio: pca953x: Fix pca953x_gpio_set_multiple() on 64-bit

FromGeert Uytterhoeven <geert+renesas@glider.be>
Date2016-03-11 17:40 +0100
Subject[PATCH] gpio: pca953x: Fix pca953x_gpio_set_multiple() on 64-bit
Message-ID<rbygy-y0-7@gated-at.bofh.it>
pca953x_gpio_set_multiple() divides by 4 to convert from longs to bytes,
which assumes a 32-bit platform, and is not correct on 64-bit platforms.
Use "sizeof(...)" instead to fix this.

Fixes: b4818afeacbd8182 ("gpio: pca953x: Add set_multiple to allow multiple bits to be set in one write.")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
Untested, found by code inspection.

This bug was introduced in v4.5-rc1, but unless Linus (the other one ;-)
will make a v4.5-rc8, it's probably too late to get this fixed in v4.5.
---
 drivers/gpio/gpio-pca953x.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c
index 23196c5fc17ceb6b..99b375c959987fe9 100644
--- a/drivers/gpio/gpio-pca953x.c
+++ b/drivers/gpio/gpio-pca953x.c
@@ -367,9 +367,11 @@ static void pca953x_gpio_set_multiple(struct gpio_chip *gc,
 	memcpy(reg_val, chip->reg_output, NBANK(chip));
 	mutex_lock(&chip->i2c_lock);
 	for(bank=0; bank<NBANK(chip); bank++) {
-		unsigned bankmask = mask[bank/4] >> ((bank % 4) * 8);
+		unsigned bankmask = mask[bank / sizeof(*mask)] >>
+				    ((bank % sizeof(*mask)) * 8);
 		if(bankmask) {
-			unsigned bankval  = bits[bank/4] >> ((bank % 4) * 8);
+			unsigned bankval  = bits[bank / sizeof(*bits)] >>
+					    ((bank % sizeof(*bits)) * 8);
 			reg_val[bank] = (reg_val[bank] & ~bankmask) | bankval;
 		}
 	}
-- 
1.9.1

[toc] | [next] | [standalone]


#1356450

FromPhil Reid <preid@electromag.com.au>
Date2016-03-12 16:30 +0100
Message-ID<rbTEl-8aZ-9@gated-at.bofh.it>
In reply to#1356040
On 12/03/2016 12:31 AM, Geert Uytterhoeven wrote:
> pca953x_gpio_set_multiple() divides by 4 to convert from longs to bytes,
> which assumes a 32-bit platform, and is not correct on 64-bit platforms.
> Use "sizeof(...)" instead to fix this.
>
> Fixes: b4818afeacbd8182 ("gpio: pca953x: Add set_multiple to allow multiple bits to be set in one write.")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

Acked-by: Phil Reid <preid@electromag.com.au>

> ---
> Untested, found by code inspection.
>
> This bug was introduced in v4.5-rc1, but unless Linus (the other one ;-)
> will make a v4.5-rc8, it's probably too late to get this fixed in v4.5.
> ---
>   drivers/gpio/gpio-pca953x.c | 6 ++++--
>   1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c
> index 23196c5fc17ceb6b..99b375c959987fe9 100644
> --- a/drivers/gpio/gpio-pca953x.c
> +++ b/drivers/gpio/gpio-pca953x.c
> @@ -367,9 +367,11 @@ static void pca953x_gpio_set_multiple(struct gpio_chip *gc,
>   	memcpy(reg_val, chip->reg_output, NBANK(chip));
>   	mutex_lock(&chip->i2c_lock);
>   	for(bank=0; bank<NBANK(chip); bank++) {
> -		unsigned bankmask = mask[bank/4] >> ((bank % 4) * 8);
> +		unsigned bankmask = mask[bank / sizeof(*mask)] >>
> +				    ((bank % sizeof(*mask)) * 8);
>   		if(bankmask) {
> -			unsigned bankval  = bits[bank/4] >> ((bank % 4) * 8);
> +			unsigned bankval  = bits[bank / sizeof(*bits)] >>
> +					    ((bank % sizeof(*bits)) * 8);
>   			reg_val[bank] = (reg_val[bank] & ~bankmask) | bankval;
>   		}
>   	}
>


-- 
Regards
Phil Reid

ElectroMagnetic Imaging Technology Pty Ltd
Development of Geophysical Instrumentation & Software
www.electromag.com.au

3 The Avenue, Midland WA 6056, AUSTRALIA
Ph: +61 8 9250 8100
Fax: +61 8 9250 7100
Email: preid@electromag.com.au

[toc] | [prev] | [next] | [standalone]


#1358936

FromLinus Walleij <linus.walleij@linaro.org>
Date2016-03-16 13:10 +0100
Message-ID<rdir1-kr-29@gated-at.bofh.it>
In reply to#1356040
On Fri, Mar 11, 2016 at 5:31 PM, Geert Uytterhoeven
<geert+renesas@glider.be> wrote:

> pca953x_gpio_set_multiple() divides by 4 to convert from longs to bytes,
> which assumes a 32-bit platform, and is not correct on 64-bit platforms.
> Use "sizeof(...)" instead to fix this.
>
> Fixes: b4818afeacbd8182 ("gpio: pca953x: Add set_multiple to allow multiple bits to be set in one write.")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>

Patch applied for fixes. Tagged for stable.
Ack from Phil.

Yours,
Linus Walleij

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web