summaryrefslogtreecommitdiffstats
path: root/tools/arch/s390
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo2016-07-12 16:12:18 +0200
committerArnaldo Carvalho de Melo2016-07-12 20:20:39 +0200
commitbb9707077b4ee5f77bc9939b057ff8a0d410296f (patch)
tree5d532c5066c0b7e40948a44f6cab11cb3b8d6e61 /tools/arch/s390
parentperf script python: Silence -Werror=maybe-uninitialized on gcc 5.3.0 (diff)
downloadkernel-qcow2-linux-bb9707077b4ee5f77bc9939b057ff8a0d410296f.tar.gz
kernel-qcow2-linux-bb9707077b4ee5f77bc9939b057ff8a0d410296f.tar.xz
kernel-qcow2-linux-bb9707077b4ee5f77bc9939b057ff8a0d410296f.zip
tools: Copy the bitsperlong.h files from the kernel
We use it in bitops/__ffs.h and bitops/atomic.h, that we also got from the kernel, but were getting it from either newer systems that carry it in /usr/include, or from the kernel sources, that we decided not to touch from tools/ code. Fix it. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lkml.kernel.org/n/tip-lwqvgbuitjmrdpjmjp6zqnyx@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/arch/s390')
-rw-r--r--tools/arch/s390/include/uapi/asm/bitsperlong.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/arch/s390/include/uapi/asm/bitsperlong.h b/tools/arch/s390/include/uapi/asm/bitsperlong.h
new file mode 100644
index 000000000000..e351ea2ad43e
--- /dev/null
+++ b/tools/arch/s390/include/uapi/asm/bitsperlong.h
@@ -0,0 +1,12 @@
+#ifndef __ASM_S390_BITSPERLONG_H
+#define __ASM_S390_BITSPERLONG_H
+
+#ifndef __s390x__
+#define __BITS_PER_LONG 32
+#else
+#define __BITS_PER_LONG 64
+#endif
+
+#include <asm-generic/bitsperlong.h>
+
+#endif /* __ASM_S390_BITSPERLONG_H */