Add event macro reset header, add kvm probe
authorMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Thu, 16 Dec 2010 03:17:29 +0000 (22:17 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Thu, 16 Dec 2010 03:17:29 +0000 (22:17 -0500)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
ltt-event-header.c
ltt-ring-buffer-client.h
ltt-tracer-core.h
ltt-tracer.h
probes/Makefile
probes/lttng-events-reset.h [new file with mode: 0644]
probes/lttng-events.h
probes/lttng-probe-kvm.c [new file with mode: 0644]
probes/lttng-probe-sched.c

index d2739fcbdfec28108bb67700adb5bdc8b44ea514..dc8bb9974aa5206365366659685773d5efeff11d 100644 (file)
@@ -47,7 +47,7 @@ void ltt_write_event_header_slow(const struct lib_ring_buffer_config *config,
                if (small_size == LTT_MAX_SMALL_SIZE)
                        lib_ring_buffer_write(config, ctx, &event_size,
                                              sizeof(u32));
-               lib_ring_buffer_align_ctx(config, ctx, sizeof(u64));
+               lib_ring_buffer_align_ctx(ctx, sizeof(u64));
                lib_ring_buffer_write(config, ctx, &ctx->tsc, sizeof(u64));
                break;
        case LTT_RFLAG_ID_SIZE:
index 229c06aab31fde8f7daae1b9bab283e6fb364fb2..e50c71c90b044e70cf8aa32394ac5a82027e9ef4 100644 (file)
@@ -105,11 +105,6 @@ static const struct lib_ring_buffer_config client_config = {
        .alloc = RING_BUFFER_ALLOC_PER_CPU,
        .sync = RING_BUFFER_SYNC_PER_CPU,
        .mode = RING_BUFFER_MODE_TEMPLATE,
-#ifdef RING_BUFFER_ALIGN
-       .align = RING_BUFFER_NATURAL,
-#else
-       .align = RING_BUFFER_PACKED,
-#endif
        .backend = RING_BUFFER_PAGE,
        .output = RING_BUFFER_SPLICE,
        .oops = RING_BUFFER_OOPS_CONSISTENCY,
index cb82658b19c0ea014f5823ae434d1259cfe668bf..c300e5d2d55352cd9c949d0d8cdda8fdf1ade57a 100644 (file)
 #include <linux/percpu.h>
 #include <linux/ltt-core.h>
 
+#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
+/* Align data on its natural alignment */
+#define RING_BUFFER_ALIGN
+#endif
+
+#include <linux/ringbuffer/config.h>
+
 struct ltt_session;
 struct ltt_channel;
 struct ltt_event;
index 3b5c3605fce7c7491943ed20afbec50c51be1d0f..1ca13a99aa7a22af873f1e8e462f320108d9fb94 100644 (file)
@@ -9,19 +9,11 @@
 #ifndef _LTT_TRACER_H
 #define _LTT_TRACER_H
 
-#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
-/* Align data on its natural alignment */
-#define RING_BUFFER_ALIGN
-#endif
-
-#include <linux/ringbuffer/config.h>
-
 #include <stdarg.h>
 #include <linux/types.h>
 #include <linux/limits.h>
 #include <linux/list.h>
 #include <linux/cache.h>
-#include <linux/kernel.h>
 #include <linux/timex.h>
 #include <linux/wait.h>
 #include <linux/trace-clock.h>
@@ -270,7 +262,7 @@ unsigned char record_header_size(const struct lib_ring_buffer_config *config,
 
        BUILD_BUG_ON(sizeof(struct event_header) != sizeof(u32));
 
-       padding = lib_ring_buffer_align(config, offset,
+       padding = lib_ring_buffer_align(offset,
                                        sizeof(struct event_header));
        offset += padding;
        offset += sizeof(struct event_header);
index ba634685f250d6ba72591bb91f5aae98e21453bf..1c4f32b8bca2c9804ea04d7f30af6e07ce555947 100644 (file)
@@ -6,9 +6,11 @@ ifneq ($(KERNELRELEASE),)
 ifneq ($(CONFIG_TRACEPOINTS),)
 
 ccflags-y += -I$(PWD)/probes
-obj-m += lttng-probe-sched.o
 obj-m += lttng-types.o
 
+obj-m += lttng-probe-sched.o
+obj-m += lttng-probe-kvm.o
+
 endif
 
 else
diff --git a/probes/lttng-events-reset.h b/probes/lttng-events-reset.h
new file mode 100644 (file)
index 0000000..2dac9e6
--- /dev/null
@@ -0,0 +1,37 @@
+/* Reset macros used within TRACE_EVENT to "nothing" */
+
+#undef __field
+#define __field(_type, _item)
+
+#undef __field_ext
+#define __field_ext(_type, _item, _filter_type)
+
+#undef __array
+#define __array(_type, _item, _length)
+
+#undef __dynamic_array
+#define __dynamic_array(_type, _item, _length)
+
+#undef __string
+#define __string(_item, _src)
+
+#undef TP_PROTO
+#define TP_PROTO(args...)
+
+#undef TP_ARGS
+#define TP_ARGS(args...)
+
+#undef TP_STRUCT__entry
+#define TP_STRUCT__entry(args...)
+
+#undef TP_fast_assign
+#define TP_fast_assign(args...)
+
+#undef TP_printk
+#define TP_printk(args...)
+
+#undef DECLARE_EVENT_CLASS
+#define DECLARE_EVENT_CLASS(_name, _proto, _args, _tstruct, _assign, _print)
+
+#undef DEFINE_EVENT
+#define DEFINE_EVENT(_template, _name, _proto, _args)
index 0c25b955392b8277c6811538d6ab719992798e0d..aef811cd5c775861730f373f43aad73fe28153eb 100644 (file)
@@ -1,7 +1,11 @@
 #include <lttng.h>
 #include <lttng-types.h>
 #include <linux/debugfs.h>
+#include "../ltt-tracer-core.h"
 
+#if 0
+
+/* keep for a later stage (copy stage) */
 /*
  * Macros mapping tp_assign() to "=", tp_memcpy() to memcpy() and tp_strcpy() to
  * strcpy().
@@ -20,6 +24,8 @@
 #undef tp_strcpy
 #define tp_strcpy(dest, src)           __assign_str(dest, src);
 
+#endif //0
+
 struct lttng_event_field {
        const char *name;
        const struct lttng_type type;
@@ -32,10 +38,7 @@ struct lttng_event_desc {
 };
 
 /*
- * Stage 1 of the trace events.
- *
- * Create event field type metadata section.
- * Each event produce an array of fields.
+ * Macro declarations used for all stages.
  */
 
 /*
@@ -47,6 +50,7 @@ struct lttng_event_desc {
  *
  * TRACE_EVENT is a one to one mapping between tracepoint and template.
  */
+
 #undef TRACE_EVENT
 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
        DECLARE_EVENT_CLASS(name,                              \
@@ -57,6 +61,26 @@ struct lttng_event_desc {
                             PARAMS(print))                    \
        DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args))
 
+#undef DEFINE_EVENT_PRINT
+#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
+       DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
+
+/* Callbacks are meaningless to LTTng. */
+#undef TRACE_EVENT_FN
+#define TRACE_EVENT_FN(name, proto, args, tstruct,                     \
+               assign, print, reg, unreg)                              \
+       TRACE_EVENT(name, PARAMS(proto), PARAMS(args),                  \
+               PARAMS(tstruct), PARAMS(assign), PARAMS(print))         \
+
+/*
+ * Stage 1 of the trace events.
+ *
+ * Create event field type metadata section.
+ * Each event produce an array of fields.
+ */
+
+#include "lttng-events-reset.h"        /* Reset all macros within TRACE_EVENT */
+
 /* Named field types must be defined in lttng-types.h */
 
 #undef __field
@@ -64,8 +88,7 @@ struct lttng_event_desc {
        { .name = #_item, .type = { .atype = atype_integer, .name = #_type} },
 
 #undef __field_ext
-#define __field_ext(_type, _item, _filter_type)                        \
-       { .name = #_item, .type = { .atype = atype_integer, .name = #_type} },
+#define __field_ext(_type, _item, _filter_type)                __field(_type, _item)
 
 #undef __array
 #define __array(_type, _item, _length)                         \
@@ -102,41 +125,15 @@ struct lttng_event_desc {
                },                                              \
        },
 
-#undef TP_PROTO
-#define TP_PROTO(args...)
-
-#undef TP_ARGS
-#define TP_ARGS(args...)
-
 #undef TP_STRUCT__entry
 #define TP_STRUCT__entry(args...) args /* Only one used in this phase */
 
-#undef TP_fast_assign
-#define TP_fast_assign(args...)
-
-#undef TP_printk
-#define TP_printk(args...)
-
 #undef DECLARE_EVENT_CLASS
-#define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
-       static const struct lttng_event_field __event_fields___##name[] = { \
-               tstruct                                                 \
+#define DECLARE_EVENT_CLASS(_name, _proto, _args, _tstruct, _assign, _print)   \
+       static const struct lttng_event_field __event_fields___##_name[] = {    \
+               _tstruct                                                        \
        };
 
-#undef DEFINE_EVENT
-#define DEFINE_EVENT(template, name, proto, args)
-
-#undef DEFINE_EVENT_PRINT
-#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
-       DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
-
-/* Callbacks are meaningless to LTTng. */
-#undef TRACE_EVENT_FN
-#define TRACE_EVENT_FN(name, proto, args, tstruct,                     \
-               assign, print, reg, unreg)                              \
-       TRACE_EVENT(name, PARAMS(proto), PARAMS(args),                  \
-               PARAMS(tstruct), PARAMS(assign), PARAMS(print))         \
-
 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
 
 /*
@@ -145,56 +142,9 @@ struct lttng_event_desc {
  * Create an array of events.
  */
 
-/*
- * DECLARE_EVENT_CLASS can be used to add a generic function
- * handlers for events. That is, if all events have the same
- * parameters and just have distinct trace points.
- * Each tracepoint can be defined with DEFINE_EVENT and that
- * will map the DECLARE_EVENT_CLASS to the tracepoint.
- *
- * TRACE_EVENT is a one to one mapping between tracepoint and template.
- */
-#undef TRACE_EVENT
-#define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
-       DECLARE_EVENT_CLASS(name,                              \
-                            PARAMS(proto),                    \
-                            PARAMS(args),                     \
-                            PARAMS(tstruct),                  \
-                            PARAMS(assign),                   \
-                            PARAMS(print))                    \
-       DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args))
-
 /* Named field types must be defined in lttng-types.h */
 
-#undef __field
-#define __field(_type, _item)
-
-#undef __field_ext
-#define __field_ext(_type, _item, _filter_type)
-
-#undef __array
-#define __array(_type, _item, _length)
-
-#undef __dynamic_array
-#define __dynamic_array(_type, _item, _length)
-
-#undef __string
-#define __string(_item, _src)
-
-#undef TP_PROTO
-#define TP_PROTO(args...)
-
-#undef TP_ARGS
-#define TP_ARGS(args...)
-
-#undef TP_STRUCT__entry
-#define TP_STRUCT__entry(args...)
-
-#undef TP_fast_assign
-#define TP_fast_assign(args...)
-
-#undef TP_printk
-#define TP_printk(args...)
+#include "lttng-events-reset.h"        /* Reset all macros within TRACE_EVENT */
 
 #undef DECLARE_EVENT_CLASS
 #define DECLARE_EVENT_CLASS(_name, proto, args, tstruct, assign, print)        \
@@ -202,21 +152,7 @@ struct lttng_event_desc {
                        .fields = __event_fields___##_name,             \
                        .name = #_name,                                 \
                        .nr_fields = ARRAY_SIZE(__event_fields___##_name), \
-                },
-
-#undef DEFINE_EVENT
-#define DEFINE_EVENT(template, name, proto, args)
-
-#undef DEFINE_EVENT_PRINT
-#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
-       DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
-
-/* Callbacks are meaningless to LTTng. */
-#undef TRACE_EVENT_FN
-#define TRACE_EVENT_FN(name, proto, args, tstruct,                     \
-               assign, print, reg, unreg)                              \
-       TRACE_EVENT(name, PARAMS(proto), PARAMS(args),                  \
-               PARAMS(tstruct), PARAMS(assign), PARAMS(print))         \
+               },
 
 #define TP_ID1(_token, _system)        _token##_system
 #define TP_ID(_token, _system) TP_ID1(_token, _system)
