6 * Copyright (C) 2009-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
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.
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
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/sched.h>
26 #include <linux/syscalls.h>
27 #include "lttng-events.h"
28 #include "wrapper/ringbuffer/frontend_types.h"
29 #include "wrapper/vmalloc.h"
30 #include "lttng-tracer.h"
33 size_t ppid_get_size(size_t offset
)
37 size
+= lib_ring_buffer_align(offset
, lttng_alignof(pid_t
));
38 size
+= sizeof(pid_t
);
43 void ppid_record(struct lttng_ctx_field
*field
,
44 struct lib_ring_buffer_ctx
*ctx
,
45 struct lttng_channel
*chan
)
50 ppid
= task_tgid_nr(current
->real_parent
);
52 lib_ring_buffer_align_ctx(ctx
, lttng_alignof(ppid
));
53 chan
->ops
->event_write(ctx
, &ppid
, sizeof(ppid
));
56 int lttng_add_ppid_to_ctx(struct lttng_ctx
**ctx
)
58 struct lttng_ctx_field
*field
;
60 field
= lttng_append_context(ctx
);
63 if (lttng_find_context(*ctx
, "ppid")) {
64 lttng_remove_context_field(ctx
, field
);
67 field
->event_field
.name
= "ppid";
68 field
->event_field
.type
.atype
= atype_integer
;
69 field
->event_field
.type
.u
.basic
.integer
.size
= sizeof(pid_t
) * CHAR_BIT
;
70 field
->event_field
.type
.u
.basic
.integer
.alignment
= lttng_alignof(pid_t
) * CHAR_BIT
;
71 field
->event_field
.type
.u
.basic
.integer
.signedness
= is_signed_type(pid_t
);
72 field
->event_field
.type
.u
.basic
.integer
.reverse_byte_order
= 0;
73 field
->event_field
.type
.u
.basic
.integer
.base
= 10;
74 field
->event_field
.type
.u
.basic
.integer
.encoding
= lttng_encode_none
;
75 field
->get_size
= ppid_get_size
;
76 field
->record
= ppid_record
;
77 wrapper_vmalloc_sync_all();
80 EXPORT_SYMBOL_GPL(lttng_add_ppid_to_ctx
);
82 MODULE_LICENSE("GPL and additional rights");
83 MODULE_AUTHOR("Mathieu Desnoyers");
84 MODULE_DESCRIPTION("Linux Trace Toolkit PPID Context");
This page took 0.03464 seconds and 4 git commands to generate.