diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-08-19 23:50:09 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-16 10:52:32 -0400 |
commit | 7f95ec9e4c12fd067febfd57532da1166d75d858 (patch) | |
tree | b395b6776485f60e3f5d9d820ad665161ef76771 /include | |
parent | 3060d6fe28570640c2d7d66d38b9eaa848c3b9e3 (diff) |
x86: move kstat_irqs from kstat to irq_desc
based on Eric's patch ...
together mold it with dyn_array for irq_desc, will allcate kstat_irqs for
nr_irq_desc alltogether if needed. -- at that point nr_cpus is known already.
v2: make sure system without generic_hardirqs works they don't have irq_desc
v3: fix merging
v4: [mingo@elte.hu] fix typo
[ mingo@elte.hu ] irq: build fix
fix:
arch/x86/xen/spinlock.c: In function 'xen_spin_lock_slow':
arch/x86/xen/spinlock.c:90: error: 'struct kernel_stat' has no member named 'irqs'
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/irq.h | 7 | ||||
-rw-r--r-- | include/linux/kernel_stat.h | 22 |
2 files changed, 22 insertions, 7 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index 60c856aaac0f..cbf471aee1ce 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -158,6 +158,11 @@ struct irq_desc { | |||
158 | struct irq_desc *next; | 158 | struct irq_desc *next; |
159 | struct timer_rand_state *timer_rand_state; | 159 | struct timer_rand_state *timer_rand_state; |
160 | #endif | 160 | #endif |
161 | #ifdef CONFIG_HAVE_DYN_ARRAY | ||
162 | unsigned int *kstat_irqs; | ||
163 | #else | ||
164 | unsigned int kstat_irqs[NR_CPUS]; | ||
165 | #endif | ||
161 | irq_flow_handler_t handle_irq; | 166 | irq_flow_handler_t handle_irq; |
162 | struct irq_chip *chip; | 167 | struct irq_chip *chip; |
163 | struct msi_desc *msi_desc; | 168 | struct msi_desc *msi_desc; |
@@ -190,6 +195,8 @@ extern struct irq_desc *irq_to_desc(unsigned int irq); | |||
190 | /* could be removed if we get rid of all irq_desc reference */ | 195 | /* could be removed if we get rid of all irq_desc reference */ |
191 | extern struct irq_desc irq_desc[NR_IRQS]; | 196 | extern struct irq_desc irq_desc[NR_IRQS]; |
192 | #endif | 197 | #endif |
198 | #define kstat_irqs_this_cpu(DESC) \ | ||
199 | ((DESC)->kstat_irqs[smp_processor_id()]) | ||
193 | 200 | ||
194 | /* | 201 | /* |
195 | * Migration helpers for obsolete names, they will go away: | 202 | * Migration helpers for obsolete names, they will go away: |
diff --git a/include/linux/kernel_stat.h b/include/linux/kernel_stat.h index fe1f7fe534b4..f10616712de5 100644 --- a/include/linux/kernel_stat.h +++ b/include/linux/kernel_stat.h | |||
@@ -28,10 +28,8 @@ 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 | 31 | #ifndef CONFIG_GENERIC_HARDIRQS |
32 | unsigned int *irqs; | 32 | unsigned int irqs[NR_IRQS]; |
33 | #else | ||
34 | unsigned int irqs[NR_IRQS]; | ||
35 | #endif | 33 | #endif |
36 | }; | 34 | }; |
37 | 35 | ||
@@ -43,15 +41,25 @@ DECLARE_PER_CPU(struct kernel_stat, kstat); | |||
43 | 41 | ||
44 | extern unsigned long long nr_context_switches(void); | 42 | extern unsigned long long nr_context_switches(void); |
45 | 43 | ||
44 | #ifndef CONFIG_GENERIC_HARDIRQS | ||
45 | static inline unsigned int kstat_irqs_cpu(unsigned int irq, int cpu) | ||
46 | { | ||
47 | return kstat_cpu(cpu).irqs[irq]; | ||
48 | } | ||
49 | #else | ||
50 | extern unsigned int kstat_irqs_cpu(unsigned int irq, int cpu); | ||
51 | #endif | ||
52 | |||
46 | /* | 53 | /* |
47 | * Number of interrupts per specific IRQ source, since bootup | 54 | * Number of interrupts per specific IRQ source, since bootup |
48 | */ | 55 | */ |
49 | static inline int kstat_irqs(int irq) | 56 | static inline unsigned int kstat_irqs(unsigned int irq) |
50 | { | 57 | { |
51 | int cpu, sum = 0; | 58 | unsigned int sum = 0; |
59 | int cpu; | ||
52 | 60 | ||
53 | for_each_possible_cpu(cpu) | 61 | for_each_possible_cpu(cpu) |
54 | sum += kstat_cpu(cpu).irqs[irq]; | 62 | sum += kstat_irqs_cpu(irq, cpu); |
55 | 63 | ||
56 | return sum; | 64 | return sum; |
57 | } | 65 | } |