Cleanup: Move patches.i to include/generated/
[lttng-modules.git] / lttng-context-cpu-id.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
13edcd1d
MD
3 * lttng-context-cpu-id.c
4 *
5 * LTTng CPU id context.
6 *
7 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13edcd1d
MD
8 */
9
10#include <linux/module.h>
11#include <linux/slab.h>
12#include <linux/sched.h>
2df37e95 13#include <lttng/events.h>
24591303 14#include <ringbuffer/frontend_types.h>
241ae9a8 15#include <wrapper/vmalloc.h>
2df37e95 16#include <lttng/tracer.h>
13edcd1d
MD
17
18static
19size_t cpu_id_get_size(size_t offset)
20{
21 size_t size = 0;
22
1c23b886
MD
23 size += lib_ring_buffer_align(offset, lttng_alignof(int));
24 size += sizeof(int);
13edcd1d
MD
25 return size;
26}
27
28static
29void cpu_id_record(struct lttng_ctx_field *field,
30 struct lib_ring_buffer_ctx *ctx,
31 struct lttng_channel *chan)
32{
1c23b886 33 int cpu;
13edcd1d
MD
34
35 cpu = ctx->cpu;
36 lib_ring_buffer_align_ctx(ctx, lttng_alignof(cpu));
37 chan->ops->event_write(ctx, &cpu, sizeof(cpu));
38}
39
40static
41void cpu_id_get_value(struct lttng_ctx_field *field,
79150a49 42 struct lttng_probe_ctx *lttng_probe_ctx,
13edcd1d
MD
43 union lttng_ctx_value *value)
44{
45 value->s64 = smp_processor_id();
46}
47
48int lttng_add_cpu_id_to_ctx(struct lttng_ctx **ctx)
49{
50 struct lttng_ctx_field *field;
51
52 field = lttng_append_context(ctx);
53 if (!field)
54 return -ENOMEM;
55 if (lttng_find_context(*ctx, "cpu_id")) {
56 lttng_remove_context_field(ctx, field);
57 return -EEXIST;
58 }
59 field->event_field.name = "cpu_id";
60 field->event_field.type.atype = atype_integer;
ceabb767
MD
61 field->event_field.type.u.integer.size = sizeof(int) * CHAR_BIT;
62 field->event_field.type.u.integer.alignment = lttng_alignof(int) * CHAR_BIT;
63 field->event_field.type.u.integer.signedness = lttng_is_signed_type(int);
64 field->event_field.type.u.integer.reverse_byte_order = 0;
65 field->event_field.type.u.integer.base = 10;
66 field->event_field.type.u.integer.encoding = lttng_encode_none;
13edcd1d
MD
67 field->get_size = cpu_id_get_size;
68 field->record = cpu_id_record;
69 field->get_value = cpu_id_get_value;
70 lttng_context_update(*ctx);
263b6c88 71 wrapper_vmalloc_sync_mappings();
13edcd1d
MD
72 return 0;
73}
74EXPORT_SYMBOL_GPL(lttng_add_cpu_id_to_ctx);
This page took 0.031659 seconds and 4 git commands to generate.