Move alignment into event write callback
[lttng-modules.git] / src / lttng-context-tid.c
... / ...
CommitLineData
1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
2 *
3 * lttng-context-tid.c
4 *
5 * LTTng TID 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 tid_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t offset)
21{
22 size_t size = 0;
23
24 size += lib_ring_buffer_align(offset, lttng_alignof(pid_t));
25 size += sizeof(pid_t);
26 return size;
27}
28
29static
30void tid_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)
33{
34 pid_t tid;
35
36 tid = task_pid_nr(current);
37 chan->ops->event_write(ctx, &tid, sizeof(tid), lttng_alignof(tid));
38}
39
40static
41void tid_get_value(void *priv,
42 struct lttng_kernel_probe_ctx *lttng_probe_ctx,
43 struct lttng_ctx_value *value)
44{
45 pid_t tid;
46
47 tid = task_pid_nr(current);
48 value->u.s64 = tid;
49}
50
51static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
52 lttng_kernel_static_event_field("tid",
53 lttng_kernel_static_type_integer_from_type(pid_t, __BYTE_ORDER, 10),
54 false, false, false),
55 tid_get_size,
56 tid_record,
57 tid_get_value,
58 NULL, NULL);
59
60int lttng_add_tid_to_ctx(struct lttng_kernel_ctx **ctx)
61{
62 int ret;
63
64 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
65 return -EEXIST;
66 ret = lttng_kernel_context_append(ctx, ctx_field);
67 wrapper_vmalloc_sync_mappings();
68 return ret;
69}
70EXPORT_SYMBOL_GPL(lttng_add_tid_to_ctx);
This page took 0.022089 seconds and 4 git commands to generate.