Messages in this thread Patch in this message |  | | | Date | Sun, 10 Feb 2008 08:20:18 +0100 | | From | Ingo Molnar <> | | Subject | [06/19] tracing: add notrace to linkage.h |
From: Ingo Molnar <mingo@elte.hu>
notrace signals that a function should not be traced. Most of the
time this is used by tracers to annotate code that cannot be
traced - it's in a volatile state (such as in user vdso context
or NMI context) or it's in the tracer internals.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
include/linux/linkage.h | 2 ++
1 file changed, 2 insertions(+)
Index: linux/include/linux/linkage.h
===================================================================
--- linux.orig/include/linux/linkage.h
+++ linux/include/linux/linkage.h
@@ -3,6 +3,8 @@
#include <asm/linkage.h>
+#define notrace __attribute__((no_instrument_function))
+
#ifdef __cplusplus
#define CPP_ASMLINKAGE extern "C"
#else
|  |