@@ -234,75 +170,6 @@ static const struct lttng_event_desc TP_ID(__event_desc___, TRACE_SYSTEM)[] = {
  * Create seq file metadata output.
  */
 
-/*
- * DECLARE_EVENT_CLASS can be used to add a generic function
- * handlers for events. That is, if all events have the same
- * parameters and just have distinct trace points.
- * Each tracepoint can be defined with DEFINE_EVENT and that
- * will map the DECLARE_EVENT_CLASS to the tracepoint.
- *
- * TRACE_EVENT is a one to one mapping between tracepoint and template.
- */
-#undef TRACE_EVENT
-#define TRACE_EVENT(name, proto, args, tstruct, assign, print) \
-       DECLARE_EVENT_CLASS(name,                              \
-                            PARAMS(proto),                    \
-                            PARAMS(args),                     \
-                            PARAMS(tstruct),                  \
-                            PARAMS(assign),                   \
-                            PARAMS(print))                    \
-       DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args))
-
-/* Named field types must be defined in lttng-types.h */
-
-#undef __field
-#define __field(_type, _item)
-
-#undef __field_ext
-#define __field_ext(_type, _item, _filter_type)
-
-#undef __array
-#define __array(_type, _item, _length)
-
-#undef __dynamic_array
-#define __dynamic_array(_type, _item, _length)
-
-#undef __string
-#define __string(_item, _src)
-
-#undef TP_PROTO
-#define TP_PROTO(args...)
-
-#undef TP_ARGS
-#define TP_ARGS(args...)
-
-#undef TP_STRUCT__entry
-#define TP_STRUCT__entry(args...)
-
-#undef TP_fast_assign
-#define TP_fast_assign(args...)
-
-#undef TP_printk
-#define TP_printk(args...)
-
-#undef DECLARE_EVENT_CLASS
-#define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
-static void ()
-
-#undef DEFINE_EVENT
-#define DEFINE_EVENT(template, name, proto, args)
-
-#undef DEFINE_EVENT_PRINT
-#define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
-       DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
-
-/* Callbacks are meaningless to LTTng. */
-#undef TRACE_EVENT_FN
-#define TRACE_EVENT_FN(name, proto, args, tstruct,                     \
-               assign, print, reg, unreg)                              \
-       TRACE_EVENT(name, PARAMS(proto), PARAMS(args),                  \
-               PARAMS(tstruct), PARAMS(assign), PARAMS(print))         \
-
 #define TP_ID1(_token, _system)        _token##_system
 #define TP_ID(_token, _system) TP_ID1(_token, _system)
 #define module_init_eval1(_token, _system)     module_init(_token##_system)
