aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/machine_kexec.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-05-27 11:16:27 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-05-27 11:16:27 +0100
commitd655e37925bdb9fb3b50046248f9992ca8828077 (patch)
tree1eaecc8cd372ca7c181eec7672cdb89a3c9a0e38 /xen/arch/x86/machine_kexec.c
parentc3da952a0261cb2fa381154a6f22b758a4bd843b (diff)
downloadxen-d655e37925bdb9fb3b50046248f9992ca8828077.tar.gz
xen-d655e37925bdb9fb3b50046248f9992ca8828077.tar.bz2
xen-d655e37925bdb9fb3b50046248f9992ca8828077.zip
Remove unused 'retry' parameter from on_selected_cpus() etc.
Remove the unused "retry" parameter of on_selected_cpus(), on_each_cpu(), smp_call_function(), and smp_call_function_single(). Signed-off-by: Jan Beulich <jbeulich@novell.com>
Diffstat (limited to 'xen/arch/x86/machine_kexec.c')
-rw-r--r--xen/arch/x86/machine_kexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/arch/x86/machine_kexec.c b/xen/arch/x86/machine_kexec.c
index af7663e3fc..7488834593 100644
--- a/xen/arch/x86/machine_kexec.c
+++ b/xen/arch/x86/machine_kexec.c
@@ -100,7 +100,7 @@ void machine_reboot_kexec(xen_kexec_image_t *image)
if ( reboot_cpu_id != smp_processor_id() )
{
on_selected_cpus(cpumask_of(reboot_cpu_id), __machine_reboot_kexec,
- image, 1, 0);
+ image, 0);
for (;;)
; /* nothing */
}