components/openstack/nova/patches/01-Solaris-vm_mode.patch
branchs11u3-sru
changeset 6709 aea771e7a709
parent 6035 c9748fcc32de
child 6854 52081f923019
--- a/components/openstack/nova/patches/01-Solaris-vm_mode.patch	Thu Aug 18 08:46:22 2016 -0700
+++ b/components/openstack/nova/patches/01-Solaris-vm_mode.patch	Mon Aug 29 22:44:12 2016 -0700
@@ -1,17 +1,18 @@
-In-house patch to enable Solaris Zones specific vm_mode value for use by the
-ImagePropertiesFilter scheduling filter.  This patch has not yet been
+In-house patch to enable Solaris Zones and LDM specific vm_mode value for use by
+the ImagePropertiesFilter scheduling filter. This patch has not yet been
 submitted upstream.
 
 --- nova-2015.1.2/nova/compute/vm_mode.py.~1~	2015-10-13 07:52:35.000000000 -0700
-+++ nova-2015.1.2/nova/compute/vm_mode.py	2015-12-31 20:11:22.020900882 -0800
-@@ -31,8 +31,9 @@ HVM = "hvm"  # Native ABI (aka fully vir
++++ nova-2015.1.2/nova/compute/vm_mode.py	2016-08-02 14:05:48.000830684 -0700
+@@ -31,8 +31,10 @@
  XEN = "xen"  # Xen 3.0 paravirtualized
  UML = "uml"  # User Mode Linux paravirtualized
  EXE = "exe"  # Executables in containers
 +SOL = "solariszones"  # Solaris zones (non-global and kernel)
++LDM = "ldoms" # Logical Domains (Oracle VM for SPARC)
  
 -ALL = [HVM, XEN, UML, EXE]
-+ALL = [HVM, XEN, UML, EXE, SOL]
++ALL = [HVM, XEN, UML, EXE, SOL, LDM]
  
  
  def get_from_instance(instance):