diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-03-13 07:43:33 +0300 |
---|---|---|
committer | Steven Rostedt <srostedt@redhat.com> | 2009-03-13 07:43:33 +0300 |
commit | 899039e8746bb9a09b6487ddb8ab2275ce9d0256 (patch) | |
tree | 4bc6365d81796fb675c4fe0fde243e11fd9cb361 /kernel/softirq.c | |
parent | 7f96f93f02b7637491a1637dee12dcdcd40b9802 (diff) | |
download | linux-899039e8746bb9a09b6487ddb8ab2275ce9d0256.tar.xz |
softirq: no need to have SOFTIRQ in softirq name
Impact: clean up
It is redundant to have 'SOFTIRQ' in the softirq names.
Reported-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'kernel/softirq.c')
-rw-r--r-- | kernel/softirq.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c index a5e81231ca7a..65ff3e3961b4 100644 --- a/kernel/softirq.c +++ b/kernel/softirq.c @@ -55,9 +55,8 @@ static struct softirq_action softirq_vec[NR_SOFTIRQS] __cacheline_aligned_in_smp static DEFINE_PER_CPU(struct task_struct *, ksoftirqd); char *softirq_to_name[NR_SOFTIRQS] = { - "HI_SOFTIRQ", "TIMER_SOFTIRQ", "NET_TX_SOFTIRQ", "NET_RX_SOFTIRQ", - "BLOCK_SOFTIRQ", "TASKLET_SOFTIRQ", "SCHED_SOFTIRQ", "HRTIMER_SOFTIRQ", - "RCU_SOFTIRQ" + "HI", "TIMER", "NET_TX", "NET_RX", "BLOCK", + "TASKLET", "SCHED", "HRTIMER", "RCU" }; /* |