projects
/
lttng-modules.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca2299d
)
Fix: OOT lttng_logger tracepoint not visible with signed kernels
author
Julien Desfossez
<jdesfossez@efficios.com>
Tue, 16 Sep 2014 15:59:07 +0000
(11:59 -0400)
committer
Mathieu Desnoyers
<mathieu.desnoyers@efficios.com>
Tue, 16 Sep 2014 16:09:18 +0000
(12:09 -0400)
For the same reason as commit
dd8d5afb3fabf853cb4c88c0a1a97f470090fe20
,
the lttng_logger event was not working on signed kernels with non-signed
lttng modules.
Signed-off-by: Julien Desfossez <jdesfossez@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
lttng-events.c
patch
|
blob
|
blame
|
history
diff --git
a/lttng-events.c
b/lttng-events.c
index eefee69b31a5cc59583fb57d7f074c5715aec654..701cff8ca8ff8663f82c0148bfb4ac15448bf81c 100644
(file)
--- a/
lttng-events.c
+++ b/
lttng-events.c
@@
-1255,6
+1255,10
@@
static int __init lttng_events_init(void)
{
int ret;
+ ret = wrapper_lttng_fixup_sig(THIS_MODULE);
+ if (ret)
+ return ret;
+
ret = lttng_tracepoint_init();
if (ret)
return ret;
This page took
0.028147 seconds
and
4
git commands to generate.