Cleanup vtid/vpid context caches
[lttng-ust.git] / liblttng-ust / lttng-context-vpid.c
CommitLineData
c1ef86f0 1/*
e92f3e28 2 * lttng-context-vpid.c
c1ef86f0
MD
3 *
4 * LTTng UST vpid context.
5 *
e92f3e28
MD
6 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; only
11 * version 2.1 of the License.
12 *
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
c1ef86f0
MD
21 */
22
3fbec7dc 23#define _LGPL_SOURCE
c1ef86f0
MD
24#include <sys/types.h>
25#include <unistd.h>
4318ae1b
MD
26#include <lttng/ust-events.h>
27#include <lttng/ust-tracer.h>
28#include <lttng/ringbuffer-config.h>
c1ef86f0 29
c1ef86f0
MD
30/*
31 * We cache the result to ensure we don't trigger a system call for
32 * each event.
33 */
34static pid_t cached_vpid;
35
36static inline
98357ffd 37pid_t wrapper_getvpid(void)
c1ef86f0 38{
98357ffd
MD
39 pid_t vpid;
40
41 vpid = CMM_LOAD_SHARED(cached_vpid);
42 if (caa_unlikely(!vpid)) {
43 vpid = getpid();
44 CMM_STORE_SHARED(cached_vpid, vpid);
45 }
46 return vpid;
c1ef86f0
MD
47}
48
49/*
50 * Upon fork or clone, the PID assigned to our thread is not the same as
51 * we kept in cache.
52 */
53void lttng_context_vpid_reset(void)
54{
98357ffd 55 CMM_STORE_SHARED(cached_vpid, 0);
c1ef86f0 56}
c1ef86f0
MD
57
58static
53569322 59size_t vpid_get_size(struct lttng_ctx_field *field, size_t offset)
c1ef86f0
MD
60{
61 size_t size = 0;
62
63 size += lib_ring_buffer_align(offset, lttng_alignof(pid_t));
64 size += sizeof(pid_t);
65 return size;
66}
67
68static
69void vpid_record(struct lttng_ctx_field *field,
4cfec15c 70 struct lttng_ust_lib_ring_buffer_ctx *ctx,
7dd08bec 71 struct lttng_channel *chan)
c1ef86f0 72{
98357ffd 73 pid_t vpid = wrapper_getvpid();
c1ef86f0 74
98357ffd
MD
75 lib_ring_buffer_align_ctx(ctx, lttng_alignof(vpid));
76 chan->ops->event_write(ctx, &vpid, sizeof(vpid));
c1ef86f0
MD
77}
78
77aa5901
MD
79static
80void vpid_get_value(struct lttng_ctx_field *field,
53569322 81 struct lttng_ctx_value *value)
77aa5901 82{
98357ffd 83 value->u.s64 = wrapper_getvpid();
77aa5901
MD
84}
85
c1ef86f0
MD
86int lttng_add_vpid_to_ctx(struct lttng_ctx **ctx)
87{
88 struct lttng_ctx_field *field;
89
90 field = lttng_append_context(ctx);
91 if (!field)
92 return -ENOMEM;
93 if (lttng_find_context(*ctx, "vpid")) {
94 lttng_remove_context_field(ctx, field);
95 return -EEXIST;
96 }
97 field->event_field.name = "vpid";
98 field->event_field.type.atype = atype_integer;
99 field->event_field.type.u.basic.integer.size = sizeof(pid_t) * CHAR_BIT;
100 field->event_field.type.u.basic.integer.alignment = lttng_alignof(pid_t) * CHAR_BIT;
101 field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(pid_t);
102 field->event_field.type.u.basic.integer.reverse_byte_order = 0;
103 field->event_field.type.u.basic.integer.base = 10;
104 field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
105 field->get_size = vpid_get_size;
106 field->record = vpid_record;
77aa5901 107 field->get_value = vpid_get_value;
b2cc986a 108 lttng_context_update(*ctx);
c1ef86f0
MD
109 return 0;
110}
This page took 0.032535 seconds and 4 git commands to generate.