diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-14 18:28:42 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-14 18:28:42 -0400 |
commit | 666484f0250db2e016948d63b3ef33e202e3b8d0 (patch) | |
tree | 734f48c10aa364965e4f4642ee3de51669e62be2 /include/linux | |
parent | d18bb9a548e550f3ced57618e75085fb3f173133 (diff) | |
parent | ace7f1b79670aa0c1d9f4b0442be82e565827333 (diff) |
Merge branch 'core/softirq' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'core/softirq' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
softirq: remove irqs_disabled warning from local_bh_enable
softirq: remove initialization of static per-cpu variable
Remove argument from open_softirq which is always NULL
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/interrupt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index f1fc7470d26c..a86186dd0474 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
@@ -285,12 +285,11 @@ enum | |||
285 | struct softirq_action | 285 | struct softirq_action |
286 | { | 286 | { |
287 | void (*action)(struct softirq_action *); | 287 | void (*action)(struct softirq_action *); |
288 | void *data; | ||
289 | }; | 288 | }; |
290 | 289 | ||
291 | asmlinkage void do_softirq(void); | 290 | asmlinkage void do_softirq(void); |
292 | asmlinkage void __do_softirq(void); | 291 | asmlinkage void __do_softirq(void); |
293 | extern void open_softirq(int nr, void (*action)(struct softirq_action*), void *data); | 292 | extern void open_softirq(int nr, void (*action)(struct softirq_action *)); |
294 | extern void softirq_init(void); | 293 | extern void softirq_init(void); |
295 | #define __raise_softirq_irqoff(nr) do { or_softirq_pending(1UL << (nr)); } while (0) | 294 | #define __raise_softirq_irqoff(nr) do { or_softirq_pending(1UL << (nr)); } while (0) |
296 | extern void raise_softirq_irqoff(unsigned int nr); | 295 | extern void raise_softirq_irqoff(unsigned int nr); |