linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gpio: gpio-xilinx: Fix integer overflow
@ 2022-07-21  7:39 Srinivas Neeli
  2022-07-22  7:17 ` Bartosz Golaszewski
  0 siblings, 1 reply; 5+ messages in thread
From: Srinivas Neeli @ 2022-07-21  7:39 UTC (permalink / raw)
  To: linus.walleij, brgl, michal.simek, neelisrinivas18,
	shubhrajyoti.datta, srinivas.neeli, sgoud
  Cc: linux-gpio, linux-arm-kernel, linux-kernel, git, Srinivas Neeli

Current implementation is not able to configure more than 32 pins
due to incorrect data type. So type casting with unsigned long
to avoid it.

Fixes: 02b3f84d9080 ("xilinx: Switch to use bitmap APIs")
Signed-off-by: Srinivas Neeli <srinivas.neeli@xilinx.com>
---
 drivers/gpio/gpio-xilinx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-xilinx.c b/drivers/gpio/gpio-xilinx.c
index b6d3a57e27ed..7f8e2fed2988 100644
--- a/drivers/gpio/gpio-xilinx.c
+++ b/drivers/gpio/gpio-xilinx.c
@@ -99,7 +99,7 @@ static inline void xgpio_set_value32(unsigned long *map, int bit, u32 v)
 	const unsigned long offset = (bit % BITS_PER_LONG) & BIT(5);
 
 	map[index] &= ~(0xFFFFFFFFul << offset);
-	map[index] |= v << offset;
+	map[index] |= (unsigned long)v << offset;
 }
 
 static inline int xgpio_regoffset(struct xgpio_instance *chip, int ch)
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] gpio: gpio-xilinx: Fix integer overflow
  2022-07-21  7:39 [PATCH] gpio: gpio-xilinx: Fix integer overflow Srinivas Neeli
@ 2022-07-22  7:17 ` Bartosz Golaszewski
  2022-07-25 20:04   ` Andy Shevchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Bartosz Golaszewski @ 2022-07-22  7:17 UTC (permalink / raw)
  To: Srinivas Neeli
  Cc: Linus Walleij, Michal Simek, neelisrinivas18, shubhrajyoti.datta,
	srinivas.neeli, sgoud, open list:GPIO SUBSYSTEM, Linux ARM,
	Linux Kernel Mailing List, git

On Thu, Jul 21, 2022 at 9:39 AM Srinivas Neeli
<srinivas.neeli@xilinx.com> wrote:
>
> Current implementation is not able to configure more than 32 pins
> due to incorrect data type. So type casting with unsigned long
> to avoid it.
>
> Fixes: 02b3f84d9080 ("xilinx: Switch to use bitmap APIs")
> Signed-off-by: Srinivas Neeli <srinivas.neeli@xilinx.com>
> ---
>  drivers/gpio/gpio-xilinx.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpio/gpio-xilinx.c b/drivers/gpio/gpio-xilinx.c
> index b6d3a57e27ed..7f8e2fed2988 100644
> --- a/drivers/gpio/gpio-xilinx.c
> +++ b/drivers/gpio/gpio-xilinx.c
> @@ -99,7 +99,7 @@ static inline void xgpio_set_value32(unsigned long *map, int bit, u32 v)
>         const unsigned long offset = (bit % BITS_PER_LONG) & BIT(5);
>
>         map[index] &= ~(0xFFFFFFFFul << offset);
> -       map[index] |= v << offset;
> +       map[index] |= (unsigned long)v << offset;
>  }
>
>  static inline int xgpio_regoffset(struct xgpio_instance *chip, int ch)
> --
> 2.17.1
>

Applied, thanks!

Bart

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gpio: gpio-xilinx: Fix integer overflow
  2022-07-22  7:17 ` Bartosz Golaszewski
@ 2022-07-25 20:04   ` Andy Shevchenko
  2022-07-25 20:21     ` Andy Shevchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Andy Shevchenko @ 2022-07-25 20:04 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Srinivas Neeli, Linus Walleij, Michal Simek, neelisrinivas18,
	Shubhrajyoti Datta, srinivas.neeli, Srinivas Goud,
	open list:GPIO SUBSYSTEM, Linux ARM, Linux Kernel Mailing List,
	git

