Namespace all tracepoints
[lttng-modules.git] / instrumentation / events / lttng-module / printk.h
index 16949c4d83da54c25cebc73c01fb655c387da558..fd7cccc3769a9627092e536eede966600be7e1d3 100644 (file)
@@ -9,7 +9,10 @@
 
 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,10,0))
 
-LTTNG_TRACEPOINT_EVENT(console,
+LTTNG_TRACEPOINT_EVENT_MAP(console,
+
+       printk_console,
+
        TP_PROTO(const char *text, size_t len),
 
        TP_ARGS(text, len),
@@ -27,7 +30,10 @@ LTTNG_TRACEPOINT_EVENT(console,
 
 #elif (LINUX_VERSION_CODE >= KERNEL_VERSION(3,5,0))
 
-LTTNG_TRACEPOINT_EVENT_CONDITION(console,
+LTTNG_TRACEPOINT_EVENT_CONDITION_MAP(console,
+
+       printk_console,
+
        TP_PROTO(const char *log_buf, unsigned start, unsigned end,
                 unsigned log_buf_len),
 
@@ -48,7 +54,10 @@ LTTNG_TRACEPOINT_EVENT_CONDITION(console,
 
 #else /* (LINUX_VERSION_CODE < KERNEL_VERSION(3,5,0)) */
 
-LTTNG_TRACEPOINT_EVENT_CONDITION(console,
+LTTNG_TRACEPOINT_EVENT_CONDITION_MAP(console,
+
+       printk_console,
+
        TP_PROTO(const char *log_buf, unsigned start, unsigned end,
                 unsigned log_buf_len),
 
This page took 0.023308 seconds and 4 git commands to generate.