aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/smp.h
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/include/xen/smp.h
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/include/xen/smp.h')
-rw-r--r--xen/include/xen/smp.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/xen/include/xen/smp.h b/xen/include/xen/smp.h
index 93b0713205..3d889ba662 100644
--- a/xen/include/xen/smp.h
+++ b/xen/include/xen/smp.h
@@ -34,7 +34,6 @@ extern void smp_cpus_done(unsigned int max_cpus);
extern int smp_call_function(
void (*func) (void *info),
void *info,
- int retry,
int wait);
/*
@@ -44,7 +43,6 @@ extern int on_selected_cpus(
const cpumask_t *selected,
void (*func) (void *info),
void *info,
- int retry,
int wait);
/*
@@ -59,10 +57,9 @@ void smp_prepare_boot_cpu(void);
static inline int on_each_cpu(
void (*func) (void *info),
void *info,
- int retry,
int wait)
{
- return on_selected_cpus(&cpu_online_map, func, info, retry, wait);
+ return on_selected_cpus(&cpu_online_map, func, info, wait);
}
#define smp_processor_id() raw_smp_processor_id()