linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] include/log2.h: Fix rounddown_pow_of_two(1)
@ 2011-12-12 18:02 Dmitry Torokhov
  2011-12-12 23:50 ` Linus Torvalds
  2011-12-13 20:00 ` Peter Zijlstra
  0 siblings, 2 replies; 7+ messages in thread
From: Dmitry Torokhov @ 2011-12-12 18:02 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: linux-kernel, Andrew Morton, pv-drivers, Andrei Warkentin, stable,
	Dmitry Torokhov

From: Andrei Warkentin <andreiw@vmware.com>

1 is a power of two, therefore rounddown_pow_of_two(1) should return 1.
It does in case the argument is a variable but in case it's a constant
it behaves incorrectly and returns 0. Probably nobody ever did it so
this was never noticed, however drivers/net/vmxnet3 with latest GCC does
and breaks on unicpu systems.

This is similar to Rolf's patch to roundup_pow_of_two(1).

Signed-off-by: Andrei Warkentin <andreiw@vmware.com>
Reviewed-by: Jesper Juhl <jj@chaosbits.net>
Reviewed-by: Rolf Eike Beer <eike-kernel@sf-tec.de>
Cc: stable@kernel.org
Signed-off-by: Dmitry Torokhov <dtor@vmware.com>
---
 include/linux/log2.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/linux/log2.h b/include/linux/log2.h
index 25b8086..ccda848 100644
--- a/include/linux/log2.h
+++ b/include/linux/log2.h
@@ -185,7 +185,7 @@ unsigned long __rounddown_pow_of_two(unsigned long n)
 #define rounddown_pow_of_two(n)			\
 (						\
 	__builtin_constant_p(n) ? (		\
-		(n == 1) ? 0 :			\
+		(n == 1) ? 1 :			\
 		(1UL << ilog2(n))) :		\
 	__rounddown_pow_of_two(n)		\
  )
-- 
1.7.4.1


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

* Re: [PATCH] include/log2.h: Fix rounddown_pow_of_two(1)
  2011-12-12 18:02 [PATCH] include/log2.h: Fix rounddown_pow_of_two(1) Dmitry Torokhov
@ 2011-12-12 23:50 ` Linus Torvalds
  2011-12-13  6:01   ` Dmitry Torokhov
  2011-12-13 20:00 ` Peter Zijlstra
  1 sibling, 1 reply; 7+ messages in thread
From: Linus Torvalds @ 2011-12-12 23:50 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: linux-kernel, Andrew Morton, pv-drivers, Andrei Warkentin, stable,
	Jesper Juhl, Rolf Eike Beer

On Mon, Dec 12, 2011 at 10:02 AM, Dmitry Torokhov <dtor@vmware.com> wrote:
> From: Andrei Warkentin <andreiw@vmware.com>
>
> 1 is a power of two, therefore rounddown_pow_of_two(1) should return 1.
> It does in case the argument is a variable but in case it's a constant
> it behaves incorrectly and returns 0. Probably nobody ever did it so
> this was never noticed, however drivers/net/vmxnet3 with latest GCC does
> and breaks on unicpu systems.
>
> This is similar to Rolf's patch to roundup_pow_of_two(1).

Umm. I already applied this patch, but then I started looking at it
more, and asked myself:

 - Why is that "n == 1" test there AT ALL?

Afaik, that whole test is just plain stupid. It seems to have been
copied from the "roundup()" case (where it exists due to the "-1/+1"
hackery that breaks ilog2()) without any thought about the actual math
of the function at all.

I think the *real* fix is to just remove that incorrect line, no?

It's a bit sad that we apparently have several reviewers for this
trivial patch, and nobody reacted to the math just not making any
sense.

                                      Linus

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

* Re: [PATCH] include/log2.h: Fix rounddown_pow_of_two(1)
  2011-12-12 23:50 ` Linus Torvalds
@ 2011-12-13  6:01   ` Dmitry Torokhov
  0 siblings, 0 replies; 7+ messages in thread
From: Dmitry Torokhov @ 2011-12-13  6:01 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: linux-kernel, Andrew Morton, pv-drivers, Andrei Warkentin, stable,
	Jesper Juhl, Rolf Eike Beer

On Mon, Dec 12, 2011 at 03:50:11PM -0800, Linus Torvalds wrote:
> On Mon, Dec 12, 2011 at 10:02 AM, Dmitry Torokhov <dtor@vmware.com> wrote:
> > From: Andrei Warkentin <andreiw@vmware.com>
> >
> > 1 is a power of two, therefore rounddown_pow_of_two(1) should return 1.
> > It does in case the argument is a variable but in case it's a constant
> > it behaves incorrectly and returns 0. Probably nobody ever did it so
> > this was never noticed, however drivers/net/vmxnet3 with latest GCC does
> > and breaks on unicpu systems.
> >
> > This is similar to Rolf's patch to roundup_pow_of_two(1).
> 
> Umm. I already applied this patch, but then I started looking at it
> more, and asked myself:
> 
>  - Why is that "n == 1" test there AT ALL?
> 
> Afaik, that whole test is just plain stupid. It seems to have been
> copied from the "roundup()" case (where it exists due to the "-1/+1"
> hackery that breaks ilog2()) without any thought about the actual math
> of the function at all.
> 
> I think the *real* fix is to just remove that incorrect line, no?

Yes, you are right, special-casing for 1 is not necessary in rounddown
case.

Thanks,
Dmitry


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

* Re: [PATCH] include/log2.h: Fix rounddown_pow_of_two(1)
  2011-12-12 18:02 [PATCH] include/log2.h: Fix rounddown_pow_of_two(1) Dmitry Torokhov
  2011-12-12 23:50 ` Linus Torvalds
