aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/rcupdate.c
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2011-09-18 00:22:57 +0100
committerJan Beulich <jbeulich@suse.com>2011-09-18 00:22:57 +0100
commit6ac9f9c55cce7e94445120ee8751a165dfe2d9d3 (patch)
tree564d7e5fb09327622ca78c5202212c90baca88b5 /xen/common/rcupdate.c
parent645bf0d3fb22c91491c73dd16d184e8e986e1251 (diff)
downloadxen-6ac9f9c55cce7e94445120ee8751a165dfe2d9d3.tar.gz
xen-6ac9f9c55cce7e94445120ee8751a165dfe2d9d3.tar.bz2
xen-6ac9f9c55cce7e94445120ee8751a165dfe2d9d3.zip
convert more literal uses of cpumask_t to pointers
This is particularly relevant as the number of CPUs to be supported increases (as recently happened for the default thereof). Signed-off-by: Jan Beulich <jbeulich@suse.com>
Diffstat (limited to 'xen/common/rcupdate.c')
-rw-r--r--xen/common/rcupdate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/rcupdate.c b/xen/common/rcupdate.c
index 8f795d9a37..973da06f2e 100644
--- a/xen/common/rcupdate.c
+++ b/xen/common/rcupdate.c
@@ -117,7 +117,7 @@ static void force_quiescent_state(struct rcu_data *rdp,
*/
cpumask = rcp->cpumask;
cpu_clear(rdp->cpu, cpumask);
- cpumask_raise_softirq(cpumask, SCHEDULE_SOFTIRQ);
+ cpumask_raise_softirq(&cpumask, SCHEDULE_SOFTIRQ);
}
}