Fix: timer_expire_entry changed in 4.19.312
[lttng-modules.git] / lttng-context-prio.c
CommitLineData
9f36eaed
MJ
1/* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
2 *
886d51a3 3 * lttng-context-prio.c
a8ad3613
MD
4 *
5 * LTTng priority context.
6 *
886d51a3 7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
a8ad3613
MD
8 */
9
10#include <linux/module.h>
11#include <linux/slab.h>
12#include <linux/sched.h>
241ae9a8
MD
13#include <lttng-events.h>
14#include <wrapper/ringbuffer/frontend_types.h>
15#include <wrapper/vmalloc.h>
16#include <wrapper/kallsyms.h>
17#include <lttng-tracer.h>
a8ad3613 18
979133c5
MD
19static
20int (*wrapper_task_prio_sym)(struct task_struct *t);
21
22int wrapper_task_prio_init(void)
23{
c539a324 24 wrapper_task_prio_sym = (void *) kallsyms_lookup_funcptr("task_prio");
979133c5
MD
25 if (!wrapper_task_prio_sym) {
26 printk(KERN_WARNING "LTTng: task_prio symbol lookup failed.\n");
27 return -EINVAL;
28 }
29 return 0;
30}
31
60c64030
MJ
32/*
33 * Canary function to check for 'task_prio()' at compile time.
34 *
35 * From 'include/linux/sched.h':
36 *
37 * extern int task_prio(const struct task_struct *p);
38 */
39__attribute__((unused)) static
40int __canary__task_prio(const struct task_struct *p)
41{
42 return task_prio(p);
43}
44
a8ad3613
MD
45static
46size_t prio_get_size(size_t offset)
47{
48 size_t size = 0;
49
a90917c3 50 size += lib_ring_buffer_align(offset, lttng_alignof(int));
a8ad3613
MD
51 size += sizeof(int);
52 return size;
53}
54
55static
56void prio_record(struct lttng_ctx_field *field,
57 struct lib_ring_buffer_ctx *ctx,
a90917c3 58 struct lttng_channel *chan)
a8ad3613
MD
59{
60 int prio;
61
8fefc8a2 62 prio = wrapper_task_prio_sym(current);
a90917c3 63 lib_ring_buffer_align_ctx(ctx, lttng_alignof(prio));
53f1f0ca 64 chan->ops->event_write(ctx, &prio, sizeof(prio));
a8ad3613
MD
65}
66
f127e61e
MD
67static
68void prio_get_value(struct lttng_ctx_field *field,
79150a49 69 struct lttng_probe_ctx *lttng_probe_ctx,
f127e61e
MD
70 union lttng_ctx_value *value)
71{
72 value->s64 = wrapper_task_prio_sym(current);
73}
74
a8ad3613
MD
75int lttng_add_prio_to_ctx(struct lttng_ctx **ctx)
76{
77 struct lttng_ctx_field *field;
78 int ret;
79
979133c5
MD
80 if (!wrapper_task_prio_sym) {
81 ret = wrapper_task_prio_init();
82 if (ret)
83 return ret;
84 }
85
a8ad3613
MD
86 field = lttng_append_context(ctx);
87 if (!field)
09fec6b4 88 return -ENOMEM;
44252f0f
MD
89 if (lttng_find_context(*ctx, "prio")) {
90 lttng_remove_context_field(ctx, field);
91 return -EEXIST;
92 }
a8ad3613
MD
93 field->event_field.name = "prio";
94 field->event_field.type.atype = atype_integer;
95 field->event_field.type.u.basic.integer.size = sizeof(int) * CHAR_BIT;
a90917c3 96 field->event_field.type.u.basic.integer.alignment = lttng_alignof(int) * CHAR_BIT;
06254b0f 97 field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(int);
a8ad3613
MD
98 field->event_field.type.u.basic.integer.reverse_byte_order = 0;
99 field->event_field.type.u.basic.integer.base = 10;
100 field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
101 field->get_size = prio_get_size;
102 field->record = prio_record;
f127e61e 103 field->get_value = prio_get_value;
a9dd15da 104 lttng_context_update(*ctx);
ea53823c 105 wrapper_vmalloc_sync_mappings();
a8ad3613
MD
106 return 0;
107}
108EXPORT_SYMBOL_GPL(lttng_add_prio_to_ctx);
This page took 0.053422 seconds and 4 git commands to generate.