projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f96f93
)
softirq: no need to have SOFTIRQ in softirq name
author
Steven Rostedt
<srostedt@redhat.com>
Fri, 13 Mar 2009 04:43:33 +0000
(
00:43
-0400)
committer
Steven Rostedt
<srostedt@redhat.com>
Fri, 13 Mar 2009 04:43:33 +0000
(
00:43
-0400)
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>
kernel/softirq.c
patch
|
blob
|
blame
|
history
diff --git
a/kernel/softirq.c
b/kernel/softirq.c
index a5e81231ca7acd3a9dba0937cddd1dd2669837d6..65ff3e3961b4d60f4f4db24f87daec94e2841872 100644
(file)
--- 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"
};
/*