Add support for kvm x86 specific tracepoints
[lttng-modules.git] / lttng-context-prio.c
1 /*
2 * lttng-context-prio.c
3 *
4 * LTTng priority context.
5 *
6 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/sched.h>
26 #include "lttng-events.h"
27 #include "wrapper/ringbuffer/frontend_types.h"
28 #include "wrapper/vmalloc.h"
29 #include "wrapper/kallsyms.h"
30 #include "lttng-tracer.h"
31
32 static
33 int (*wrapper_task_prio_sym)(struct task_struct *t);
34
35 int wrapper_task_prio_init(void)
36 {
37 wrapper_task_prio_sym = (void *) kallsyms_lookup_funcptr("task_prio");
38 if (!wrapper_task_prio_sym) {
39 printk(KERN_WARNING "LTTng: task_prio symbol lookup failed.\n");
40 return -EINVAL;
41 }
42 return 0;
43 }
44
45 static
46 size_t prio_get_size(size_t offset)
47 {
48 size_t size = 0;
49
50 size += lib_ring_buffer_align(offset, lttng_alignof(int));
51 size += sizeof(int);
52 return size;
53 }
54
55 static
56 void prio_record(struct lttng_ctx_field *field,
57 struct lib_ring_buffer_ctx *ctx,
58 struct lttng_channel *chan)
59 {
60 int prio;
61
62 prio = wrapper_task_prio_sym(current);
63 lib_ring_buffer_align_ctx(ctx, lttng_alignof(prio));
64 chan->ops->event_write(ctx, &prio, sizeof(prio));
65 }
66
67 int lttng_add_prio_to_ctx(struct lttng_ctx **ctx)
68 {
69 struct lttng_ctx_field *field;
70 int ret;
71
72 if (!wrapper_task_prio_sym) {
73 ret = wrapper_task_prio_init();
74 if (ret)
75 return ret;
76 }
77
78 field = lttng_append_context(ctx);
79 if (!field)
80 return -ENOMEM;
81 if (lttng_find_context(*ctx, "prio")) {
82 lttng_remove_context_field(ctx, field);
83 return -EEXIST;
84 }
85 field->event_field.name = "prio";
86 field->event_field.type.atype = atype_integer;
87 field->event_field.type.u.basic.integer.size = sizeof(int) * CHAR_BIT;
88 field->event_field.type.u.basic.integer.alignment = lttng_alignof(int) * CHAR_BIT;
89 field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(int);
90 field->event_field.type.u.basic.integer.reverse_byte_order = 0;
91 field->event_field.type.u.basic.integer.base = 10;
92 field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
93 field->get_size = prio_get_size;
94 field->record = prio_record;
95 wrapper_vmalloc_sync_all();
96 return 0;
97 }
98 EXPORT_SYMBOL_GPL(lttng_add_prio_to_ctx);
99
100 MODULE_LICENSE("GPL and additional rights");
101 MODULE_AUTHOR("Mathieu Desnoyers");
102 MODULE_DESCRIPTION("Linux Trace Toolkit Priority Context");
This page took 0.03072 seconds and 4 git commands to generate.