diff options
author | Ingo Molnar <mingo@kernel.org> | 2016-07-13 03:37:43 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-07-13 03:37:43 -0400 |
commit | 7b39cafb7aa68ef8e32a9f51fbe737d96084ca74 (patch) | |
tree | 14df7e2b8f86af4b0d49e07e722904c7af26d9a2 /tools/include | |
parent | 68cf16c6b8b4ed818bb6211e1975fd75b78c7e86 (diff) |
tools: Work around BITS_PER_LONG related build failure in objtool
The objtool build fails with the recent changes to the bits-per-long
headers:
tools/include/linux/bitops.h:12:0: error: "BITS_PER_LONG" redefined [-Werror]
Which got introduced by:
bb9707077b4e tools: Copy the bitsperlong.h files from the kernel
Work it around for the time being.
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/include')
-rw-r--r-- | tools/include/linux/bitops.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/include/linux/bitops.h b/tools/include/linux/bitops.h index 5ad9ee1dd7f6..49c929a104ee 100644 --- a/tools/include/linux/bitops.h +++ b/tools/include/linux/bitops.h | |||
@@ -9,7 +9,9 @@ | |||
9 | #define __WORDSIZE (__SIZEOF_LONG__ * 8) | 9 | #define __WORDSIZE (__SIZEOF_LONG__ * 8) |
10 | #endif | 10 | #endif |
11 | 11 | ||
12 | #define BITS_PER_LONG __WORDSIZE | 12 | #ifndef BITS_PER_LONG |
13 | # define BITS_PER_LONG __WORDSIZE | ||
14 | #endif | ||
13 | 15 | ||
14 | #define BIT_MASK(nr) (1UL << ((nr) % BITS_PER_LONG)) | 16 | #define BIT_MASK(nr) (1UL << ((nr) % BITS_PER_LONG)) |
15 | #define BIT_WORD(nr) ((nr) / BITS_PER_LONG) | 17 | #define BIT_WORD(nr) ((nr) / BITS_PER_LONG) |