x86/xen: mark xen_pv_play_dead() as __noreturn
authorJuergen Gross <jgross@suse.com>
Fri, 25 Nov 2022 06:32:48 +0000 (07:32 +0100)
committerJuergen Gross <jgross@suse.com>
Mon, 13 Feb 2023 05:53:19 +0000 (06:53 +0100)
Mark xen_pv_play_dead() and related to that xen_cpu_bringup_again()
as "__noreturn".

Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/r/20221125063248.30256-3-jgross@suse.com
Signed-off-by: Juergen Gross <jgross@suse.com>
arch/x86/xen/smp.h
arch/x86/xen/smp_pv.c
tools/objtool/check.c

index 6e90a312067b5cfc6e7ba0fc4fa48f4f752be88f..22fb982ff97134c5f7edbf09eebb7f583ff3342e 100644 (file)
@@ -21,7 +21,7 @@ void xen_smp_send_reschedule(int cpu);
 void xen_smp_send_call_function_ipi(const struct cpumask *mask);
 void xen_smp_send_call_function_single_ipi(int cpu);
 
-void xen_cpu_bringup_again(unsigned long stack);
+void __noreturn xen_cpu_bringup_again(unsigned long stack);
 
 struct xen_common_irq {
        int irq;
index a97b0505a48343d7d1faa747999455109f88edbc..a9cf8c8fa074cd58b18c6edcf591d99fcebe13e1 100644 (file)
@@ -381,7 +381,7 @@ static void xen_pv_cpu_die(unsigned int cpu)
        }
 }
 
-static void xen_pv_play_dead(void) /* used only with HOTPLUG_CPU */
+static void __noreturn xen_pv_play_dead(void) /* used only with HOTPLUG_CPU */
 {
        play_dead_common();
        HYPERVISOR_vcpu_op(VCPUOP_down, xen_vcpu_nr(smp_processor_id()), NULL);
@@ -400,7 +400,7 @@ static void xen_pv_cpu_die(unsigned int cpu)
        BUG();
 }
 
-static void xen_pv_play_dead(void)
+static void __noreturn xen_pv_play_dead(void)
 {
        BUG();
 }
index 4b7c8b33069e51e5839de0144882b4edfbef6872..68e87b45caefc6c49b73a27098b5e4a2d6942f0f 100644 (file)
@@ -186,6 +186,7 @@ static bool __dead_end_function(struct objtool_file *file, struct symbol *func,
                "snp_abort",
                "stop_this_cpu",
                "usercopy_abort",
+               "xen_cpu_bringup_again",
                "xen_start_kernel",
        };