aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/gdbstub.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/common/gdbstub.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/common/gdbstub.c')
-rw-r--r--xen/common/gdbstub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/gdbstub.c b/xen/common/gdbstub.c
index e578756a74..6bbd23f395 100644
--- a/xen/common/gdbstub.c
+++ b/xen/common/gdbstub.c
@@ -672,7 +672,7 @@ static void gdb_smp_pause(void)
atomic_set(&gdb_smp_paused_count, 0);
- smp_call_function(gdb_pause_this_cpu, NULL, /* dont wait! */0, 0);
+ smp_call_function(gdb_pause_this_cpu, NULL, /* dont wait! */0);
/* Wait 100ms for all other CPUs to enter pause loop */
while ( (atomic_read(&gdb_smp_paused_count) < (num_online_cpus() - 1))