diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-08-19 23:50:01 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-16 10:52:08 -0400 |
commit | d17a55ded3393ad3878010bb3a8243a15a8d8df5 (patch) | |
tree | 782f135f3ec8868cde9959d1670a463b45e3b24c /include/linux/kernel_stat.h | |
parent | fa42d10dd5e1ff373061c0526f272106512301f9 (diff) |
irq: make irqs in kernel stat use per_cpu_dyn_array
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/kernel_stat.h')
-rw-r--r-- | include/linux/kernel_stat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/kernel_stat.h b/include/linux/kernel_stat.h index cf9f40a91c9c..fe1f7fe534b4 100644 --- a/include/linux/kernel_stat.h +++ b/include/linux/kernel_stat.h | |||
@@ -28,7 +28,11 @@ struct cpu_usage_stat { | |||
28 | 28 | ||
29 | struct kernel_stat { | 29 | struct kernel_stat { |
30 | struct cpu_usage_stat cpustat; | 30 | struct cpu_usage_stat cpustat; |
31 | #ifdef CONFIG_HAVE_DYN_ARRAY | ||
32 | unsigned int *irqs; | ||
33 | #else | ||
31 | unsigned int irqs[NR_IRQS]; | 34 | unsigned int irqs[NR_IRQS]; |
35 | #endif | ||
32 | }; | 36 | }; |
33 | 37 | ||
34 | DECLARE_PER_CPU(struct kernel_stat, kstat); | 38 | DECLARE_PER_CPU(struct kernel_stat, kstat); |