aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/interrupt.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2006-07-03 03:24:27 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-07-03 18:27:00 -0400
commitd7e9629de051bb4b1d104588cd97673ad770809e (patch)
tree8d9f8fd16910ef959d39cb6264a3e5da9b8d7bec /include/linux/interrupt.h
parentc01d403b2e3e3f231b18ebd07ad64ecbe6a258a5 (diff)
[PATCH] lockdep: add local_irq_enable_in_hardirq() API
Introduce local_irq_enable_in_hardirq() API. It is currently aliased to local_irq_enable(), hence has no functional effects. This API will be used by lockdep, but even without lockdep this will better document places in the kernel where a hardirq context enables hardirqs. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/interrupt.h')
-rw-r--r--include/linux/interrupt.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index 2c5452c1d7bb..73463fbb38e4 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -80,6 +80,23 @@ extern int request_irq(unsigned int,
80 unsigned long, const char *, void *); 80 unsigned long, const char *, void *);
81extern void free_irq(unsigned int, void *); 81extern void free_irq(unsigned int, void *);
82 82
83/*
84 * On lockdep we dont want to enable hardirqs in hardirq
85 * context. Use local_irq_enable_in_hardirq() to annotate
86 * kernel code that has to do this nevertheless (pretty much
87 * the only valid case is for old/broken hardware that is
88 * insanely slow).
89 *
90 * NOTE: in theory this might break fragile code that relies
91 * on hardirq delivery - in practice we dont seem to have such
92 * places left. So the only effect should be slightly increased
93 * irqs-off latencies.
94 */
95#ifdef CONFIG_LOCKDEP
96# define local_irq_enable_in_hardirq() do { } while (0)
97#else
98# define local_irq_enable_in_hardirq() local_irq_enable()
99#endif
83 100
84#ifdef CONFIG_GENERIC_HARDIRQS 101#ifdef CONFIG_GENERIC_HARDIRQS
85extern void disable_irq_nosync(unsigned int irq); 102extern void disable_irq_nosync(unsigned int irq);