Commit | Line | Data |
---|---|---|
9f36eaed MJ |
1 | /* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1) |
2 | * | |
886d51a3 | 3 | * lttng-context-nice.c |
53f1f0ca MD |
4 | * |
5 | * LTTng nice context. | |
6 | * | |
886d51a3 | 7 | * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
53f1f0ca 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 <lttng-tracer.h> | |
53f1f0ca MD |
17 | |
18 | static | |
19 | size_t nice_get_size(size_t offset) | |
20 | { | |
21 | size_t size = 0; | |
22 | ||
a90917c3 | 23 | size += lib_ring_buffer_align(offset, lttng_alignof(int)); |
53f1f0ca MD |
24 | size += sizeof(int); |
25 | return size; | |
26 | } | |
27 | ||
28 | static | |
29 | void nice_record(struct lttng_ctx_field *field, | |
30 | struct lib_ring_buffer_ctx *ctx, | |
a90917c3 | 31 | struct lttng_channel *chan) |
53f1f0ca MD |
32 | { |
33 | int nice; | |
34 | ||
35 | nice = task_nice(current); | |
a90917c3 | 36 | lib_ring_buffer_align_ctx(ctx, lttng_alignof(nice)); |
53f1f0ca MD |
37 | chan->ops->event_write(ctx, &nice, sizeof(nice)); |
38 | } | |
39 | ||
f127e61e MD |
40 | static |
41 | void nice_get_value(struct lttng_ctx_field *field, | |
79150a49 | 42 | struct lttng_probe_ctx *lttng_probe_ctx, |
f127e61e MD |
43 | union lttng_ctx_value *value) |
44 | { | |
45 | value->s64 = task_nice(current); | |
46 | } | |
47 | ||
53f1f0ca MD |
48 | int lttng_add_nice_to_ctx(struct lttng_ctx **ctx) |
49 | { | |
50 | struct lttng_ctx_field *field; | |
53f1f0ca MD |
51 | |
52 | field = lttng_append_context(ctx); | |
53 | if (!field) | |
09fec6b4 | 54 | return -ENOMEM; |
44252f0f MD |
55 | if (lttng_find_context(*ctx, "nice")) { |
56 | lttng_remove_context_field(ctx, field); | |
57 | return -EEXIST; | |
58 | } | |
53f1f0ca MD |
59 | field->event_field.name = "nice"; |
60 | field->event_field.type.atype = atype_integer; | |
61 | field->event_field.type.u.basic.integer.size = sizeof(int) * CHAR_BIT; | |
a90917c3 | 62 | field->event_field.type.u.basic.integer.alignment = lttng_alignof(int) * CHAR_BIT; |
06254b0f | 63 | field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(int); |
53f1f0ca MD |
64 | field->event_field.type.u.basic.integer.reverse_byte_order = 0; |
65 | field->event_field.type.u.basic.integer.base = 10; | |
66 | field->event_field.type.u.basic.integer.encoding = lttng_encode_none; | |
67 | field->get_size = nice_get_size; | |
68 | field->record = nice_record; | |
f127e61e | 69 | field->get_value = nice_get_value; |
a9dd15da | 70 | lttng_context_update(*ctx); |
ea53823c | 71 | wrapper_vmalloc_sync_mappings(); |
53f1f0ca MD |
72 | return 0; |
73 | } | |
74 | EXPORT_SYMBOL_GPL(lttng_add_nice_to_ctx); |