On Fri, Jul 22, 2022 at 9:19 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
> On Thu, Jul 21, 2022 at 9:39 AM Srinivas Neeli
> <srinivas.neeli@xilinx.com> wrote:
> >
> > Current implementation is not able to configure more than 32 pins
> > due to incorrect data type. So type casting with unsigned long
> > to avoid it.

> > Fixes: 02b3f84d9080 ("xilinx: Switch to use bitmap APIs")

It doesn't fix anything,  I already reject one such "fix" during
development of this patch. Thanks!

...

> > @@ -99,7 +99,7 @@ static inline void xgpio_set_value32(unsigned long *map, int bit, u32 v)
> >         const unsigned long offset = (bit % BITS_PER_LONG) & BIT(5);
> >
> >         map[index] &= ~(0xFFFFFFFFul << offset);
> > -       map[index] |= v << offset;
> > +       map[index] |= (unsigned long)v << offset;
> >  }

> Applied, thanks!

False positive.

-- 
With Best Regards,
Andy Shevchenko

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gpio: gpio-xilinx: Fix integer overflow
  2022-07-25 20:04   ` Andy Shevchenko
@ 2022-07-25 20:21     ` Andy Shevchenko
  2022-07-25 20:29       ` Andy Shevchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Andy Shevchenko @ 2022-07-25 20:21 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Srinivas Neeli, Linus Walleij, Michal Simek, neelisrinivas18,
	Shubhrajyoti Datta, srinivas.neeli, Srinivas Goud,
	open list:GPIO SUBSYSTEM, Linux ARM, Linux Kernel Mailing List,
	git

On Mon, Jul 25, 2022 at 10:04 PM Andy Shevchenko
<andy.shevchenko@gmail.com> wrote:
> On Fri, Jul 22, 2022 at 9:19 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
> > On Thu, Jul 21, 2022 at 9:39 AM Srinivas Neeli
> > <srinivas.neeli@xilinx.com> wrote:
> > >
> > > Current implementation is not able to configure more than 32 pins
> > > due to incorrect data type. So type casting with unsigned long
> > > to avoid it.
>
> > > Fixes: 02b3f84d9080 ("xilinx: Switch to use bitmap APIs")
>
> It doesn't fix anything,  I already reject one such "fix" during
> development of this patch. Thanks!

Sorry, not my day, it was something else that time... See below.

> ...
>
> > > @@ -99,7 +99,7 @@ c
>
> > Applied, thanks!
>
> False positive.

Reading again... You mean that

  unsigned long x = y << 32;

wouldn't work?



-- 
With Best Regards,
Andy Shevchenko

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] gpio: gpio-xilinx: Fix integer overflow
  2022-07-25 20:21     ` Andy Shevchenko
@ 2022-07-25 20:29       ` Andy Shevchenko
  0 siblings, 0 replies; 5+ messages in thread
From: Andy Shevchenko @ 2022-07-25 20:29 UTC (permalink / raw)
  To: Bartosz Golaszewski
  Cc: Srinivas Neeli, Linus Walleij, Michal Simek, neelisrinivas18,
	Shubhrajyoti Datta, srinivas.neeli, Srinivas Goud,
	open list:GPIO SUBSYSTEM, Linux ARM, Linux Kernel Mailing List,
	git

On Mon, Jul 25, 2022 at 10:21 PM Andy Shevchenko
<andy.shevchenko@gmail.com> wrote:
> On Mon, Jul 25, 2022 at 10:04 PM Andy Shevchenko
> <andy.shevchenko@gmail.com> wrote:
> > On Fri, Jul 22, 2022 at 9:19 AM Bartosz Golaszewski <brgl@bgdev.pl> wrote:
> > > On Thu, Jul 21, 2022 at 9:39 AM Srinivas Neeli
> > > <srinivas.neeli@xilinx.com> wrote:

...

> Reading again... You mean that
>
>   unsigned long x = y << 32;
>
> wouldn't work?

Yeah, I even checked this in asm, and indeed it doesn't work. Don't
know what was that about me...


Thanks for the fix,
Reviewed-by: Andy Shevchenko <andy.shevchenlko@gmail.com>


-- 
With Best Regards,
Andy Shevchenko

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-07-25 20:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-21  7:39 [PATCH] gpio: gpio-xilinx: Fix integer overflow Srinivas Neeli
2022-07-22  7:17 ` Bartosz Golaszewski
2022-07-25 20:04   ` Andy Shevchenko
2022-07-25 20:21     ` Andy Shevchenko
2022-07-25 20:29       ` Andy Shevchenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).