Add prio and nice contexts
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 1 Jun 2011 18:01:10 +0000 (14:01 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Wed, 1 Jun 2011 18:01:10 +0000 (14:01 -0400)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Makefile
ltt-debugfs-abi.c
ltt-debugfs-abi.h
ltt-events.h
lttng-context-nice.c [new file with mode: 0644]
lttng-context-pid.c
lttng-context-prio.c

index 8f364dbff965994e3176f96af7974aeb6f3e4c09..fa337a0fd97332dd2586a763f7895ada610f21f6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,8 @@ obj-m += ltt-ring-buffer-metadata-client.o
 obj-m += ltt-relay.o
 ltt-relay-objs :=  ltt-events.o ltt-debugfs-abi.o \
                        ltt-probes.o ltt-core.o ltt-context.o \
-                       lttng-context-pid.o lttng-context-comm.o
+                       lttng-context-pid.o lttng-context-comm.o \
+                       lttng-context-prio.o lttng-context-nice.o
 
 obj-m += probes/
 obj-m += lib/
index aee5bf5da37c6bc912ec694e9d265300d2ff60c3..37b78de08d173ffbf88d16a9c5fccbba186ec4a3 100644 (file)
@@ -154,6 +154,8 @@ long lttng_abi_add_context(struct file *file,
                return lttng_add_pid_to_ctx(ctx);
        case LTTNG_KERNEL_CONTEXT_PRIO:
                return lttng_add_prio_to_ctx(ctx);
+       case LTTNG_KERNEL_CONTEXT_NICE:
+               return lttng_add_nice_to_ctx(ctx);
        case LTTNG_KERNEL_CONTEXT_PERF_COUNTER:
                return -ENOSYS;
        case LTTNG_KERNEL_CONTEXT_COMM:
index 586d3a5bdc48378265e31f009ed14e85f6e4e526..8483b2750a74106aa30313120affbeaafc07c70e 100644 (file)
@@ -66,6 +66,7 @@ enum lttng_kernel_context_type {
        LTTNG_KERNEL_CONTEXT_PERF_COUNTER,
        LTTNG_KERNEL_CONTEXT_COMM,
        LTTNG_KERNEL_CONTEXT_PRIO,
+       LTTNG_KERNEL_CONTEXT_NICE,
 };
 
 struct lttng_kernel_perf_counter_ctx {
index cb6ee211e41e5cd7001e7720d1ca837bd8768630..b9bb3bb95d8bba919729afabd17f135a76fe9791 100644 (file)
@@ -275,6 +275,7 @@ void lttng_destroy_context(struct lttng_ctx *ctx);
 int lttng_add_pid_to_ctx(struct lttng_ctx **ctx);
 int lttng_add_comm_to_ctx(struct lttng_ctx **ctx);
 int lttng_add_prio_to_ctx(struct lttng_ctx **ctx);
+int lttng_add_nice_to_ctx(struct lttng_ctx **ctx);
 
 #ifdef CONFIG_KPROBES
 int lttng_kprobes_register(const char *name,
diff --git a/lttng-context-nice.c b/lttng-context-nice.c
new file mode 100644 (file)
index 0000000..d7fafb9
--- /dev/null
@@ -0,0 +1,65 @@
+/*
+ * (C) Copyright       2009-2011 -
+ *             Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ *
+ * LTTng nice context.
+ *
+ * Dual LGPL v2.1/GPL v2 license.
+ */
+
+#include <linux/module.h>
+#include <linux/slab.h>
+#include <linux/sched.h>
+#include "ltt-events.h"
+#include "wrapper/ringbuffer/frontend_types.h"
+#include "wrapper/vmalloc.h"
+#include "ltt-tracer.h"
+
+static
+size_t nice_get_size(size_t offset)
+{
+       size_t size = 0;
+
+       size += lib_ring_buffer_align(offset, ltt_alignof(int));
+       size += sizeof(int);
+       return size;
+}
+
+static
+void nice_record(struct lttng_ctx_field *field,
+               struct lib_ring_buffer_ctx *ctx,
+               struct ltt_channel *chan)
+{
+       int nice;
+
+       nice = task_nice(current);
+       lib_ring_buffer_align_ctx(ctx, ltt_alignof(nice));
+       chan->ops->event_write(ctx, &nice, sizeof(nice));
+}
+
+int lttng_add_nice_to_ctx(struct lttng_ctx **ctx)
+{
+       struct lttng_ctx_field *field;
+       int ret;
+
+       field = lttng_append_context(ctx);
+       if (!field)
+               return ret;
+       field->event_field.name = "nice";
+       field->event_field.type.atype = atype_integer;
+       field->event_field.type.u.basic.integer.size = sizeof(int) * CHAR_BIT;
+       field->event_field.type.u.basic.integer.alignment = ltt_alignof(int) * CHAR_BIT;
+       field->event_field.type.u.basic.integer.signedness = is_signed_type(int);
+       field->event_field.type.u.basic.integer.reverse_byte_order = 0;
+       field->event_field.type.u.basic.integer.base = 10;
+       field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
+       field->get_size = nice_get_size;
+       field->record = nice_record;
+       wrapper_vmalloc_sync_all();
+       return 0;
+}
+EXPORT_SYMBOL_GPL(lttng_add_nice_to_ctx);
+
+MODULE_LICENSE("GPL and additional rights");
+MODULE_AUTHOR("Mathieu Desnoyers");
+MODULE_DESCRIPTION("Linux Trace Toolkit Nice Context");
index 956920fd71709104ff84e071ef82fec57c36e37e..ddd78a5d8dfb3f4b4e0eb296286a8c6d1a8cde3f 100644 (file)
@@ -62,4 +62,4 @@ EXPORT_SYMBOL_GPL(lttng_add_pid_to_ctx);
 
 MODULE_LICENSE("GPL and additional rights");
 MODULE_AUTHOR("Mathieu Desnoyers");
-MODULE_DESCRIPTION("Linux Trace Toolkit Perf Support");
+MODULE_DESCRIPTION("Linux Trace Toolkit PID Context");
index a748929a609c826ced34fb9b8c8a766e8e1b4c15..c8f83f485c334ac3bd423a499f333341afa61629 100644 (file)
@@ -32,9 +32,9 @@ void prio_record(struct lttng_ctx_field *field,
 {
        int prio;
 
-       pid = p->prio - MAX_RT_PRIO;
-       lib_ring_buffer_align_ctx(ctx, ltt_alignof(pid));
-       chan->ops->event_write(ctx, &pid, sizeof(pid));
+       prio = task_prio(current);
+       lib_ring_buffer_align_ctx(ctx, ltt_alignof(prio));
+       chan->ops->event_write(ctx, &prio, sizeof(prio));
 }
 
 int lttng_add_prio_to_ctx(struct lttng_ctx **ctx)
@@ -62,4 +62,4 @@ EXPORT_SYMBOL_GPL(lttng_add_prio_to_ctx);
 
 MODULE_LICENSE("GPL and additional rights");
 MODULE_AUTHOR("Mathieu Desnoyers");
-MODULE_DESCRIPTION("Linux Trace Toolkit Perf Support");
+MODULE_DESCRIPTION("Linux Trace Toolkit Priority Context");
This page took 0.028326 seconds and 4 git commands to generate.