diff options
author | Denys Vlasenko <dvlasenk@redhat.com> | 2016-03-06 13:11:16 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-03-08 06:26:41 -0500 |
commit | fe2f95468e4bdf4a526be4f86efaefe48ca63b83 (patch) | |
tree | 351128a0a9f5a5456cc14f82dc99fb1e6da18d34 | |
parent | 1a8aa8acab4f3949e05ceb51e36f627b1651814c (diff) |
x86/apic: Deinline _flat_send_IPI_mask, save ~150 bytes
_flat_send_IPI_mask: 157 bytes, 3 callsites
text data bss dec hex filename
96183823 20860520 36122624 153166967 9212477 vmlinux1_before
96183699 20860520 36122624 153166843 92123fb vmlinux
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Cc: Borislav Petkov <bp@alien.de>
Cc: Daniel J Blueman <daniel@numascale.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Travis <travis@sgi.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Link: http://lkml.kernel.org/r/1457287876-6001-2-git-send-email-dvlasenk@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/x86/kernel/apic/apic_flat_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic/apic_flat_64.c b/arch/x86/kernel/apic/apic_flat_64.c index 9968f30cca3e..76f89e2b245a 100644 --- a/arch/x86/kernel/apic/apic_flat_64.c +++ b/arch/x86/kernel/apic/apic_flat_64.c | |||
@@ -53,7 +53,7 @@ void flat_init_apic_ldr(void) | |||
53 | apic_write(APIC_LDR, val); | 53 | apic_write(APIC_LDR, val); |
54 | } | 54 | } |
55 | 55 | ||
56 | static inline void _flat_send_IPI_mask(unsigned long mask, int vector) | 56 | static void _flat_send_IPI_mask(unsigned long mask, int vector) |
57 | { | 57 | { |
58 | unsigned long flags; | 58 | unsigned long flags; |
59 | 59 | ||