Refactoring: type description structures
[lttng-modules.git] / src / lttng-context-nice.c
... / ...
CommitLineData
1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
2 *
3 * lttng-context-nice.c
4 *
5 * LTTng nice context.
6 *
7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8 */
9
10#include <linux/module.h>
11#include <linux/slab.h>
12#include <linux/sched.h>
13#include <lttng/events.h>
14#include <lttng/events-internal.h>
15#include <ringbuffer/frontend_types.h>
16#include <wrapper/vmalloc.h>
17#include <lttng/tracer.h>
18
19static
20size_t nice_get_size(size_t offset)
21{
22 size_t size = 0;
23
24 size += lib_ring_buffer_align(offset, lttng_alignof(int));
25 size += sizeof(int);
26 return size;
27}
28
29static
30void nice_record(struct lttng_kernel_ctx_field *field,
31 struct lib_ring_buffer_ctx *ctx,
32 struct lttng_channel *chan)
33{
34 int nice;
35
36 nice = task_nice(current);
37 lib_ring_buffer_align_ctx(ctx, lttng_alignof(nice));
38 chan->ops->event_write(ctx, &nice, sizeof(nice));
39}
40
41static
42void nice_get_value(struct lttng_kernel_ctx_field *field,
43 struct lttng_probe_ctx *lttng_probe_ctx,
44 union lttng_ctx_value *value)
45{
46 value->s64 = task_nice(current);
47}
48
49static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
50 lttng_kernel_static_event_field("nice",
51 lttng_kernel_static_type_integer_from_type(int, __BYTE_ORDER, 10),
52 false, false, false),
53 nice_get_size,
54 NULL,
55 nice_record,
56 nice_get_value,
57 NULL, NULL);
58
59int lttng_add_nice_to_ctx(struct lttng_kernel_ctx **ctx)
60{
61 int ret;
62
63 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
64 return -EEXIST;
65 ret = lttng_kernel_context_append(ctx, ctx_field);
66 wrapper_vmalloc_sync_mappings();
67 return ret;
68}
69EXPORT_SYMBOL_GPL(lttng_add_nice_to_ctx);
This page took 0.022951 seconds and 4 git commands to generate.