staging: remove intel_sst driver
[linux-2.6.git] / drivers / staging / lttng / lttng-context-nice.c
blob9b99b54924650b1da1b510bb4255da2380d3f193
1 /*
2 * (C) Copyright 2009-2011 -
3 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 * LTTng nice context.
7 * Dual LGPL v2.1/GPL v2 license.
8 */
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"
18 static
19 size_t nice_get_size(size_t offset)
21 size_t size = 0;
23 size += lib_ring_buffer_align(offset, ltt_alignof(int));
24 size += sizeof(int);
25 return size;
28 static
29 void nice_record(struct lttng_ctx_field *field,
30 struct lib_ring_buffer_ctx *ctx,
31 struct ltt_channel *chan)
33 int nice;
35 nice = task_nice(current);
36 lib_ring_buffer_align_ctx(ctx, ltt_alignof(nice));
37 chan->ops->event_write(ctx, &nice, sizeof(nice));
40 int lttng_add_nice_to_ctx(struct lttng_ctx **ctx)
42 struct lttng_ctx_field *field;
44 field = lttng_append_context(ctx);
45 if (!field)
46 return -ENOMEM;
47 if (lttng_find_context(*ctx, "nice")) {
48 lttng_remove_context_field(ctx, field);
49 return -EEXIST;
51 field->event_field.name = "nice";
52 field->event_field.type.atype = atype_integer;
53 field->event_field.type.u.basic.integer.size = sizeof(int) * CHAR_BIT;
54 field->event_field.type.u.basic.integer.alignment = ltt_alignof(int) * CHAR_BIT;
55 field->event_field.type.u.basic.integer.signedness = is_signed_type(int);
56 field->event_field.type.u.basic.integer.reverse_byte_order = 0;
57 field->event_field.type.u.basic.integer.base = 10;
58 field->event_field.type.u.basic.integer.encoding = lttng_encode_none;
59 field->get_size = nice_get_size;
60 field->record = nice_record;
61 wrapper_vmalloc_sync_all();
62 return 0;
64 EXPORT_SYMBOL_GPL(lttng_add_nice_to_ctx);
66 MODULE_LICENSE("GPL and additional rights");
67 MODULE_AUTHOR("Mathieu Desnoyers");
68 MODULE_DESCRIPTION("Linux Trace Toolkit Nice Context");