aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/keyhandler.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/keyhandler.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/keyhandler.c')
-rw-r--r--xen/common/keyhandler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/common/keyhandler.c b/xen/common/keyhandler.c
index 5407456290..a1fecf23b0 100644
--- a/xen/common/keyhandler.c
+++ b/xen/common/keyhandler.c
@@ -119,7 +119,7 @@ static void dump_registers(unsigned char key, struct cpu_user_regs *regs)
if ( cpu == smp_processor_id() )
continue;
printk("\n*** Dumping CPU%d host state: ***\n", cpu);
- on_selected_cpus(cpumask_of(cpu), __dump_execstate, NULL, 1, 1);
+ on_selected_cpus(cpumask_of(cpu), __dump_execstate, NULL, 1);
}
printk("\n");
@@ -263,7 +263,7 @@ static void read_clocks(unsigned char key)
spin_lock(&lock);
- smp_call_function(read_clocks_slave, NULL, 0, 0);
+ smp_call_function(read_clocks_slave, NULL, 0);
local_irq_disable();
read_clocks_cpumask = cpu_online_map;