[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241016192011.GY17263@noisy.programming.kicks-ass.net>
Date: Wed, 16 Oct 2024 21:20:11 +0200
From: Peter Zijlstra <peterz@...radead.org>
To: Dave Hansen <dave.hansen@...el.com>
Cc: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>,
Ingo Molnar <mingo@...nel.org>, Uros Bizjak <ubizjak@...il.com>,
linux-mm@...ck.org, linux-kernel@...r.kernel.org,
llvm@...ts.linux.dev, Dennis Zhou <dennis@...nel.org>,
Tejun Heo <tj@...nel.org>, Christoph Lameter <cl@...ux.com>,
Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...hat.com>, Borislav Petkov <bp@...en8.de>,
Dave Hansen <dave.hansen@...ux.intel.com>, x86@...nel.org,
"H. Peter Anvin" <hpa@...or.com>,
Nathan Chancellor <nathan@...nel.org>,
Nick Desaulniers <ndesaulniers@...gle.com>,
Bill Wendling <morbo@...gle.com>,
Justin Stitt <justinstitt@...gle.com>
Subject: Re: [PATCH v1 1/1] x86/percpu: Cast -1 to argument type when
comparing in percpu_add_op()
On Wed, Oct 16, 2024 at 08:44:56AM -0700, Dave Hansen wrote:
> Andy,
>
> The subject here is not very informative. It explains the "what" of the
> patch, but not the "why".
>
> A better subject might have been:
>
> x86/percpu: Fix clang warning when dealing with unsigned types
>
> > --- a/arch/x86/include/asm/percpu.h
> > +++ b/arch/x86/include/asm/percpu.h
> > @@ -234,9 +234,10 @@ do { \
> > */
> > #define percpu_add_op(size, qual, var, val) \
> > do { \
> > - const int pao_ID__ = (__builtin_constant_p(val) && \
> > - ((val) == 1 || (val) == -1)) ? \
> > - (int)(val) : 0; \
> > + const int pao_ID__ = \
> > + (__builtin_constant_p(val) && \
> > + ((val) == 1 || \
> > + (val) == (typeof(val))-1)) ? (int)(val) : 0; \
>
> This doesn't _look_ right.
>
> Let's assume 'val' is a u8. (u8)-1 is 255, right? So casting the -1
> over to a u8 actually changed its value. So the comparison that you
> added would actually trigger for 255:
>
> (val) == (typeof(val))-1))
>
> 255 == (u8)-1
> 255 == 255
Which is correct, no? Add of 255 to an u8 is the same as decrement one.
> That's not the end of the world because the pao_ID__ still ends up at
> 255 and the lower if() falls into the "add" bucket, but it isn't great
> for reading the macro. It seems like it basically works on accident.
You're correct in that it does not achieve the desired result (in all
cases). But this is because (int)(val) will never turn into -1 when val
== 255.
> Wouldn't casting 'val' over to an int be shorter, more readable, not
> have that logical false match *and* line up with the cast later on in
> the expression?
>
> const int pao_ID__ = (__builtin_constant_p(val) &&
> ((val) == 1 || (int)(val) == -1)) ?
>
> (int)(val) : 0;
>
> Other suggestions to make it more readable would be welcome.
This is very very wrong. No u8 value when cast to int will ever equal
-1. Notably (int)(u8)255 == 255.
> Since I'm making comments, I would have really appreciated some extra
> info here like why you are hitting this and nobody else is. This is bog
> standard code that everybody compiles. Is clang use _that_ unusual? Or
> do most clang users just ignore all the warnings? Or are you using a
> bleeding edge version of clang that spits out new warnings that other
> clang users aren't seeing?
The code as is, is wrong, I don't think we'll ever end up in the dec
case for 'short' unsigned types. Clang is just clever enough to realize
this and issues a warning.
Something like so might work:
const int pao_ID__ = __builtin_constant_p(val) ?
((typeof(var))(val) == 1 ? 1 :
((typeof(var))(val) == (typeof(var))-1 ? -1 : 0 )) : 0;
This should get, assuming typeof(var) is u8, a dec for both 255 and -1.
Powered by blists - more mailing lists