From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arun Sharma Subject: [PATCH][VT][11/15] Don't attempt to create paravirtualized devices for VMX domains for now. Date: Thu, 11 Aug 2005 12:25:08 -0700 Message-ID: <20050811192508.GA15331@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Ian Pratt , Keir Fraser Cc: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org [ 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 diff -r b6b29a9176d9 -r ac8cae1f2c47 tools/python/xen/xend/XendDomainInfo.py --- a/tools/python/xen/xend/XendDomainInfo.py Tue Aug 9 19:06:45 2005 +++ b/tools/python/xen/xend/XendDomainInfo.py Tue Aug 9 19:06:45 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.