[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [ We'll try to get in a proper fix into 3.0 - this is just the backup plan]
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID ee8df88e5f7ef84be24a889b8883fa9426797611 # Parent 5608c11ba2d8a8f1e48305b7e1cbb8076da56a5e [ We'll try to get in a proper fix into 3.0 - this is just the backup plan] Don't attempt to create paravirtualized devices for VMX domains for now. Signed-off-by: Arun Sharma <arun.sharma@xxxxxxxxx> diff -r 5608c11ba2d8 -r ee8df88e5f7e tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Thu Aug 11 21:05:21 2005 +++ b/tools/python/xen/xend/XendDomainInfo.py Thu Aug 11 21:05:58 2005 @@ -743,7 +743,8 @@ for ctrl in self.getDeviceControllers(): ctrl.initController(reboot=True) else: - self.create_configured_devices() + if self.image.ostype != 'vmx': + self.create_configured_devices() if not self.device_model_pid: self.device_model_pid = self.image.createDeviceModel() @@ -915,7 +916,8 @@ """ self.configure_fields() self.create_devices() - self.create_blkif() + if self.image.ostype != 'vmx': + self.create_blkif() def create_blkif(self): """Create the block device interface (blkif) for the vm. _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |