Refactoring: type description structures
[lttng-modules.git] / src / lttng-context-pid.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
886d51a3 3 * lttng-context-pid.c
9e7e4892
MD
4 *
5 * LTTng PID context.
6 *
886d51a3 7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9e7e4892
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 16#include <wrapper/vmalloc.h>
2df37e95 17#include <lttng/tracer.h>
9e7e4892 18
f1676205
MD
19static
20size_t pid_get_size(size_t offset)
21{
22 size_t size = 0;
23
a90917c3 24 size += lib_ring_buffer_align(offset, lttng_alignof(pid_t));
f1676205
MD
25 size += sizeof(pid_t);
26 return size;
27}
28
9e7e4892 29static
437d5aa5 30void pid_record(struct lttng_kernel_ctx_field *field,
9e7e4892 31 struct lib_ring_buffer_ctx *ctx,
a90917c3 32 struct lttng_channel *chan)
9e7e4892
MD
33{
34 pid_t pid;
35
b64bc438 36 pid = task_tgid_nr(current);
a90917c3 37 lib_ring_buffer_align_ctx(ctx, lttng_alignof(pid));
9e7e4892
MD
38 chan->ops->event_write(ctx, &pid, sizeof(pid));
39}
40
f127e61e 41static
437d5aa5 42void pid_get_value(struct lttng_kernel_ctx_field *field,
79150a49 43 struct lttng_probe_ctx *lttng_probe_ctx,
f127e61e
MD
44 union lttng_ctx_value *value)
45{
46 value->s64 = task_tgid_nr(current);
47}
48
437d5aa5
MD
49static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
50 lttng_kernel_static_event_field("pid",
51 lttng_kernel_static_type_integer_from_type(pid_t, __BYTE_ORDER, 10),
52 false, false, false),
53 pid_get_size,
54 NULL,
55 pid_record,
56 pid_get_value,
57 NULL, NULL);
58
59int lttng_add_pid_to_ctx(struct lttng_kernel_ctx **ctx)
9e7e4892 60{
437d5aa5 61 int ret;
9e7e4892 62
437d5aa5 63 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
44252f0f 64 return -EEXIST;
437d5aa5 65 ret = lttng_kernel_context_append(ctx, ctx_field);
263b6c88 66 wrapper_vmalloc_sync_mappings();
437d5aa5 67 return ret;
9e7e4892 68}
8070f5c0 69EXPORT_SYMBOL_GPL(lttng_add_pid_to_ctx);
This page took 0.046536 seconds and 4 git commands to generate.