Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xenomai
xenomai4
linux-evl
Commits
fc83595e
Commit
fc83595e
authored
Jul 03, 2019
by
Philippe Gerum
Browse files
evl/trace: wait: fix tracepoint names
Signed-off-by:
Philippe Gerum
<
rpm@xenomai.org
>
parent
2bddde45
Changes
3
Hide whitespace changes
Inline
Side-by-side
include/evl/wait.h
View file @
fc83595e
...
...
@@ -142,7 +142,7 @@ void evl_flush_wait_locked(struct evl_wait_queue *wq, int reason)
{
struct
evl_thread
*
waiter
,
*
tmp
;
trace_evl_
wait_
flush
(
wq
);
trace_evl_flush
_wait
(
wq
);
list_for_each_entry_safe
(
waiter
,
tmp
,
&
wq
->
wait_list
,
wait_next
)
evl_wakeup_thread
(
waiter
,
T_PEND
,
reason
);
...
...
include/trace/events/evl.h
View file @
fc83595e
...
...
@@ -687,12 +687,12 @@ DEFINE_EVENT(wq_event, evl_wait,
TP_ARGS
(
wq
)
);
DEFINE_EVENT
(
wq_event
,
evl_
wait_
wakeup
,
DEFINE_EVENT
(
wq_event
,
evl_wake
_
up
,
TP_PROTO
(
struct
evl_wait_queue
*
wq
),
TP_ARGS
(
wq
)
);
DEFINE_EVENT
(
wq_event
,
evl_
wait_
flush
,
DEFINE_EVENT
(
wq_event
,
evl_flush
_wait
,
TP_PROTO
(
struct
evl_wait_queue
*
wq
),
TP_ARGS
(
wq
)
);
...
...
kernel/evl/wait.c
View file @
fc83595e
...
...
@@ -56,7 +56,7 @@ EXPORT_SYMBOL_GPL(evl_add_wait_queue);
struct
evl_thread
*
evl_wake_up
(
struct
evl_wait_queue
*
wq
,
struct
evl_thread
*
waiter
)
{
trace_evl_
wait_
wakeup
(
wq
);
trace_evl_wake
_
up
(
wq
);
if
(
list_empty
(
&
wq
->
wait_list
))
waiter
=
NULL
;
...
...
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