cleanup: explicitly mark unused parameters (-Wunused-parameter)
[lttng-ust.git] / liblttng-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>
c7ea8487 22#include "../libringbuffer/getcpu.h"
0466ac28 23#include <lttng/ringbuffer-context.h>
c7ea8487 24
fc80554e
MJ
25#include "context-internal.h"
26
c7ea8487 27static
2208d8b5
MJ
28size_t cpu_id_get_size(struct lttng_ust_ctx_field *field __attribute__((unused)),
29 size_t offset)
c7ea8487
MD
30{
31 size_t size = 0;
32
dc325c1d 33 size += lttng_ust_lib_ring_buffer_align(offset, lttng_ust_rb_alignof(int));
c7ea8487
MD
34 size += sizeof(int);
35 return size;
36}
37
38static
2208d8b5 39void cpu_id_record(struct lttng_ust_ctx_field *field __attribute__((unused)),
c7ea8487 40 struct lttng_ust_lib_ring_buffer_ctx *ctx,
e7bc0ef6 41 struct lttng_ust_channel_buffer *chan)
c7ea8487
MD
42{
43 int cpu;
44
45 cpu = lttng_ust_get_cpu();
8936b6c0 46 chan->ops->event_write(ctx, &cpu, sizeof(cpu), lttng_ust_rb_alignof(cpu));
c7ea8487
MD
47}
48
49static
2208d8b5 50void cpu_id_get_value(struct lttng_ust_ctx_field *field __attribute__((unused)),
daacdbfc 51 struct lttng_ust_ctx_value *value)
c7ea8487 52{
6e9ac4ae 53 value->u.s64 = lttng_ust_get_cpu();
c7ea8487
MD
54}
55
daacdbfc 56int lttng_add_cpu_id_to_ctx(struct lttng_ust_ctx **ctx)
c7ea8487 57{
daacdbfc 58 struct lttng_ust_ctx_field *field;
a084756d
MD
59 struct lttng_ust_type_common *type;
60 int ret;
c7ea8487 61
a084756d 62 type = lttng_ust_create_type_integer(sizeof(int) * CHAR_BIT,
dc325c1d 63 lttng_ust_rb_alignof(int) * CHAR_BIT,
eae3c729 64 lttng_ust_is_signed_type(int),
a084756d
MD
65 BYTE_ORDER, 10);
66 if (!type)
c7ea8487 67 return -ENOMEM;
a084756d
MD
68 field = lttng_append_context(ctx);
69 if (!field) {
70 ret = -ENOMEM;
71 goto error_context;
72 }
c7ea8487 73 if (lttng_find_context(*ctx, "cpu_id")) {
a084756d
MD
74 ret = -EEXIST;
75 goto error_find_context;
c7ea8487 76 }
a084756d
MD
77 field->event_field->name = strdup("cpu_id");
78 if (!field->event_field->name) {
79 ret = -ENOMEM;
80 goto error_name;
81 }
82 field->event_field->type = type;
c7ea8487
MD
83 field->get_size = cpu_id_get_size;
84 field->record = cpu_id_record;
85 field->get_value = cpu_id_get_value;
86 lttng_context_update(*ctx);
87 return 0;
a084756d
MD
88
89error_name:
90error_find_context:
91 lttng_remove_context_field(ctx, field);
92error_context:
93 lttng_ust_destroy_type(type);
94 return ret;
c7ea8487 95}
This page took 0.032272 seconds and 4 git commands to generate.