@@ -313,9 +180,11 @@ static void ()
 static void *TP_ID(__lttng_seq_start__, TRACE_SYSTEM)(struct seq_file *m,
                                                      loff_t *pos)
 {
-       const struct lttng_event_desc *desc = &TP_ID(__event_desc___, TRACE_SYSTEM)[*pos];
+       const struct lttng_event_desc *desc =
+               &TP_ID(__event_desc___, TRACE_SYSTEM)[*pos];
 
-       if (desc > &TP_ID(__event_desc___, TRACE_SYSTEM)[ARRAY_SIZE(TP_ID(__event_desc___, TRACE_SYSTEM)) - 1])
+       if (desc > &TP_ID(__event_desc___, TRACE_SYSTEM)
+                       [ARRAY_SIZE(TP_ID(__event_desc___, TRACE_SYSTEM)) - 1])
                return NULL;
        return (void *) desc;
 }
@@ -323,9 +192,11 @@ static void *TP_ID(__lttng_seq_start__, TRACE_SYSTEM)(struct seq_file *m,
 static void *TP_ID(__lttng_seq_next__, TRACE_SYSTEM)(struct seq_file *m,
                                                     void *p, loff_t *ppos)
 {
-       const struct lttng_event_desc *desc = &TP_ID(__event_desc___, TRACE_SYSTEM)[++(*ppos)];
+       const struct lttng_event_desc *desc =
+               &TP_ID(__event_desc___, TRACE_SYSTEM)[++(*ppos)];
 
-       if (desc > &TP_ID(__event_desc___, TRACE_SYSTEM)[ARRAY_SIZE(TP_ID(__event_desc___, TRACE_SYSTEM)) - 1])
+       if (desc > &TP_ID(__event_desc___, TRACE_SYSTEM)
+                       [ARRAY_SIZE(TP_ID(__event_desc___, TRACE_SYSTEM)) - 1])
                return NULL;
        return (void *) desc;
 }
@@ -374,7 +245,8 @@ TP_ID(__lttng_types_open__, TRACE_SYSTEM)(struct inode *inode, struct file *file
        return seq_open(file, &TP_ID(__lttng_types_seq_ops__, TRACE_SYSTEM));
 }
 
-static const struct file_operations TP_ID(__lttng_types_fops__, TRACE_SYSTEM) = {
+static const
+struct file_operations TP_ID(__lttng_types_fops__, TRACE_SYSTEM) = {
         .open = TP_ID(__lttng_types_open__, TRACE_SYSTEM),
         .read = seq_read,
         .llseek = seq_lseek,
@@ -388,8 +260,9 @@ static int TP_ID(__lttng_types_init__, TRACE_SYSTEM)(void)
        int ret = 0;
 
        TP_ID(__lttng_types_dentry__, TRACE_SYSTEM) =
-               debugfs_create_file("lttng-events-" __stringify(TRACE_SYSTEM), S_IWUSR,
-                                   NULL, NULL, &TP_ID(__lttng_types_fops__, TRACE_SYSTEM));
+               debugfs_create_file("lttng-events-" __stringify(TRACE_SYSTEM),
+                                   S_IWUSR, NULL, NULL,
+                                   &TP_ID(__lttng_types_fops__, TRACE_SYSTEM));
        if (IS_ERR(TP_ID(__lttng_types_dentry__, TRACE_SYSTEM))
            || !TP_ID(__lttng_types_dentry__, TRACE_SYSTEM)) {
                printk(KERN_ERR "Error creating LTTng type export file\n");
@@ -415,18 +288,61 @@ module_exit_eval(__lttng_types_exit__, TRACE_SYSTEM);
 #undef TP_ID
 
 
-#if 0
-
 /*
- * Stage 3 of the trace events.
+ * Stage 4 of the trace events.
  *
  * Create static inline function that calculates event size.
  */
 
+#include "lttng-events-reset.h"        /* Reset all macros within TRACE_EVENT */
+
+/* Named field types must be defined in lttng-types.h */
+
+#undef __field
+#define __field(_type, _item)                                          \
+       len += lib_ring_buffer_align(len, sizeof(_type));               \
+       len += sizeof(_type);
+
+#undef __field_ext
+#define __field_ext(_type, _item, _filter_type)        __field(_type, _item)
+
+#undef __array
+#define __array(_type, _item, _length)                                 \
+       len += lib_ring_buffer_align(len, sizeof(_type));               \
+       len += sizeof(_type) * (_length);
+
+#undef __dynamic_array
+#define __dynamic_array(_type, _item, _length)                         \
+       len += lib_ring_buffer_align(len, sizeof(u32));                 \
+       len += sizeof(u32);                                             \
+       len += lib_ring_buffer_align(len, sizeof(_type));               \
+       len += sizeof(_type) * (_length);
 
+#undef __string
+#define __string(_item, _src)                                          \
+       len += dynamic_len[dynamic_len_idx++] = strlen(_src) + 1;
+
+#undef TP_STRUCT__entry
+#define TP_STRUCT__entry(args...) args /* Only one used in this phase */
+
+#undef DECLARE_EVENT_CLASS
+#define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \
+static inline size_t __event_get_size__##name(size_t *dynamic_len)     \
+{                                                                      \
+       size_t len = 0;                                                 \
+       unsigned int dynamic_len_idx = 0;                               \
+                                                                       \
+       if (0)                                                          \
+               (void) dynamic_len_idx; /* don't warn if unused */      \
+       tstruct                                                         \
+       return len;                                                     \
+}
 
 #include TRACE_INCLUDE(TRACE_INCLUDE_FILE)
 
+
+#if 0
+
 /*
  * Stage 4 of the trace events.
  *
diff --git a/probes/lttng-probe-kvm.c b/probes/lttng-probe-kvm.c
new file mode 100644 (file)
index 0000000..b70b058
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ * probes/lttng-probe-kvm.c
+ *
+ * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ *
+ * LTTng kvm probes.
+ */
+
+#include <linux/module.h>
+
+/*
+ * Create LTTng tracepoint probes.
+ */
+#define LTTNG_PACKAGE_BUILD
+#define CREATE_TRACE_POINTS
+#undef CONFIG_EVENT_TRACING    /* Don't create Ftrace probes */
+
+#include <linux/kvm_host.h>
+#include <trace/events/kvm.h>
+
+MODULE_LICENSE("GPL and additional rights");
+MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
+MODULE_DESCRIPTION("LTTng kvm probes");
index dfe26c0084588e7e783e02556d023285fdb3c6f7..99aadc46c21681bd9ca31f48dd8ee634e9b580d3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * probes/sched.c
+ * probes/lttng-probe-sched.c
  *
  * Copyright 2010 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  *
This page took 0.034632 seconds and 4 git commands to generate.