@ 2011-12-13 20:00 ` Peter Zijlstra
  2011-12-13 20:05   ` Peter Zijlstra
  2011-12-13 20:06   ` [Pv-drivers] " Bhavesh Davda
  1 sibling, 2 replies; 7+ messages in thread
From: Peter Zijlstra @ 2011-12-13 20:00 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Linus Torvalds, linux-kernel, Andrew Morton, pv-drivers,
	Andrei Warkentin, stable

On Mon, 2011-12-12 at 10:02 -0800, Dmitry Torokhov wrote:
> 1 is a power of two, therefore rounddown_pow_of_two(1) should return 1.

x^0 = 1
x^1 = x

Seems to me 0 was the right answer, no?



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

* Re: [PATCH] include/log2.h: Fix rounddown_pow_of_two(1)
  2011-12-13 20:00 ` Peter Zijlstra
@ 2011-12-13 20:05   ` Peter Zijlstra
  2011-12-13 20:06   ` [Pv-drivers] " Bhavesh Davda
  1 sibling, 0 replies; 7+ messages in thread
From: Peter Zijlstra @ 2011-12-13 20:05 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Linus Torvalds, linux-kernel, Andrew Morton, pv-drivers,
	Andrei Warkentin, stable

On Tue, 2011-12-13 at 21:00 +0100, Peter Zijlstra wrote:
> On Mon, 2011-12-12 at 10:02 -0800, Dmitry Torokhov wrote:
> > 1 is a power of two, therefore rounddown_pow_of_two(1) should return 1.
> 
> x^0 = 1
> x^1 = x
> 
> Seems to me 0 was the right answer, no?

n/m head-up-arse, missed that this wasn't actually a log variant.

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

* RE: [Pv-drivers] [PATCH] include/log2.h: Fix rounddown_pow_of_two(1)
  2011-12-13 20:00 ` Peter Zijlstra
  2011-12-13 20:05   ` Peter Zijlstra
@ 2011-12-13 20:06   ` Bhavesh Davda
  2011-12-13 20:07     ` Peter Zijlstra
  1 sibling, 1 reply; 7+ messages in thread
From: Bhavesh Davda @ 2011-12-13 20:06 UTC (permalink / raw)
  To: Peter Zijlstra, Dmitry Torokhov
  Cc: Andrei Warkentin, pv-drivers@vmware.com,
	linux-kernel@vger.kernel.org, Andrew Morton, Linus Torvalds,
	stable@kernel.org

> On Mon, 2011-12-12 at 10:02 -0800, Dmitry Torokhov wrote:
> > 1 is a power of two, therefore rounddown_pow_of_two(1) should return 1.
> 
> x^0 = 1
> x^1 = x
> 
> Seems to me 0 was the right answer, no?

Eh? The answer should be the power-of-two (1), not the exponent (0).

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

* RE: [Pv-drivers] [PATCH] include/log2.h: Fix rounddown_pow_of_two(1)
  2011-12-13 20:06   ` [Pv-drivers] " Bhavesh Davda
@ 2011-12-13 20:07     ` Peter Zijlstra
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Zijlstra @ 2011-12-13 20:07 UTC (permalink / raw)
  To: Bhavesh Davda
  Cc: Dmitry Torokhov, Andrei Warkentin, pv-drivers@vmware.com,
	linux-kernel@vger.kernel.org, Andrew Morton, Linus Torvalds,
	stable@kernel.org

On Tue, 2011-12-13 at 12:06 -0800, Bhavesh Davda wrote:
> > On Mon, 2011-12-12 at 10:02 -0800, Dmitry Torokhov wrote:
> > > 1 is a power of two, therefore rounddown_pow_of_two(1) should return 1.
> > 
> > x^0 = 1
> > x^1 = x
> > 
> > Seems to me 0 was the right answer, no?
> 
> Eh? The answer should be the power-of-two (1), not the exponent (0).

Yeah, just noticed that, see my other reply.

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

end of thread, other threads:[~2011-12-13 20:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-12 18:02 [PATCH] include/log2.h: Fix rounddown_pow_of_two(1) Dmitry Torokhov
2011-12-12 23:50 ` Linus Torvalds
2011-12-13  6:01   ` Dmitry Torokhov
2011-12-13 20:00 ` Peter Zijlstra
2011-12-13 20:05   ` Peter Zijlstra
2011-12-13 20:06   ` [Pv-drivers] " Bhavesh Davda
2011-12-13 20:07     ` Peter Zijlstra

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).