Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 213225
b: refs/heads/master
c: 97bd234
h: refs/heads/master
i:
  213223: b13553c
v: v3
  • Loading branch information
Tejun Heo committed Oct 5, 2010
1 parent 19b07df commit ed6b545
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 09383498c5d35262e643bfdbae84826177a3c624
refs/heads/master: 97bd234701b2b39a0e749c1fe0e44f1d14c94292
32 changes: 19 additions & 13 deletions trunk/include/trace/events/workqueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,54 +7,60 @@
#include <linux/tracepoint.h>
#include <linux/workqueue.h>

/**
* workqueue_execute_start - called immediately before the workqueue callback
* @work: pointer to struct work_struct
*
* Allows to track workqueue execution.
*/
TRACE_EVENT(workqueue_execute_start,
DECLARE_EVENT_CLASS(workqueue_work,

TP_PROTO(struct work_struct *work),

TP_ARGS(work),

TP_STRUCT__entry(
__field( void *, work )
__field( void *, function)
),

TP_fast_assign(
__entry->work = work;
__entry->function = work->func;
),

TP_printk("work struct %p: function %pf", __entry->work, __entry->function)
TP_printk("work struct %p", __entry->work)
);

/**
* workqueue_execute_end - called immediately before the workqueue callback
* workqueue_execute_start - called immediately before the workqueue callback
* @work: pointer to struct work_struct
*
* Allows to track workqueue execution.
*/
TRACE_EVENT(workqueue_execute_end,
TRACE_EVENT(workqueue_execute_start,

TP_PROTO(struct work_struct *work),

TP_ARGS(work),

TP_STRUCT__entry(
__field( void *, work )
__field( void *, function)
),

TP_fast_assign(
__entry->work = work;
__entry->function = work->func;
),

TP_printk("work struct %p", __entry->work)
TP_printk("work struct %p: function %pf", __entry->work, __entry->function)
);

/**
* workqueue_execute_end - called immediately before the workqueue callback
* @work: pointer to struct work_struct
*
* Allows to track workqueue execution.
*/
DEFINE_EVENT(workqueue_work, workqueue_execute_end,

TP_PROTO(struct work_struct *work),

TP_ARGS(work)
);

#endif /* _TRACE_WORKQUEUE_H */

Expand Down
6 changes: 3 additions & 3 deletions trunk/kernel/workqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@
#include <linux/lockdep.h>
#include <linux/idr.h>

#define CREATE_TRACE_POINTS
#include <trace/events/workqueue.h>

#include "workqueue_sched.h"

enum {
Expand Down Expand Up @@ -257,6 +254,9 @@ EXPORT_SYMBOL_GPL(system_long_wq);
EXPORT_SYMBOL_GPL(system_nrt_wq);
EXPORT_SYMBOL_GPL(system_unbound_wq);

#define CREATE_TRACE_POINTS
#include <trace/events/workqueue.h>

#define for_each_busy_worker(worker, i, pos, gcwq) \
for (i = 0; i < BUSY_WORKER_HASH_SIZE; i++) \
hlist_for_each_entry(worker, pos, &gcwq->busy_hash[i], hentry)
Expand Down

0 comments on commit ed6b545

Please sign in to comment.