mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
softirq: remove initialization of static per-cpu variable
Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
parent
9583f3d9c0
commit
4620b49f76
1 changed files with 2 additions and 4 deletions
|
@ -359,10 +359,8 @@ struct tasklet_head
|
||||||
struct tasklet_struct **tail;
|
struct tasklet_struct **tail;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Some compilers disobey section attribute on statics when not
|
static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec);
|
||||||
initialized -- RR */
|
static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec);
|
||||||
static DEFINE_PER_CPU(struct tasklet_head, tasklet_vec) = { NULL };
|
|
||||||
static DEFINE_PER_CPU(struct tasklet_head, tasklet_hi_vec) = { NULL };
|
|
||||||
|
|
||||||
void __tasklet_schedule(struct tasklet_struct *t)
|
void __tasklet_schedule(struct tasklet_struct *t)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue