-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 146188 b: refs/heads/master c: fb39125 h: refs/heads/master v: v3
- Loading branch information
Zhaolei
authored and
Frederic Weisbecker
committed
Jun 1, 2009
1 parent
3e26999
commit faffb9f
Showing
5 changed files
with
104 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: f2aebaee653a35b01c3665de2cbb1e31456b8ea8 | ||
refs/heads/master: fb39125fd79a25c5002f3b45cf4c80e3fa6b961b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
#if !defined(_TRACE_WORKQUEUE_H) || defined(TRACE_HEADER_MULTI_READ) | ||
#define _TRACE_WORKQUEUE_H | ||
|
||
#include <linux/workqueue.h> | ||
#include <linux/sched.h> | ||
#include <linux/tracepoint.h> | ||
|
||
#undef TRACE_SYSTEM | ||
#define TRACE_SYSTEM workqueue | ||
|
||
TRACE_EVENT(workqueue_insertion, | ||
|
||
TP_PROTO(struct task_struct *wq_thread, struct work_struct *work), | ||
|
||
TP_ARGS(wq_thread, work), | ||
|
||
TP_STRUCT__entry( | ||
__array(char, thread_comm, TASK_COMM_LEN) | ||
__field(pid_t, thread_pid) | ||
__field(work_func_t, func) | ||
), | ||
|
||
TP_fast_assign( | ||
memcpy(__entry->thread_comm, wq_thread->comm, TASK_COMM_LEN); | ||
__entry->thread_pid = wq_thread->pid; | ||
__entry->func = work->func; | ||
), | ||
|
||
TP_printk("thread=%s:%d func=%pF", __entry->thread_comm, | ||
__entry->thread_pid, __entry->func) | ||
); | ||
|
||
TRACE_EVENT(workqueue_execution, | ||
|
||
TP_PROTO(struct task_struct *wq_thread, struct work_struct *work), | ||
|
||
TP_ARGS(wq_thread, work), | ||
|
||
TP_STRUCT__entry( | ||
__array(char, thread_comm, TASK_COMM_LEN) | ||
__field(pid_t, thread_pid) | ||
__field(work_func_t, func) | ||
), | ||
|
||
TP_fast_assign( | ||
memcpy(__entry->thread_comm, wq_thread->comm, TASK_COMM_LEN); | ||
__entry->thread_pid = wq_thread->pid; | ||
__entry->func = work->func; | ||
), | ||
|
||
TP_printk("thread=%s:%d func=%pF", __entry->thread_comm, | ||
__entry->thread_pid, __entry->func) | ||
); | ||
|
||
/* Trace the creation of one workqueue thread on a cpu */ | ||
TRACE_EVENT(workqueue_creation, | ||
|
||
TP_PROTO(struct task_struct *wq_thread, int cpu), | ||
|
||
TP_ARGS(wq_thread, cpu), | ||
|
||
TP_STRUCT__entry( | ||
__array(char, thread_comm, TASK_COMM_LEN) | ||
__field(pid_t, thread_pid) | ||
__field(int, cpu) | ||
), | ||
|
||
TP_fast_assign( | ||
memcpy(__entry->thread_comm, wq_thread->comm, TASK_COMM_LEN); | ||
__entry->thread_pid = wq_thread->pid; | ||
__entry->cpu = cpu; | ||
), | ||
|
||
TP_printk("thread=%s:%d cpu=%d", __entry->thread_comm, | ||
__entry->thread_pid, __entry->cpu) | ||
); | ||
|
||
TRACE_EVENT(workqueue_destruction, | ||
|
||
TP_PROTO(struct task_struct *wq_thread), | ||
|
||
TP_ARGS(wq_thread), | ||
|
||
TP_STRUCT__entry( | ||
__array(char, thread_comm, TASK_COMM_LEN) | ||
__field(pid_t, thread_pid) | ||
), | ||
|
||
TP_fast_assign( | ||
memcpy(__entry->thread_comm, wq_thread->comm, TASK_COMM_LEN); | ||
__entry->thread_pid = wq_thread->pid; | ||
), | ||
|
||
TP_printk("thread=%s:%d", __entry->thread_comm, __entry->thread_pid) | ||
); | ||
|
||
#endif /* _TRACE_WORKQUEUE_H */ | ||
|
||
/* This part must be outside protection */ | ||
#include <trace/define_trace.h> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters