From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932860AbbI3TWO (ORCPT ); Wed, 30 Sep 2015 15:22:14 -0400 Received: from terminus.zytor.com ([198.137.202.10]:36312 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753272AbbI3TWK (ORCPT ); Wed, 30 Sep 2015 15:22:10 -0400 Date: Wed, 30 Sep 2015 12:21:35 -0700 From: tip-bot for Denys Vlasenko Message-ID: Cc: bp@alien8.de, luto@amacapital.net, mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org, dvlasenk@redhat.com, tglx@linutronix.de Reply-To: linux-kernel@vger.kernel.org, tglx@linutronix.de, dvlasenk@redhat.com, mingo@kernel.org, hpa@zytor.com, luto@amacapital.net, bp@alien8.de In-Reply-To: <1443559022-23793-1-git-send-email-dvlasenk@redhat.com> References: <1443559022-23793-1-git-send-email-dvlasenk@redhat.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/apic] x86/apic: Deinline various functions Git-Commit-ID: d786ad32c305ca0f6be1924558866fe9f901e291 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: d786ad32c305ca0f6be1924558866fe9f901e291 Gitweb: http://git.kernel.org/tip/d786ad32c305ca0f6be1924558866fe9f901e291 Author: Denys Vlasenko AuthorDate: Tue, 29 Sep 2015 22:37:02 +0200 Committer: Thomas Gleixner CommitDate: Wed, 30 Sep 2015 21:15:53 +0200 x86/apic: Deinline various functions __x2apic_disable: 178 bytes, 3 calls __x2apic_enable: 117 bytes, 3 calls __smp_spurious_interrupt: 110 bytes, 2 calls __smp_error_interrupt: 208 bytes, 2 calls Reduces code size by about 850 bytes. Signed-off-by: Denys Vlasenko Cc: Borislav Petkov Cc: Andy Lutomirski Link: http://lkml.kernel.org/r/1443559022-23793-1-git-send-email-dvlasenk@redhat.com Signed-off-by: Thomas Gleixner --- arch/x86/kernel/apic/apic.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index 24e94ce..2f69e3b 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c @@ -1431,7 +1431,7 @@ enum { }; static int x2apic_state; -static inline void __x2apic_disable(void) +static void __x2apic_disable(void) { u64 msr; @@ -1447,7 +1447,7 @@ static inline void __x2apic_disable(void) printk_once(KERN_INFO "x2apic disabled\n"); } -static inline void __x2apic_enable(void) +static void __x2apic_enable(void) { u64 msr; @@ -1807,7 +1807,7 @@ int apic_version[MAX_LOCAL_APIC]; /* * This interrupt should _never_ happen with our APIC/SMP architecture */ -static inline void __smp_spurious_interrupt(u8 vector) +static void __smp_spurious_interrupt(u8 vector) { u32 v; @@ -1848,7 +1848,7 @@ __visible void smp_trace_spurious_interrupt(struct pt_regs *regs) /* * This interrupt should never happen with our APIC/SMP architecture */ -static inline void __smp_error_interrupt(struct pt_regs *regs) +static void __smp_error_interrupt(struct pt_regs *regs) { u32 v; u32 i = 0;