aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kernel/softirq.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c
index 059256874e9b..86775340ef1d 100644
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@ -359,10 +359,8 @@ struct tasklet_head
359 struct tasklet_struct **tail; 359 struct tasklet_struct **tail;
360}; 360};
361 361
362/* Some compilers disobey section attribute on statics when not 362static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec);
363 initialized -- RR */ 363static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec);
364static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec) = { NULL };
365static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec) = { NULL };
366 364
367void __tasklet_schedule(struct tasklet_struct *t) 365void __tasklet_schedule(struct tasklet_struct *t)
368{ 366{