diff options
| author | Ingo Molnar <mingo@elte.hu> | 2006-07-03 03:24:42 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-03 18:27:03 -0400 |
| commit | de30a2b355ea85350ca2f58f3b9bf4e5bc007986 (patch) | |
| tree | 0bef670aff65614b3c78ca13b20307355b8221d5 /include/linux | |
| parent | 5bdc9b447c0076f494a56fdcd93ee8c5e78a2afd (diff) | |
[PATCH] lockdep: irqtrace subsystem, core
Accurate hard-IRQ-flags and softirq-flags state tracing.
This allows us to attach extra functionality to IRQ flags on/off
events (such as trace-on/off).
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/hardirq.h | 26 | ||||
| -rw-r--r-- | include/linux/init_task.h | 2 | ||||
| -rw-r--r-- | include/linux/interrupt.h | 11 | ||||
| -rw-r--r-- | include/linux/irqflags.h | 96 | ||||
| -rw-r--r-- | include/linux/sched.h | 15 |
5 files changed, 141 insertions, 9 deletions
diff --git a/include/linux/hardirq.h b/include/linux/hardirq.h index 114ae583cca..b1d4332b5cf 100644 --- a/include/linux/hardirq.h +++ b/include/linux/hardirq.h | |||
| @@ -86,9 +86,6 @@ extern void synchronize_irq(unsigned int irq); | |||
| 86 | # define synchronize_irq(irq) barrier() | 86 | # define synchronize_irq(irq) barrier() |
| 87 | #endif | 87 | #endif |
| 88 | 88 | ||
| 89 | #define nmi_enter() irq_enter() | ||
| 90 | #define nmi_exit() sub_preempt_count(HARDIRQ_OFFSET) | ||
| 91 | |||
| 92 | struct task_struct; | 89 | struct task_struct; |
| 93 | 90 | ||
| 94 | #ifndef CONFIG_VIRT_CPU_ACCOUNTING | 91 | #ifndef CONFIG_VIRT_CPU_ACCOUNTING |
| @@ -97,12 +94,35 @@ static inline void account_system_vtime(struct task_struct *tsk) | |||
| 97 | } | 94 | } |
| 98 | #endif | 95 | #endif |
| 99 | 96 | ||
| 97 | /* | ||
| 98 | * It is safe to do non-atomic ops on ->hardirq_context, | ||
| 99 | * because NMI handlers may not preempt and the ops are | ||
| 100 | * always balanced, so the interrupted value of ->hardirq_context | ||
| 101 | * will always be restored. | ||
| 102 | */ | ||
| 100 | #define irq_enter() \ | 103 | #define irq_enter() \ |
| 101 | do { \ | 104 | do { \ |
| 102 | account_system_vtime(current); \ | 105 | account_system_vtime(current); \ |
| 103 | add_preempt_count(HARDIRQ_OFFSET); \ | 106 | add_preempt_count(HARDIRQ_OFFSET); \ |
| 107 | trace_hardirq_enter(); \ | ||
| 108 | } while (0) | ||
| 109 | |||
| 110 | /* | ||
| 111 | * Exit irq context without processing softirqs: | ||
| 112 | */ | ||
| 113 | #define __irq_exit() \ | ||
| 114 | do { \ | ||
| 115 | trace_hardirq_exit(); \ | ||
| 116 | account_system_vtime(current); \ | ||
| 117 | sub_preempt_count(HARDIRQ_OFFSET); \ | ||
| 104 | } while (0) | 118 | } while (0) |
| 105 | 119 | ||
| 120 | /* | ||
| 121 | * Exit irq context and process softirqs if needed: | ||
| 122 | */ | ||
| 106 | extern void irq_exit(void); | 123 | extern void irq_exit(void); |
| 107 | 124 | ||
| 125 | #define nmi_enter() irq_enter() | ||
| 126 | #define nmi_exit() __irq_exit() | ||
| 127 | |||
| 108 | #endif /* LINUX_HARDIRQ_H */ | 128 | #endif /* LINUX_HARDIRQ_H */ |
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 1b7bb37624b..444a3ae0de2 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
| @@ -3,6 +3,7 @@ | |||
| 3 | 3 | ||
| 4 | #include <linux/file.h> | 4 | #include <linux/file.h> |
| 5 | #include <linux/rcupdate.h> | 5 | #include <linux/rcupdate.h> |
| 6 | #include <linux/irqflags.h> | ||
| 6 | 7 | ||
| 7 | #define INIT_FDTABLE \ | 8 | #define INIT_FDTABLE \ |
| 8 | { \ | 9 | { \ |
| @@ -124,6 +125,7 @@ extern struct group_info init_groups; | |||
| 124 | .cpu_timers = INIT_CPU_TIMERS(tsk.cpu_timers), \ | 125 | .cpu_timers = INIT_CPU_TIMERS(tsk.cpu_timers), \ |
| 125 | .fs_excl = ATOMIC_INIT(0), \ | 126 | .fs_excl = ATOMIC_INIT(0), \ |
| 126 | .pi_lock = SPIN_LOCK_UNLOCKED, \ | 127 | .pi_lock = SPIN_LOCK_UNLOCKED, \ |
| 128 | INIT_TRACE_IRQFLAGS \ | ||
| 127 | } | 129 | } |
| 128 | 130 | ||
| 129 | 131 | ||
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 73463fbb38e..d5afee95fd4 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | #include <linux/irqreturn.h> | 10 | #include <linux/irqreturn.h> |
| 11 | #include <linux/hardirq.h> | 11 | #include <linux/hardirq.h> |
| 12 | #include <linux/sched.h> | 12 | #include <linux/sched.h> |
| 13 | #include <linux/irqflags.h> | ||
| 13 | #include <asm/atomic.h> | 14 | #include <asm/atomic.h> |
| 14 | #include <asm/ptrace.h> | 15 | #include <asm/ptrace.h> |
| 15 | #include <asm/system.h> | 16 | #include <asm/system.h> |
| @@ -199,13 +200,11 @@ static inline void __deprecated save_and_cli(unsigned long *x) | |||
| 199 | #define save_and_cli(x) save_and_cli(&x) | 200 | #define save_and_cli(x) save_and_cli(&x) |
| 200 | #endif /* CONFIG_SMP */ | 201 | #endif /* CONFIG_SMP */ |
| 201 | 202 | ||
| 202 | /* SoftIRQ primitives. */ | 203 | extern void local_bh_disable(void); |
| 203 | #define local_bh_disable() \ | 204 | extern void __local_bh_enable(void); |
| 204 | do { add_preempt_count(SOFTIRQ_OFFSET); barrier(); } while (0) | 205 | extern void _local_bh_enable(void); |
| 205 | #define __local_bh_enable() \ | ||
| 206 | do { barrier(); sub_preempt_count(SOFTIRQ_OFFSET); } while (0) | ||
| 207 | |||
| 208 | extern void local_bh_enable(void); | 206 | extern void local_bh_enable(void); |
| 207 | extern void local_bh_enable_ip(unsigned long ip); | ||
| 209 | 208 | ||
| 210 | /* PLEASE, avoid to allocate new softirqs, if you need not _really_ high | 209 | /* PLEASE, avoid to allocate new softirqs, if you need not _really_ high |
| 211 | frequency threaded job scheduling. For almost all the purposes | 210 | frequency threaded job scheduling. For almost all the purposes |
diff --git a/include/linux/irqflags.h b/include/linux/irqflags.h new file mode 100644 index 00000000000..412e025bc5c --- /dev/null +++ b/include/linux/irqflags.h | |||
| @@ -0,0 +1,96 @@ | |||
| 1 | /* | ||
| 2 | * include/linux/irqflags.h | ||
| 3 | * | ||
| 4 | * IRQ flags tracing: follow the state of the hardirq and softirq flags and | ||
| 5 | * provide callbacks for transitions between ON and OFF states. | ||
| 6 | * | ||
| 7 | * This file gets included from lowlevel asm headers too, to provide | ||
| 8 | * wrapped versions of the local_irq_*() APIs, based on the | ||
| 9 | * raw_local_irq_*() macros from the lowlevel headers. | ||
| 10 | */ | ||
| 11 | #ifndef _LINUX_TRACE_IRQFLAGS_H | ||
| 12 | #define _LINUX_TRACE_IRQFLAGS_H | ||
| 13 | |||
| 14 | #ifdef CONFIG_TRACE_IRQFLAGS | ||
| 15 | extern void trace_hardirqs_on(void); | ||
| 16 | extern void trace_hardirqs_off(void); | ||
| 17 | extern void trace_softirqs_on(unsigned long ip); | ||
| 18 | extern void trace_softirqs_off(unsigned long ip); | ||
| 19 | # define trace_hardirq_context(p) ((p)->hardirq_context) | ||
| 20 | # define trace_softirq_context(p) ((p)->softirq_context) | ||
| 21 | # define trace_hardirqs_enabled(p) ((p)->hardirqs_enabled) | ||
| 22 | # define trace_softirqs_enabled(p) ((p)->softirqs_enabled) | ||
| 23 | # define trace_hardirq_enter() do { current->hardirq_context++; } while (0) | ||
| 24 | # define trace_hardirq_exit() do { current->hardirq_context--; } while (0) | ||
| 25 | # define trace_softirq_enter() do { current->softirq_context++; } while (0) | ||
| 26 | # define trace_softirq_exit() do { current->softirq_context--; } while (0) | ||
| 27 | # define INIT_TRACE_IRQFLAGS .softirqs_enabled = 1, | ||
| 28 | #else | ||
| 29 | # define trace_hardirqs_on() do { } while (0) | ||
| 30 | # define trace_hardirqs_off() do { } while (0) | ||
| 31 | # define trace_softirqs_on(ip) do { } while (0) | ||
| 32 | # define trace_softirqs_off(ip) do { } while (0) | ||
| 33 | # define trace_hardirq_context(p) 0 | ||
| 34 | # define trace_softirq_context(p) 0 | ||
| 35 | # define trace_hardirqs_enabled(p) 0 | ||
| 36 | # define trace_softirqs_enabled(p) 0 | ||
| 37 | # define trace_hardirq_enter() do { } while (0) | ||
| 38 | # define trace_hardirq_exit() do { } while (0) | ||
| 39 | # define trace_softirq_enter() do { } while (0) | ||
| 40 | # define trace_softirq_exit() do { } while (0) | ||
| 41 | # define INIT_TRACE_IRQFLAGS | ||
| 42 | #endif | ||
| 43 | |||
| 44 | #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT | ||
| 45 | |||
| 46 | #include <asm/irqflags.h> | ||
| 47 | |||
| 48 | #define local_irq_enable() \ | ||
| 49 | do { trace_hardirqs_on(); raw_local_irq_enable(); } while (0) | ||
| 50 | #define local_irq_disable() \ | ||
| 51 | do { raw_local_irq_disable(); trace_hardirqs_off(); } while (0) | ||
| 52 | #define local_irq_save(flags) \ | ||
| 53 | do { raw_local_irq_save(flags); trace_hardirqs_off(); } while (0) | ||
| 54 | |||
| 55 | #define local_irq_restore(flags) \ | ||
| 56 | do { \ | ||
| 57 | if (raw_irqs_disabled_flags(flags)) { \ | ||
| 58 | raw_local_irq_restore(flags); \ | ||
| 59 | trace_hardirqs_off(); \ | ||
| 60 | } else { \ | ||
| 61 | trace_hardirqs_on(); \ | ||
| 62 | raw_local_irq_restore(flags); \ | ||
| 63 | } \ | ||
| 64 | } while (0) | ||
| 65 | #else /* !CONFIG_TRACE_IRQFLAGS_SUPPORT */ | ||
| 66 | /* | ||
| 67 | * The local_irq_*() APIs are equal to the raw_local_irq*() | ||
| 68 | * if !TRACE_IRQFLAGS. | ||
| 69 | */ | ||
| 70 | # define raw_local_irq_disable() local_irq_disable() | ||
| 71 | # define raw_local_irq_enable() local_irq_enable() | ||
| 72 | # define raw_local_irq_save(flags) local_irq_save(flags) | ||
| 73 | # define raw_local_irq_restore(flags) local_irq_restore(flags) | ||
| 74 | #endif /* CONFIG_TRACE_IRQFLAGS_SUPPORT */ | ||
| 75 | |||
| 76 | #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT | ||
| 77 | #define safe_halt() \ | ||
| 78 | do { \ | ||
| 79 | trace_hardirqs_on(); \ | ||
| 80 | raw_safe_halt(); \ | ||
| 81 | } while (0) | ||
| 82 | |||
| 83 | #define local_save_flags(flags) raw_local_save_flags(flags) | ||
| 84 | |||
| 85 | #define irqs_disabled() \ | ||
| 86 | ({ \ | ||
| 87 | unsigned long flags; \ | ||
| 88 | \ | ||
| 89 | raw_local_save_flags(flags); \ | ||
| 90 | raw_irqs_disabled_flags(flags); \ | ||
| 91 | }) | ||
| 92 | |||
| 93 | #define irqs_disabled_flags(flags) raw_irqs_disabled_flags(flags) | ||
| 94 | #endif /* CONFIG_X86 */ | ||
| 95 | |||
| 96 | #endif | ||
diff --git a/include/linux/sched.h b/include/linux/sched.h index bdabeee10a7..ad7a89014d2 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
| @@ -871,6 +871,21 @@ struct task_struct { | |||
| 871 | /* mutex deadlock detection */ | 871 | /* mutex deadlock detection */ |
| 872 | struct mutex_waiter *blocked_on; | 872 | struct mutex_waiter *blocked_on; |
| 873 | #endif | 873 | #endif |
| 874 | #ifdef CONFIG_TRACE_IRQFLAGS | ||
| 875 | unsigned int irq_events; | ||
| 876 | int hardirqs_enabled; | ||
| 877 | unsigned long hardirq_enable_ip; | ||
| 878 | unsigned int hardirq_enable_event; | ||
| 879 | unsigned long hardirq_disable_ip; | ||
| 880 | unsigned int hardirq_disable_event; | ||
| 881 | int softirqs_enabled; | ||
| 882 | unsigned long softirq_disable_ip; | ||
| 883 | unsigned int softirq_disable_event; | ||
| 884 | unsigned long softirq_enable_ip; | ||
| 885 | unsigned int softirq_enable_event; | ||
| 886 | int hardirq_context; | ||
| 887 | int softirq_context; | ||
| 888 | #endif | ||
| 874 | 889 | ||
| 875 | /* journalling filesystem info */ | 890 | /* journalling filesystem info */ |
| 876 | void *journal_info; | 891 | void *journal_info; |
