aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/sched_credit2.c
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2011-11-08 10:35:12 +0100
committerJan Beulich <jbeulich@suse.com>2011-11-08 10:35:12 +0100
commitfe9ff5a9d54cced306aefaba126340e0c596717e (patch)
treef6343fff80683d6362cdb467178173d9a0223e07 /xen/common/sched_credit2.c
parente82e07391c18eddbe7f6f969e4c7181468fe232a (diff)
downloadxen-fe9ff5a9d54cced306aefaba126340e0c596717e.tar.gz
xen-fe9ff5a9d54cced306aefaba126340e0c596717e.tar.bz2
xen-fe9ff5a9d54cced306aefaba126340e0c596717e.zip
eliminate cpu_clear()
Signed-off-by: Jan Beulich <jbeulich@suse.com> Acked-by: Keir Fraser <keir@xen.org> Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
Diffstat (limited to 'xen/common/sched_credit2.c')
-rw-r--r--xen/common/sched_credit2.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/xen/common/sched_credit2.c b/xen/common/sched_credit2.c
index 2611e12f08..9314121092 100644
--- a/xen/common/sched_credit2.c
+++ b/xen/common/sched_credit2.c
@@ -1638,7 +1638,7 @@ csched_schedule(
/* Clear "tickled" bit now that we've been scheduled */
if ( cpumask_test_cpu(cpu, &rqd->tickled) )
- cpu_clear(cpu, rqd->tickled);
+ cpumask_clear_cpu(cpu, &rqd->tickled);
/* Update credits */
burn_credits(rqd, scurr, now);
@@ -1709,7 +1709,7 @@ csched_schedule(
/* Clear the idle mask if necessary */
if ( cpumask_test_cpu(cpu, &rqd->idle) )
- cpu_clear(cpu, rqd->idle);
+ cpumask_clear_cpu(cpu, &rqd->idle);
snext->start_time = now;
@@ -1873,7 +1873,7 @@ static void deactivate_runqueue(struct csched_private *prv, int rqi)
rqd->id = -1;
- cpu_clear(rqi, prv->active_queues);
+ cpumask_clear_cpu(rqi, &prv->active_queues);
}
static void init_pcpu(const struct scheduler *ops, int cpu)
@@ -1977,8 +1977,8 @@ csched_free_pdata(const struct scheduler *ops, void *pcpu, int cpu)
printk("Removing cpu %d from runqueue %d\n", cpu, rqi);
- cpu_clear(cpu, rqd->idle);
- cpu_clear(cpu, rqd->active);
+ cpumask_clear_cpu(cpu, &rqd->idle);
+ cpumask_clear_cpu(cpu, &rqd->active);
if ( cpumask_empty(&rqd->active) )
{
@@ -1988,7 +1988,7 @@ csched_free_pdata(const struct scheduler *ops, void *pcpu, int cpu)
spin_unlock(&rqd->lock);
- cpu_clear(cpu, prv->initialized);
+ cpumask_clear_cpu(cpu, &prv->initialized);
spin_unlock_irqrestore(&prv->lock, flags);