tools include: Move perf's bug.h to a generic place
authorNamhyung Kim <namhyung@kernel.org>
Thu, 9 Jan 2014 14:00:54 +0000 (23:00 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 13 Jan 2014 13:06:26 +0000 (10:06 -0300)
So that it can be shared with others like libtraceevent.

Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung.kim@lge.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/1389276059-8829-4-git-send-email-namhyung@kernel.org
[ Added the new header to tools/perf/MANIFEST ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/include/asm/bug.h [new file with mode: 0644]
tools/perf/MANIFEST
tools/perf/Makefile.perf
tools/perf/util/include/asm/bug.h [deleted file]

diff --git a/tools/include/asm/bug.h b/tools/include/asm/bug.h
new file mode 100644 (file)
index 0000000..eca78df
--- /dev/null
@@ -0,0 +1,23 @@
+#ifndef _TOOLS_ASM_BUG_H
+#define _TOOLS_ASM_BUG_H
+
+#define __WARN_printf(arg...)  do { fprintf(stderr, arg); } while (0)
+
+#define WARN(condition, format...) ({          \
+       int __ret_warn_on = !!(condition);      \
+       if (unlikely(__ret_warn_on))            \
+               __WARN_printf(format);          \
+       unlikely(__ret_warn_on);                \
+})
+
+#define WARN_ONCE(condition, format...)        ({      \
+       static int __warned;                    \
+       int __ret_warn_once = !!(condition);    \
+                                               \
+       if (unlikely(__ret_warn_once))          \
+               if (WARN(!__warned, format))    \
+                       __warned = 1;           \
+       unlikely(__ret_warn_once);              \
+})
+
+#endif /* _TOOLS_ASM_BUG_H */
index 285f28f7f82118289da42787a822712e94f8d4e8..4e535354f162220e41c5e4de8d5f68bfeaac0515 100644 (file)
@@ -4,6 +4,7 @@ tools/lib/traceevent
 tools/lib/lk
 tools/lib/symbol/kallsyms.c
 tools/lib/symbol/kallsyms.h
+tools/include/asm/bug.h
 tools/include/linux/compiler.h
 include/linux/const.h
 include/linux/perf_event.h
index 6be06767da7bf77d165d8d5170b2c9ebf4c7be14..87d7726cee2d992fb04919fb39ec27acd4200778 100644 (file)
@@ -226,7 +226,7 @@ LIB_H += util/include/linux/string.h
 LIB_H += util/include/linux/types.h
 LIB_H += util/include/linux/linkage.h
 LIB_H += util/include/asm/asm-offsets.h
-LIB_H += util/include/asm/bug.h
+LIB_H += ../include/asm/bug.h
 LIB_H += util/include/asm/byteorder.h
 LIB_H += util/include/asm/hweight.h
 LIB_H += util/include/asm/swab.h
diff --git a/tools/perf/util/include/asm/bug.h b/tools/perf/util/include/asm/bug.h
deleted file mode 100644 (file)
index 7fcc681..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef _PERF_ASM_GENERIC_BUG_H
-#define _PERF_ASM_GENERIC_BUG_H
-
-#define __WARN_printf(arg...)  do { fprintf(stderr, arg); } while (0)
-
-#define WARN(condition, format...) ({          \
-       int __ret_warn_on = !!(condition);      \
-       if (unlikely(__ret_warn_on))            \
-               __WARN_printf(format);          \
-       unlikely(__ret_warn_on);                \
-})
-
-#define WARN_ONCE(condition, format...)        ({      \
-       static int __warned;                    \
-       int __ret_warn_once = !!(condition);    \
-                                               \
-       if (unlikely(__ret_warn_once))          \
-               if (WARN(!__warned, format))    \
-                       __warned = 1;           \
-       unlikely(__ret_warn_once);              \
-})
-#endif