Write context fields into trace
[lttng-modules.git] / probes / lttng-context-pid.c
CommitLineData
9e7e4892
MD
1/*
2 * (C) Copyright 2009-2011 -
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * LTTng PID context.
6 *
7 * Dual LGPL v2.1/GPL v2 license.
8 */
9
10#include <linux/module.h>
11#include <linux/slab.h>
12#include <linux/sched.h>
13#include "../ltt-events.h"
14#include "../wrapper/ringbuffer/frontend_types.h"
15#include "../wrapper/vmalloc.h"
16#include "../ltt-tracer.h"
17
f1676205
MD
18static
19size_t pid_get_size(size_t offset)
20{
21 size_t size = 0;
22
23 size += lib_ring_buffer_align(offset, ltt_alignof(pid_t));
24 size += sizeof(pid_t);
25 return size;
26}
27
9e7e4892
MD
28static
29void pid_record(struct lttng_ctx_field *field,
30 struct lib_ring_buffer_ctx *ctx,
31 struct ltt_channel *chan)
32{
33 pid_t pid;
34
35 pid = current->pid;
36 lib_ring_buffer_align_ctx(ctx, ltt_alignof(pid));
37 chan->ops->event_write(ctx, &pid, sizeof(pid));
38}
39
40int lttng_add_pid_to_ctx(struct lttng_ctx **ctx)
41{
42 struct lttng_ctx_field *field;
43 int ret;
44
45 field = lttng_append_context(ctx);
46 if (!field)
47 return ret;
48 field->name = "pid";
49 field->type.atype = atype_integer;
50 field->type.u.basic.integer.size = sizeof(pid_t) * CHAR_BIT;
51 field->type.u.basic.integer.alignment = ltt_alignof(pid_t) * CHAR_BIT;
52 field->type.u.basic.integer.signedness = is_signed_type(pid_t);
53 field->type.u.basic.integer.reverse_byte_order = 0;
54 field->type.u.basic.integer.base = 10;
55 field->type.u.basic.integer.encoding = lttng_encode_none;
f1676205
MD
56 field->get_size = pid_get_size;
57 field->record = pid_record;
9e7e4892
MD
58 wrapper_vmalloc_sync_all();
59 return 0;
60}
61
62MODULE_LICENSE("GPL and additional rights");
63MODULE_AUTHOR("Mathieu Desnoyers");
64MODULE_DESCRIPTION("Linux Trace Toolkit Perf Support");
This page took 0.026153 seconds and 4 git commands to generate.