[libvirt] [PATCH 4/6] qemu: vcpupin: Always set affinity even when cgroups are supported

John Ferlan jferlan at redhat.com
Fri Feb 19 12:19:38 UTC 2016



On 02/17/2016 11:25 AM, Peter Krempa wrote:
> VM startup and CPU hotplug always set the affinity regardless of cgroups
> support. Use the same approach for the pinning API.
> ---
>  src/qemu/qemu_driver.c | 7 +++----
>  1 file changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
> index 24c1ca4..d1e5188 100644
> --- a/src/qemu/qemu_driver.c
> +++ b/src/qemu/qemu_driver.c
> @@ -5068,12 +5068,11 @@ qemuDomainPinVcpuFlags(virDomainPtr dom,
>                  goto endjob;
>              if (qemuSetupCgroupCpusetCpus(cgroup_vcpu, pcpumap) < 0)
>                  goto endjob;
> -        } else {
> -            if (virProcessSetAffinity(qemuDomainGetVcpuPid(vm, vcpu),
> -                                      pcpumap) < 0)
> -                goto endjob;
>          }
> 
> +        if (virProcessSetAffinity(qemuDomainGetVcpuPid(vm, vcpu), pcpumap) < 0)
> +            goto endjob;
> +
>          virBitmapFree(vcpuinfolive->cpumask);
>          vcpuinfolive->cpumask = pcpumaplive;
>          pcpumaplive = NULL;
> 

Why not the same for qemuDomainPinEmulator and qemuDomainPinIOThread?
Since qemuProcessSetEmulatorAffinity and qemuProcessSetupIOThread do the
same as qemuProcessSetupVcpu.

John




More information about the libvir-list mailing list