Refactoring: context callbacks
[lttng-modules.git] / src / lttng-context-migratable.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
79150a49
JD
3 * lttng-context-migratable.c
4 *
5 * LTTng migratable context.
6 *
7 * Copyright (C) 2009-2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
79150a49
JD
8 */
9
10#include <linux/module.h>
11#include <linux/slab.h>
12#include <linux/sched.h>
13#include <linux/irqflags.h>
2df37e95 14#include <lttng/events.h>
24591303 15#include <ringbuffer/frontend_types.h>
241ae9a8 16#include <wrapper/vmalloc.h>
2df37e95 17#include <lttng/tracer.h>
79150a49
JD
18
19static
2dc781e0 20size_t migratable_get_size(void *priv, struct lttng_probe_ctx *probe_ctx, size_t offset)
79150a49
JD
21{
22 size_t size = 0;
23
24 size += lib_ring_buffer_align(offset, lttng_alignof(uint8_t));
25 size += sizeof(uint8_t);
26 return size;
27}
28
29static
2dc781e0 30void migratable_record(void *priv, struct lttng_probe_ctx *probe_ctx,
79150a49
JD
31 struct lib_ring_buffer_ctx *ctx,
32 struct lttng_channel *chan)
33{
c6b2e60d 34 uint8_t migratable = !current->migrate_disable;
79150a49
JD
35
36 lib_ring_buffer_align_ctx(ctx, lttng_alignof(migratable));
37 chan->ops->event_write(ctx, &migratable, sizeof(migratable));
38}
39
40static
2dc781e0 41void migratable_get_value(void *priv,
79150a49 42 struct lttng_probe_ctx *lttng_probe_ctx,
2dc781e0 43 struct lttng_ctx_value *value)
79150a49 44{
2dc781e0 45 value->u.s64 = !current->migrate_disable;
79150a49
JD
46}
47
087e3f1b
MJ
48static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
49 lttng_kernel_static_event_field("migratable",
50 lttng_kernel_static_type_integer_from_type(uint8_t, __BYTE_ORDER, 10),
51 false, false, false),
52 migratable_get_size,
087e3f1b
MJ
53 migratable_record,
54 migratable_get_value,
55 NULL, NULL);
56
437d5aa5 57int lttng_add_migratable_to_ctx(struct lttng_kernel_ctx **ctx)
79150a49 58{
087e3f1b 59 int ret;
79150a49 60
087e3f1b 61 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
79150a49 62 return -EEXIST;
087e3f1b 63 ret = lttng_kernel_context_append(ctx, ctx_field);
263b6c88 64 wrapper_vmalloc_sync_mappings();
087e3f1b 65 return ret;
79150a49
JD
66}
67EXPORT_SYMBOL_GPL(lttng_add_migratable_to_ctx);
This page took 0.044597 seconds and 4 git commands to generate.