struct lttng_event *__event = __data; \
struct lttng_probe_ctx __lttng_probe_ctx = { \
.event = __event, \
- .interruptible = irqs_disabled(), \
+ .interruptible = !irqs_disabled(), \
}; \
struct lttng_channel *__chan = __event->chan; \
struct lttng_session *__session = __chan->session; \
struct lttng_event *__event = __data; \
struct lttng_probe_ctx __lttng_probe_ctx = { \
.event = __event, \
- .interruptible = irqs_disabled(), \
+ .interruptible = !irqs_disabled(), \
}; \
struct lttng_channel *__chan = __event->chan; \
struct lttng_session *__session = __chan->session; \
struct lttng_event *event = *data;
struct lttng_probe_ctx lttng_probe_ctx = {
.event = event,
- .interruptible = irqs_disabled(),
+ .interruptible = !irqs_disabled(),
};
struct lttng_channel *chan = event->chan;
struct lib_ring_buffer_ctx ctx;
container_of(p, struct lttng_event, u.kprobe.kp);
struct lttng_probe_ctx lttng_probe_ctx = {
.event = event,
- .interruptible = lttng_regs_irqs_disabled(regs),
+ .interruptible = !lttng_regs_irqs_disabled(regs),
};
struct lttng_channel *chan = event->chan;
struct lib_ring_buffer_ctx ctx;
/*
- * probes/lttng-kretprobes.c
+* probes/lttng-kretprobes.c
*
* LTTng kretprobes integration module.
*
lttng_krp->event[type];
struct lttng_probe_ctx lttng_probe_ctx = {
.event = event,
- .interruptible = lttng_regs_irqs_disabled(regs),
+ .interruptible = !lttng_regs_irqs_disabled(regs),
};
struct lttng_channel *chan = event->chan;
struct lib_ring_buffer_ctx ctx;