aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/sched_sedf.c
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-03-29 16:52:40 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-03-29 16:52:40 +0100
commit90bc7dea0e4996f8bfe2952d53943182ee75eef3 (patch)
tree7915f5ab031ceadb00718878558047136d45581f /xen/common/sched_sedf.c
parent56ada11259ad745d39fdab4ded0403ba13fc0688 (diff)
downloadxen-90bc7dea0e4996f8bfe2952d53943182ee75eef3.tar.gz
xen-90bc7dea0e4996f8bfe2952d53943182ee75eef3.tar.bz2
xen-90bc7dea0e4996f8bfe2952d53943182ee75eef3.zip
xen: Get rid of some VCPUF_* flags and move into their own byte fields.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/common/sched_sedf.c')
-rw-r--r--xen/common/sched_sedf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/sched_sedf.c b/xen/common/sched_sedf.c
index 8f79dd23b4..8a1223a03b 100644
--- a/xen/common/sched_sedf.c
+++ b/xen/common/sched_sedf.c
@@ -1189,7 +1189,7 @@ void sedf_wake(struct vcpu *d)
static void sedf_dump_domain(struct vcpu *d)
{
printk("%i.%i has=%c ", d->domain->domain_id, d->vcpu_id,
- test_bit(_VCPUF_running, &d->vcpu_flags) ? 'T':'F');
+ d->is_running ? 'T':'F');
printk("p=%"PRIu64" sl=%"PRIu64" ddl=%"PRIu64" w=%hu"
" sc=%i xtr(%s)=%"PRIu64" ew=%hu",
EDOM_INFO(d)->period, EDOM_INFO(d)->slice, EDOM_INFO(d)->deadl_abs,