aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common/compat
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/compat
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/compat')
-rw-r--r--xen/common/compat/domain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/common/compat/domain.c b/xen/common/compat/domain.c
index 12929122f6..a7f2d8ff43 100644
--- a/xen/common/compat/domain.c
+++ b/xen/common/compat/domain.c
@@ -44,7 +44,7 @@ int compat_vcpu_op(int cmd, int vcpuid, XEN_GUEST_HANDLE(void) arg)
LOCK_BIGLOCK(d);
rc = -EEXIST;
- if ( !test_bit(_VCPUF_initialised, &v->vcpu_flags) )
+ if ( !v->is_initialised )
rc = boot_vcpu(d, vcpuid, cmp_ctxt);
UNLOCK_BIGLOCK(d);