aboutsummaryrefslogtreecommitdiffstats
path: root/xen/common
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-01-19 12:03:51 +0000
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-01-19 12:03:51 +0000
commit7d0281ec5461e34a42feb91c1e698918474dba90 (patch)
treeba910d33c01d144ba63e89cbad5b4ccfc0f63020 /xen/common
parenta963dfad5280fb6ce6af3b587ead7b0fe3ee5ebd (diff)
downloadxen-7d0281ec5461e34a42feb91c1e698918474dba90.tar.gz
xen-7d0281ec5461e34a42feb91c1e698918474dba90.tar.bz2
xen-7d0281ec5461e34a42feb91c1e698918474dba90.zip
[XEN] Revert change to vcpu_guest_context which breaks guest ABI.
HVM save/restore needs to save/restore vcpu state via the new stream-based load/save hypercalls. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/common')
-rw-r--r--xen/common/domain.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/xen/common/domain.c b/xen/common/domain.c
index de7892d6b5..aa232585c8 100644
--- a/xen/common/domain.c
+++ b/xen/common/domain.c
@@ -506,14 +506,6 @@ int set_info_guest(struct domain *d,
if ( rc == 0 )
rc = arch_set_info_guest(v, c);
- /*XXX: hvm smp guest restore support */
- if ( rc == 0 &&
- v->vcpu_id != 0 &&
- is_hvm_vcpu(v) &&
- test_and_clear_bit(_VCPUF_down, &v->vcpu_flags) ) {
- vcpu_wake(v);
- }
-
domain_unpause(d);
xfree(c.nat);