All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][VT][11/15] Don't attempt to create paravirtualized devices for VMX domains for now.
@ 2005-08-11 19:25 Arun Sharma
  0 siblings, 0 replies; only message in thread
From: Arun Sharma @ 2005-08-11 19:25 UTC (permalink / raw)
  To: Ian Pratt, Keir Fraser; +Cc: xen-devel

[ 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@intel.com>

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.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-08-11 19:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-11 19:25 [PATCH][VT][11/15] Don't attempt to create paravirtualized devices for VMX domains for now Arun Sharma

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.