From 1421772e4e43f53fc92130558a2b011eef013d93 Mon Sep 17 00:00:00 2001 From: Andrew Cook Date: Thu, 24 Mar 2016 21:09:13 +1100 Subject: [PATCH] Disable x2apic for solaris 11 Same hack that 10 needs --- virtinst/osdict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtinst/osdict.py b/virtinst/osdict.py index 9f9679c0b..e8c14879d 100644 --- a/virtinst/osdict.py +++ b/virtinst/osdict.py @@ -431,7 +431,7 @@ class _OsVariant(object): def broken_x2apic(self): # x2apic breaks networking in solaris10 # https://bugs.launchpad.net/bugs/1395217 - return self.name == 'solaris10' + return self.name in ('solaris10', 'solaris11') def get_clock(self): if self.is_windows() or self._family in ['solaris']: