Fix: timer_expire_entry changed in 4.19.312
[lttng-modules.git] / src / lttng-context-vtid.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
886d51a3 3 * lttng-context-vtid.c
b64bc438
MD
4 *
5 * LTTng vTID context.
6 *
886d51a3 7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
b64bc438
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>
b64bc438
MD
18
19static
a92e844e 20size_t vtid_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t offset)
b64bc438
MD
21{
22 size_t size = 0;
23
a90917c3 24 size += lib_ring_buffer_align(offset, lttng_alignof(pid_t));
b64bc438
MD
25 size += sizeof(pid_t);
26 return size;
27}
28
29static
a92e844e 30void vtid_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx,
8a57ec02 31 struct lttng_kernel_ring_buffer_ctx *ctx,
f7d06400 32 struct lttng_kernel_channel_buffer *chan)
b64bc438
MD
33{
34 pid_t vtid;
35
90f96adf
MD
36 /*
37 * nsproxy can be NULL when scheduled out of exit.
38 */
39 if (!current->nsproxy)
40 vtid = 0;
41 else
42 vtid = task_pid_vnr(current);
f5ffbd77 43 chan->ops->event_write(ctx, &vtid, sizeof(vtid), lttng_alignof(vtid));
b64bc438
MD
44}
45
f127e61e 46static
2dc781e0 47void vtid_get_value(void *priv,
a92e844e 48 struct lttng_kernel_probe_ctx *lttng_probe_ctx,
2dc781e0 49 struct lttng_ctx_value *value)
f127e61e
MD
50{
51 pid_t vtid;
52
53 /*
54 * nsproxy can be NULL when scheduled out of exit.
55 */
56 if (!current->nsproxy)
57 vtid = 0;
58 else
59 vtid = task_pid_vnr(current);
2dc781e0 60 value->u.s64 = vtid;
f127e61e
MD
61}
62
437d5aa5
MD
63static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
64 lttng_kernel_static_event_field("vtid",
65 lttng_kernel_static_type_integer_from_type(pid_t, __BYTE_ORDER, 10),
4697aac7 66 false, false),
437d5aa5 67 vtid_get_size,
437d5aa5
MD
68 vtid_record,
69 vtid_get_value,
70 NULL, NULL);
71
72int lttng_add_vtid_to_ctx(struct lttng_kernel_ctx **ctx)
b64bc438 73{
437d5aa5 74 int ret;
b64bc438 75
437d5aa5 76 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
44252f0f 77 return -EEXIST;
437d5aa5 78 ret = lttng_kernel_context_append(ctx, ctx_field);
263b6c88 79 wrapper_vmalloc_sync_mappings();
437d5aa5 80 return ret;
b64bc438
MD
81}
82EXPORT_SYMBOL_GPL(lttng_add_vtid_to_ctx);
This page took 0.062191 seconds and 4 git commands to generate.