Move the getcpu plugin implementation to liblttn-ust-common
[lttng-ust.git] / src / lib / lttng-ust / lttng-context-cpu-id.c
CommitLineData
c7ea8487 1/*
c0c0989a
MJ
2 * SPDX-License-Identifier: LGPL-2.1-only
3 *
4 * Copyright (C) 2009-2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
c7ea8487
MD
5 *
6 * LTTng UST CPU id context.
7 *
8 * Note: threads can be migrated at any point while executing the
9 * tracepoint probe. This means the CPU id field (and filter) is only
10 * statistical. For instance, even though a user might select a
11 * cpu_id==1 filter, there may be few events recorded into the channel
12 * appearing from other CPUs, due to migration.
c7ea8487
MD
13 */
14
3fbec7dc 15#define _LGPL_SOURCE
b4051ad8 16#include <stddef.h>
c7ea8487
MD
17#include <sys/types.h>
18#include <unistd.h>
9af5d97a 19#include <limits.h>
c7ea8487
MD
20#include <lttng/ust-events.h>
21#include <lttng/ust-tracer.h>
0b4b8811 22#include <lttng/ust-ringbuffer-context.h>
c7ea8487 23
f73bcf5e
MJ
24#include "common/getcpu.h"
25
fc80554e
MJ
26#include "context-internal.h"
27
c7ea8487 28static
4e48b5d2 29size_t cpu_id_get_size(void *priv __attribute__((unused)),
b2e37d27 30 struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)),
2208d8b5 31 size_t offset)
c7ea8487
MD
32{
33 size_t size = 0;
34
b5457df5 35 size += lttng_ust_ring_buffer_align(offset, lttng_ust_rb_alignof(int));
c7ea8487
MD
36 size += sizeof(int);
37 return size;
38}
39
40static
4e48b5d2 41void cpu_id_record(void *priv __attribute__((unused)),
b2e37d27
MD
42 struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)),
43 struct lttng_ust_ring_buffer_ctx *ctx,
44 struct lttng_ust_channel_buffer *chan)
c7ea8487
MD
45{
46 int cpu;
47
48 cpu = lttng_ust_get_cpu();
8936b6c0 49 chan->ops->event_write(ctx, &cpu, sizeof(cpu), lttng_ust_rb_alignof(cpu));
c7ea8487
MD
50}
51
52static
4e48b5d2 53void cpu_id_get_value(void *priv __attribute__((unused)),
b2e37d27 54 struct lttng_ust_probe_ctx *probe_ctx __attribute__((unused)),
daacdbfc 55 struct lttng_ust_ctx_value *value)
c7ea8487 56{
6e9ac4ae 57 value->u.s64 = lttng_ust_get_cpu();
c7ea8487
MD
58}
59
4e48b5d2
MD
60static const struct lttng_ust_ctx_field *ctx_field = lttng_ust_static_ctx_field(
61 lttng_ust_static_event_field("cpu_id",
62 lttng_ust_static_type_integer(sizeof(int) * CHAR_BIT,
63 lttng_ust_rb_alignof(int) * CHAR_BIT,
64 lttng_ust_is_signed_type(int),
baa8acf3 65 LTTNG_UST_BYTE_ORDER, 10),
4e48b5d2
MD
66 false, false),
67 cpu_id_get_size,
68 cpu_id_record,
69 cpu_id_get_value,
70 NULL, NULL);
71
daacdbfc 72int lttng_add_cpu_id_to_ctx(struct lttng_ust_ctx **ctx)
c7ea8487 73{
a084756d 74 int ret;
c7ea8487 75
4e48b5d2 76 if (lttng_find_context(*ctx, ctx_field->event_field->name)) {
a084756d
MD
77 ret = -EEXIST;
78 goto error_find_context;
c7ea8487 79 }
4e48b5d2
MD
80 ret = lttng_ust_context_append(ctx, ctx_field);
81 if (ret)
82 return ret;
c7ea8487 83 return 0;
a084756d 84
a084756d 85error_find_context:
a084756d 86 return ret;
c7ea8487 87}
This page took 0.0336649999999999 seconds and 4 git commands to generate.