diff options
| author | Li Zefan <lizf@cn.fujitsu.com> | 2009-09-17 05:38:32 -0400 |
|---|---|---|
| committer | Steven Rostedt <rostedt@goodmis.org> | 2009-09-17 15:53:44 -0400 |
| commit | 5dd4de587fd9c25cb32a7a0fe9feec3647509b6f (patch) | |
| tree | 5c724508e4f9ae4f9f099e50551abf28c5d82e9f /include/trace | |
| parent | 9a5963eb494c8a7be65199e15854551df7d2d939 (diff) | |
softirq: add BLOCK_IOPOLL to softirq_to_name
With BLOCK_IOPOLL_SOFTIRQ added, softirq_to_name[] and
show_softirq_name() needs to be updated.
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
LKML-Reference: <4AB20398.8070209@cn.fujitsu.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'include/trace')
| -rw-r--r-- | include/trace/events/irq.h | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/include/trace/events/irq.h b/include/trace/events/irq.h index 1cb0c3aa11e6..b89f9db4a404 100644 --- a/include/trace/events/irq.h +++ b/include/trace/events/irq.h | |||
| @@ -8,16 +8,17 @@ | |||
| 8 | #include <linux/interrupt.h> | 8 | #include <linux/interrupt.h> |
| 9 | 9 | ||
| 10 | #define softirq_name(sirq) { sirq##_SOFTIRQ, #sirq } | 10 | #define softirq_name(sirq) { sirq##_SOFTIRQ, #sirq } |
| 11 | #define show_softirq_name(val) \ | 11 | #define show_softirq_name(val) \ |
| 12 | __print_symbolic(val, \ | 12 | __print_symbolic(val, \ |
| 13 | softirq_name(HI), \ | 13 | softirq_name(HI), \ |
| 14 | softirq_name(TIMER), \ | 14 | softirq_name(TIMER), \ |
| 15 | softirq_name(NET_TX), \ | 15 | softirq_name(NET_TX), \ |
| 16 | softirq_name(NET_RX), \ | 16 | softirq_name(NET_RX), \ |
| 17 | softirq_name(BLOCK), \ | 17 | softirq_name(BLOCK), \ |
| 18 | softirq_name(TASKLET), \ | 18 | softirq_name(BLOCK_IOPOLL), \ |
| 19 | softirq_name(SCHED), \ | 19 | softirq_name(TASKLET), \ |
| 20 | softirq_name(HRTIMER), \ | 20 | softirq_name(SCHED), \ |
| 21 | softirq_name(HRTIMER), \ | ||
| 21 | softirq_name(RCU)) | 22 | softirq_name(RCU)) |
| 22 | 23 | ||
| 23 | /** | 24 | /** |
