diff options
author | Anton Blanchard <anton@samba.org> | 2010-01-31 15:30:23 -0500 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2010-02-16 22:02:48 -0500 |
commit | 8c007bfdf1bab536f824d91fccc76596c18aba78 (patch) | |
tree | 07bd7c2ce8b016d0d48bd2eb919f0d10eacdf4c5 /arch/powerpc/kernel/irq.c | |
parent | 8d3d50bf1913561ef3b1f5b53115c5a481ba9b1e (diff) |
powerpc: Reduce footprint of irq_stat
PowerPC is currently using asm-generic/hardirq.h which statically allocates an
NR_CPUS irq_stat array. Switch to an arch specific implementation which uses
per cpu data:
On a kernel with NR_CPUS=1024, this saves quite a lot of memory:
text data bss dec hex filename
8767938 2944132 1636796 13348866 cbb002 vmlinux.baseline
8767779 2944260 1505724 13217763 c9afe3 vmlinux.irq_cpustat
A saving of around 128kB.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/irq.c')
-rw-r--r-- | arch/powerpc/kernel/irq.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c index 9040330b0530..c6ac5583672a 100644 --- a/arch/powerpc/kernel/irq.c +++ b/arch/powerpc/kernel/irq.c | |||
@@ -73,6 +73,9 @@ | |||
73 | #define CREATE_TRACE_POINTS | 73 | #define CREATE_TRACE_POINTS |
74 | #include <asm/trace.h> | 74 | #include <asm/trace.h> |
75 | 75 | ||
76 | DEFINE_PER_CPU_SHARED_ALIGNED(irq_cpustat_t, irq_stat); | ||
77 | EXPORT_PER_CPU_SYMBOL(irq_stat); | ||
78 | |||
76 | int __irq_offset_value; | 79 | int __irq_offset_value; |
77 | static int ppc_spurious_interrupts; | 80 | static int ppc_spurious_interrupts; |
78 | 81 | ||