tools headers: Synchronize {linux,vdso}/bits.h with the kernel sources
authorArnaldo Carvalho de Melo <acme@redhat.com>
Fri, 3 Mar 2023 19:49:20 +0000 (16:49 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Sat, 4 Mar 2023 01:34:15 +0000 (22:34 -0300)
To pick up the changes in this cset:

  cbdb1f163af2bb90 ("vdso/bits.h: Add BIT_ULL() for the sake of consistency")

That just causes perf to rebuild, the macro included doesn't clash with
anything in tools/{perf,objtool,bpf}.

This addresses this perf build warning:

  Warning: Kernel ABI header at 'tools/include/linux/bits.h' differs from latest version at 'include/linux/bits.h'
  diff -u tools/include/linux/bits.h include/linux/bits.h
  Warning: Kernel ABI header at 'tools/include/vdso/bits.h' differs from latest version at 'include/vdso/bits.h'
  diff -u tools/include/vdso/bits.h include/vdso/bits.h

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/include/linux/bits.h
tools/include/vdso/bits.h

index 87d112650dfbb0ec9ac6825ae2746c61b2659960..7c0cf5031abe8796fc40c7307ddfde4832f2655d 100644 (file)
@@ -6,7 +6,6 @@
 #include <vdso/bits.h>
 #include <asm/bitsperlong.h>
 
-#define BIT_ULL(nr)            (ULL(1) << (nr))
 #define BIT_MASK(nr)           (UL(1) << ((nr) % BITS_PER_LONG))
 #define BIT_WORD(nr)           ((nr) / BITS_PER_LONG)
 #define BIT_ULL_MASK(nr)       (ULL(1) << ((nr) % BITS_PER_LONG_LONG))
index 6d005a1f5d9425d5a2cf2199271f55bb32bcc87c..388b212088ea6a38383918d9d46b82321b11c3d3 100644 (file)
@@ -5,5 +5,6 @@
 #include <vdso/const.h>
 
 #define BIT(nr)                        (UL(1) << (nr))
+#define BIT_ULL(nr)            (ULL(1) << (nr))
 
 #endif /* __VDSO_BITS_H */