Refactoring: type description structures
[lttng-modules.git] / src / lttng-context-prio.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 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>
2df37e95 13#include <lttng/events.h>
437d5aa5 14#include <lttng/events-internal.h>
24591303 15#include <ringbuffer/frontend_types.h>
241ae9a8
MD
16#include <wrapper/vmalloc.h>
17#include <wrapper/kallsyms.h>
2df37e95 18#include <lttng/tracer.h>
a8ad3613 19
979133c5
MD
20static
21int (*wrapper_task_prio_sym)(struct task_struct *t);
22
23int wrapper_task_prio_init(void)
24{
c539a324 25 wrapper_task_prio_sym = (void *) kallsyms_lookup_funcptr("task_prio");
979133c5
MD
26 if (!wrapper_task_prio_sym) {
27 printk(KERN_WARNING "LTTng: task_prio symbol lookup failed.\n");
28 return -EINVAL;
29 }
30 return 0;
31}
32
3dfec228
MJ
33/*
34 * Canary function to check for 'task_prio()' at compile time.
35 *
36 * From 'include/linux/sched.h':
37 *
38 * extern int task_prio(const struct task_struct *p);
39 */
40__attribute__((unused)) static
41int __canary__task_prio(const struct task_struct *p)
42{
43 return task_prio(p);
44}
45
a8ad3613
MD
46static
47size_t prio_get_size(size_t offset)
48{
49 size_t size = 0;
50
a90917c3 51 size += lib_ring_buffer_align(offset, lttng_alignof(int));
a8ad3613
MD
52 size += sizeof(int);
53 return size;
54}
55
56static
437d5aa5 57void prio_record(struct lttng_kernel_ctx_field *field,
a8ad3613 58 struct lib_ring_buffer_ctx *ctx,
a90917c3 59 struct lttng_channel *chan)
a8ad3613
MD
60{
61 int prio;
62
8fefc8a2 63 prio = wrapper_task_prio_sym(current);
a90917c3 64 lib_ring_buffer_align_ctx(ctx, lttng_alignof(prio));
53f1f0ca 65 chan->ops->event_write(ctx, &prio, sizeof(prio));
a8ad3613
MD
66}
67
f127e61e 68static
437d5aa5 69void prio_get_value(struct lttng_kernel_ctx_field *field,
79150a49 70 struct lttng_probe_ctx *lttng_probe_ctx,
f127e61e
MD
71 union lttng_ctx_value *value)
72{
73 value->s64 = wrapper_task_prio_sym(current);
74}
75
437d5aa5
MD
76static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
77 lttng_kernel_static_event_field("prio",
78 lttng_kernel_static_type_integer_from_type(int, __BYTE_ORDER, 10),
79 false, false, false),
80 prio_get_size,
81 NULL,
82 prio_record,
83 prio_get_value,
84 NULL, NULL);
85
86int lttng_add_prio_to_ctx(struct lttng_kernel_ctx **ctx)
a8ad3613 87{
a8ad3613
MD
88 int ret;
89
437d5aa5 90 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
44252f0f 91 return -EEXIST;
437d5aa5 92 ret = lttng_kernel_context_append(ctx, ctx_field);
263b6c88 93 wrapper_vmalloc_sync_mappings();
437d5aa5 94 return ret;
a8ad3613
MD
95}
96EXPORT_SYMBOL_GPL(lttng_add_prio_to_ctx);
This page took 0.0475950000000001 seconds and 4 git commands to generate.