1 /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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>
20 size_t vtid_get_size(void *priv
, struct lttng_kernel_probe_ctx
*probe_ctx
, size_t offset
)
24 size
+= lib_ring_buffer_align(offset
, lttng_alignof(pid_t
));
25 size
+= sizeof(pid_t
);
30 void vtid_record(void *priv
, struct lttng_kernel_probe_ctx
*probe_ctx
,
31 struct lttng_kernel_ring_buffer_ctx
*ctx
,
32 struct lttng_kernel_channel_buffer
*chan
)
37 * nsproxy can be NULL when scheduled out of exit.
39 if (!current
->nsproxy
)
42 vtid
= task_pid_vnr(current
);
43 chan
->ops
->event_write(ctx
, &vtid
, sizeof(vtid
), lttng_alignof(vtid
));
47 void vtid_get_value(void *priv
,
48 struct lttng_kernel_probe_ctx
*lttng_probe_ctx
,
49 struct lttng_ctx_value
*value
)
54 * nsproxy can be NULL when scheduled out of exit.
56 if (!current
->nsproxy
)
59 vtid
= task_pid_vnr(current
);
63 static 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),
72 int lttng_add_vtid_to_ctx(struct lttng_kernel_ctx
**ctx
)
76 if (lttng_kernel_find_context(*ctx
, ctx_field
->event_field
->name
))
78 ret
= lttng_kernel_context_append(ctx
, ctx_field
);
79 wrapper_vmalloc_sync_mappings();
82 EXPORT_SYMBOL_GPL(lttng_add_vtid_to_ctx
);