]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
linux/bits.h: simplify GENMASK_INPUT_CHECK()
authorVincent Mailhol <mailhol.vincent@wanadoo.fr>
Wed, 13 Nov 2024 17:18:33 +0000 (02:18 +0900)
committerYury Norov <yury.norov@gmail.com>
Mon, 30 Dec 2024 18:29:25 +0000 (10:29 -0800)
In GENMASK_INPUT_CHECK(),

  __builtin_choose_expr(__is_constexpr((l) > (h)), (l) > (h), 0)

is the exact expansion of:

  const_true((l) > (h))

Apply const_true() to simplify GENMASK_INPUT_CHECK().

CC: Linus Torvalds <torvalds@linux-foundation.org>
CC: Rasmus Villemoes <linux@rasmusvillemoes.dk>
CC: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Reviewed-by: Yury Norov <yury.norov@gmail.com>,
Signed-off-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
Signed-off-by: Yury Norov <yury.norov@gmail.com>
include/linux/bits.h

index 60044b6088172b3f26aa3f17cdaede9786863dae..61a75d3f294bfa96267383b5e2fd2a5d4593fcee 100644 (file)
@@ -20,9 +20,8 @@
  */
 #if !defined(__ASSEMBLY__)
 #include <linux/build_bug.h>
-#define GENMASK_INPUT_CHECK(h, l) \
-       (BUILD_BUG_ON_ZERO(__builtin_choose_expr( \
-               __is_constexpr((l) > (h)), (l) > (h), 0)))
+#include <linux/compiler.h>
+#define GENMASK_INPUT_CHECK(h, l) BUILD_BUG_ON_ZERO(const_true((l) > (h)))
 #else
 /*
  * BUILD_BUG_ON_ZERO is not available in h files included from asm files,