Dan Kenigsberg has uploaded a new change for review.
Change subject: xen: use qemu connection, as compareCPU is unavailable via xen ......................................................................
xen: use qemu connection, as compareCPU is unavailable via xen
This patch is required until compareCPU is implemented by libvirt's xenlight driver.
Change-Id: Ib86a325910aa57847fef194d7c4bd7c7854e2852 Signed-off-by: Dan Kenigsberg danken@redhat.com --- M vdsm/caps.py 1 file changed, 4 insertions(+), 1 deletion(-)
git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/51/28351/1
diff --git a/vdsm/caps.py b/vdsm/caps.py index a4caa13..a27f582 100644 --- a/vdsm/caps.py +++ b/vdsm/caps.py @@ -368,7 +368,10 @@
@utils.memoized def _getCompatibleCpuModels(): - c = libvirtconnection.get() + if libvirtconnection.XEN: + c = libvirtconnection._open_qemu_connection() + else: + c = libvirtconnection.get() allModels = _getAllCpuModels()
def compatible(model, vendor):
oVirt Jenkins CI Server has posted comments on this change.
Change subject: xen: use qemu connection, as compareCPU is unavailable via xen ......................................................................
Patch Set 1:
Build Failed
http://jenkins.ovirt.org/job/vdsm_master_unit_tests_gerrit/9687/ : FAILURE
http://jenkins.ovirt.org/job/vdsm_master_unit_tests_gerrit_el/8754/ : SUCCESS
http://jenkins.ovirt.org/job/vdsm_master_pep8_gerrit/9540/ : SUCCESS
Itamar Heim has posted comments on this change.
Change subject: xen: use qemu connection, as compareCPU is unavailable via xen ......................................................................
Patch Set 1:
ping
automation@ovirt.org has posted comments on this change.
Change subject: xen: use qemu connection, as compareCPU is unavailable via xen ......................................................................
Patch Set 1:
* Update tracker::IGNORE, no Bug-Url found
Jenkins CI RO has posted comments on this change.
Change subject: xen: use qemu connection, as compareCPU is unavailable via xen ......................................................................
Patch Set 1:
Abandoned due to no activity - please restore if still relevant
Jenkins CI RO has abandoned this change.
Change subject: xen: use qemu connection, as compareCPU is unavailable via xen ......................................................................
Abandoned
Abandoned due to no activity - please restore if still relevant
vdsm-patches@lists.fedorahosted.org