Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Linux-Kernel
linux-evl
Commits
cd093a83
Commit
cd093a83
authored
Jun 10, 2021
by
Philippe Gerum
Browse files
tracing: irq_pipeline: export missing symbols
Signed-off-by:
Philippe Gerum
<
rpm@xenomai.org
>
parent
d0c1c621
Changes
1
Hide whitespace changes
Inline
Side-by-side
kernel/trace/trace_preemptirq.c
View file @
cd093a83
...
...
@@ -124,6 +124,8 @@ void trace_hardirqs_off_pipelined(void)
if
(
running_inband
())
trace_hardirqs_off
();
}
EXPORT_SYMBOL
(
trace_hardirqs_off_pipelined
);
NOKPROBE_SYMBOL
(
trace_hardirqs_off_pipelined
);
void
trace_hardirqs_on_pipelined
(
void
)
{
...
...
@@ -142,6 +144,8 @@ void trace_hardirqs_on_pipelined(void)
unstall_inband_nocheck
();
}
}
EXPORT_SYMBOL
(
trace_hardirqs_on_pipelined
);
NOKPROBE_SYMBOL
(
trace_hardirqs_on_pipelined
);
#else
...
...
@@ -149,11 +153,15 @@ void trace_hardirqs_off_pipelined(void)
{
trace_hardirqs_off
();
}
EXPORT_SYMBOL
(
trace_hardirqs_off_pipelined
);
NOKPROBE_SYMBOL
(
trace_hardirqs_off_pipelined
);
void
trace_hardirqs_on_pipelined
(
void
)
{
trace_hardirqs_on
();
}
EXPORT_SYMBOL
(
trace_hardirqs_on_pipelined
);
NOKPROBE_SYMBOL
(
trace_hardirqs_on_pipelined
);
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment