[libvirt] [PATCH] apparmor: pass attach_disconnected

2016-12-18 Thread Guido Günther
to cure + virsh lxc-enter-namespace --noseclabel libvirt: error : Expected at least one file descriptor error: internal error: Child process (2714) unexpected exit status 125 caused by apparmor="DENIED" operation="open" info="Failed name lookup - disconnected path" error=-13

Re: [libvirt] [PATCH] network: don't use dhcp-authoritative on static networks

2016-12-18 Thread Laine Stump
On 12/16/2016 11:58 AM, Martin Wilck wrote: "Static" DHCP networks are those where no dynamic DHCP range is defined, only a list of host entries is used to serve permanent IP addresses. On such networks, we don't want dnsmasq to reply to other requests than those statically defined. But

Re: [libvirt] [PATCH 0/9] Qemu: s390: Cpu Model Support

2016-12-18 Thread Jason J. Herne
On 12/18/2016 02:22 PM, Jason J. Herne wrote: This patch set enables cpu model support for s390. The user can now set exact cpu models, query supported models via virsh domcapabilities, and use host-model and host-passthrough modes. The end result is that migration is safer because Qemu will

[libvirt] [PATCH 5/9] tests: qemu capabilites: qemu 2.7 and 2.8 on s390x

2016-12-18 Thread Jason J. Herne
From: "Collin L. Walling" Tests Qemu capabilities on s390x before and after the availability of the query-cpu-model-expansion QMP command. Signed-off-by: Collin L. Walling Signed-off-by: Jason J. Herne ---

[libvirt] [PATCH 9/9] qemu: command: Support new cpu feature argument syntax

2016-12-18 Thread Jason J. Herne
From: "Collin L. Walling" Qemu has abandoned the +/-feature syntax in favor of key=value. Some architectures (s390) do not support +/-feature. So we update libvirt to handle both formats. If we detect a sufficiently new Qemu (indicated by support for qmp

[libvirt] [PATCH 8/9] tests: qemuxml2argv s390x cpu model

2016-12-18 Thread Jason J. Herne
Test cases for qemu s390x cpu model argument generation. Signed-off-by: Jason J. Herne --- .../qemuxml2argv-cpu-s390-zEC12.args| 19 +++ .../qemuxml2argv-cpu-s390-zEC12.xml | 21 +

[libvirt] [PATCH 7/9] qemu-caps: Get host model directly from Qemu when available

2016-12-18 Thread Jason J. Herne
When qmp query-cpu-model-expansion is available probe Qemu for its view of the host model. In kvm environments this can provide a more complete view of the host model because features supported by Qemu and Kvm can be considered. Signed-off-by: Collin L. Walling

[libvirt] [PATCH 6/9] qemu: qmp query-cpu-model-expansion command

2016-12-18 Thread Jason J. Herne
From: "Collin L. Walling" query-cpu-model-expansion is used to get a list of features for a given cpu model name or to get the model and features of the host hardware/environment as seen by Qemu/kvm. Signed-off-by: Collin L. Walling

[libvirt] [PATCH 2/9] s390-cpu: Remove nodeData and decode

2016-12-18 Thread Jason J. Herne
On s390, the host's features are heavily influenced by not only the host hardware but also by hardware microcode level, host OS version, qemu version and kvm version. In this environment it does not make sense to attempt to report exact host details. Signed-off-by: Jason J. Herne

[libvirt] [PATCH 0/9] Qemu: s390: Cpu Model Support

2016-12-18 Thread Jason J. Herne
This patch set enables cpu model support for s390. The user can now set exact cpu models, query supported models via virsh domcapabilities, and use host-model and host-passthrough modes. The end result is that migration is safer because Qemu will perform runnability checking on the destination

[libvirt] [PATCH 1/9] s390: Cpu driver support for update and compare

2016-12-18 Thread Jason J. Herne
Implement compare for s390. Required to test the guest against the host for guest cpu model runnability checking. We always return IDENTICAL to bypass Libvirt's checking. s390 will rely on Qemu to perform the runnability checking. Implement update for s390. required to support use of cpu

[libvirt] [PATCH 4/9] tests: domain capabilities: qemu 2.7 and 2.8 on s390x

2016-12-18 Thread Jason J. Herne
From: "Collin L. Walling" Tests domain capabilities on s390x using the Qemu 2.8 capabilities data. Signed-off-by: Collin L. Walling Signed-off-by: Jason J. Herne ---