4 * Copyright 2011 (c) - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 * LTTng trace/channel/event context management.
8 * Dual LGPL v2.1/GPL v2 license.
11 #include <linux/module.h>
12 #include <linux/list.h>
13 #include <linux/mutex.h>
14 #include <linux/slab.h>
15 #include "wrapper/vmalloc.h" /* for wrapper_vmalloc_sync_all() */
16 #include "ltt-events.h"
17 #include "ltt-tracer.h"
20 * Note: as we append context information, the pointer location may change.
22 struct lttng_ctx_field
*lttng_append_context(struct lttng_ctx
**ctx_p
)
24 struct lttng_ctx_field
*field
;
25 struct lttng_ctx
*ctx
;
28 *ctx_p
= kzalloc(sizeof(struct lttng_ctx
), GFP_KERNEL
);
33 if (ctx
->nr_fields
+ 1 > ctx
->allocated_fields
) {
34 struct lttng_ctx_field
*new_fields
;
36 ctx
->allocated_fields
= max_t(size_t, 1, 2 * ctx
->allocated_fields
);
37 new_fields
= kzalloc(ctx
->allocated_fields
* sizeof(struct lttng_ctx_field
), GFP_KERNEL
);
41 memcpy(new_fields
, ctx
->fields
, sizeof(*ctx
->fields
) * ctx
->nr_fields
);
43 ctx
->fields
= new_fields
;
45 field
= &ctx
->fields
[ctx
->nr_fields
];
49 EXPORT_SYMBOL_GPL(lttng_append_context
);
52 * Remove last context field.
54 void lttng_remove_context_field(struct lttng_ctx
**ctx_p
,
55 struct lttng_ctx_field
*field
)
57 struct lttng_ctx
*ctx
;
61 WARN_ON_ONCE(&ctx
->fields
[ctx
->nr_fields
] != field
);
62 memset(&ctx
->fields
[ctx
->nr_fields
], 0, sizeof(struct lttng_ctx_field
));
64 EXPORT_SYMBOL_GPL(lttng_remove_context_field
);
66 void lttng_destroy_context(struct lttng_ctx
*ctx
)
72 for (i
= 0; i
< ctx
->nr_fields
; i
++) {
73 if (ctx
->fields
[i
].destroy
)
74 ctx
->fields
[i
].destroy(&ctx
->fields
[i
]);