Fix: timer_expire_entry changed in 4.19.312
[lttng-modules.git] / src / lttng-context-preemptible.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
79150a49
JD
3 * lttng-context-preemptible.c
4 *
5 * LTTng preemptible context.
6 *
7 * Copyright (C) 2009-2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
79150a49
JD
8 */
9
10#include <linux/module.h>
11#include <linux/slab.h>
12#include <linux/sched.h>
13#include <linux/irqflags.h>
2df37e95 14#include <lttng/events.h>
0fe45627 15#include <lttng/events-internal.h>
24591303 16#include <ringbuffer/frontend_types.h>
241ae9a8 17#include <wrapper/vmalloc.h>
2df37e95 18#include <lttng/tracer.h>
79150a49
JD
19
20/*
21 * We nest twice in preempt disabling within LTTng: one nesting is done
22 * by the instrumentation (tracepoint, kprobes, kretprobes, syscall
23 * tracepoint), and the second is within the lib ring buffer
24 * lib_ring_buffer_get_cpu().
25 */
26#define LTTNG_PREEMPT_DISABLE_NESTING 2
27
28static
a92e844e 29size_t preemptible_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, size_t offset)
79150a49
JD
30{
31 size_t size = 0;
32
33 size += lib_ring_buffer_align(offset, lttng_alignof(uint8_t));
34 size += sizeof(uint8_t);
35 return size;
36}
37
38static
a92e844e 39void preemptible_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx,
8a57ec02 40 struct lttng_kernel_ring_buffer_ctx *ctx,
f7d06400 41 struct lttng_kernel_channel_buffer *chan)
79150a49
JD
42{
43 int pc = preempt_count();
44 uint8_t preemptible = 0;
45
46 WARN_ON_ONCE(pc < LTTNG_PREEMPT_DISABLE_NESTING);
47 if (pc == LTTNG_PREEMPT_DISABLE_NESTING)
48 preemptible = 1;
f5ffbd77 49 chan->ops->event_write(ctx, &preemptible, sizeof(preemptible), lttng_alignof(preemptible));
79150a49
JD
50}
51
52static
bf99c737 53void preemptible_get_value(void *priv,
a92e844e 54 struct lttng_kernel_probe_ctx *lttng_probe_ctx,
bf99c737 55 struct lttng_ctx_value *value)
79150a49
JD
56{
57 int pc = preempt_count();
58
59 WARN_ON_ONCE(pc < LTTNG_PREEMPT_DISABLE_NESTING);
60 if (pc == LTTNG_PREEMPT_DISABLE_NESTING)
bf99c737 61 value->u.s64 = 1;
79150a49 62 else
bf99c737 63 value->u.s64 = 0;
79150a49
JD
64}
65
087e3f1b
MJ
66static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field(
67 lttng_kernel_static_event_field("preemptible",
68 lttng_kernel_static_type_integer_from_type(uint8_t, __BYTE_ORDER, 10),
4697aac7 69 false, false),
087e3f1b 70 preemptible_get_size,
087e3f1b
MJ
71 preemptible_record,
72 preemptible_get_value,
73 NULL, NULL);
74
437d5aa5 75int lttng_add_preemptible_to_ctx(struct lttng_kernel_ctx **ctx)
79150a49 76{
087e3f1b 77 int ret;
79150a49 78
087e3f1b 79 if (lttng_kernel_find_context(*ctx, ctx_field->event_field->name))
79150a49 80 return -EEXIST;
087e3f1b 81 ret = lttng_kernel_context_append(ctx, ctx_field);
263b6c88 82 wrapper_vmalloc_sync_mappings();
087e3f1b 83 return ret;
79150a49
JD
84}
85EXPORT_SYMBOL_GPL(lttng_add_preemptible_to_ctx);
This page took 0.053855 seconds and 4 git commands to generate.