From 31b5e595c4b65a7d04e9d8ac38b1b5bcb9bf89d1 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Tue, 11 Dec 2018 11:55:15 +0000 Subject: [PATCH] x86: remove out label in spurious_interrupt The out label is followed by a semicolon only. Use return directly. Signed-off-by: Wei Liu Acked-by: Jan Beulich --- xen/arch/x86/apic.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/xen/arch/x86/apic.c b/xen/arch/x86/apic.c index 9db87f4f0e..2a2432619e 100644 --- a/xen/arch/x86/apic.c +++ b/xen/arch/x86/apic.c @@ -1408,15 +1408,13 @@ void spurious_interrupt(struct cpu_user_regs *regs) if (this_cpu(state_dump_pending)) { this_cpu(state_dump_pending) = false; dump_execstate(regs); - goto out; + return; } } /* see sw-dev-man vol 3, chapter 7.4.13.5 */ printk(KERN_INFO "spurious APIC interrupt on CPU#%d, should " "never happen.\n", smp_processor_id()); - -out: ; } /* -- 2.39.5