summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2002-05-20 21:36:50 -0700
committerLinus Torvalds <torvalds@penguin.transmeta.com>2002-05-20 21:36:50 -0700
commit2c6e92adaa8f0bfb73dc03658ebbb49a22cc9387 (patch)
tree396c71fd09d8c1375135c5abc1f3b44e78da9770 /include/linux
parentfacdecfa750f3459f94b5b60cfd73b676fced0df (diff)
[PATCH] Tasklet cleanup
This makes tasklet_vec and tasklet_hi_vec static inside softirq.c, and makes them __per_cpu_data.
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/interrupt.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index 67bce357a7a1..90446b0d75e5 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -124,14 +124,6 @@ enum
TASKLET_STATE_RUN /* Tasklet is running (SMP only) */
};
-struct tasklet_head
-{
- struct tasklet_struct *list;
-} __attribute__ ((__aligned__(SMP_CACHE_BYTES)));
-
-extern struct tasklet_head tasklet_vec[NR_CPUS];
-extern struct tasklet_head tasklet_hi_vec[NR_CPUS];
-
#ifdef CONFIG_SMP
static inline int tasklet_trylock(struct tasklet_struct *t)
{