Bug 1131486
Summary: | libvirt should ignore 'cpuset' specified by vcpu if attribute 'emulatorpin' or 'vcpupin' is specified | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 7 | Reporter: | yanbing du <ydu> |
Component: | libvirt | Assignee: | Peter Krempa <pkrempa> |
Status: | CLOSED ERRATA | QA Contact: | Virtualization Bugs <virt-bugs> |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | 7.1 | CC: | dyuan, honzhang, lhuang, mkletzan, mzhan, pkrempa, rbalakri |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
Whiteboard: | |||
Fixed In Version: | libvirt-1.2.16-1.el7 | Doc Type: | Bug Fix |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2015-11-19 05:47:39 UTC | Type: | Bug |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: |
Description
yanbing du
2014-08-19 11:57:23 UTC
Fixed upstream: commit f0fa9080d47b7aedad6f4884b8879d88688752a6 Author: Peter Krempa <pkrempa> Date: Fri Mar 27 10:23:19 2015 +0100 qemu: cgroup: Properly set up vcpu pinning When the default cpuset or automatic numa placement is used libvirt would place the whole parent cgroup in the specified cpuset. This then disallowed to re-pin the vcpus to a different cpu. This patch pins only the vcpu threads to the default cpuset and thus allows to re-pin them later. The following config would fail to start: <domain type='kvm'> ... <vcpu placement='static' cpuset='0-1' current='2'>4</vcpu> <cputune> <vcpupin vcpu='0' cpuset='2-3'/> ... This is a regression since a39f69d2b. v1.2.14-4-gf0fa908 Verify this bug with libvirt-1.2.17-2.el7.x86_64: 1. prepare a guest with cpuset and vcpupin, iothreadpin, emulatorpin: # virsh dumpxml test4 <vcpu placement='static' cpuset='2' current='2'>4</vcpu> <iothreads>3</iothreads> <cputune> <vcpupin vcpu='0' cpuset='1'/> <emulatorpin cpuset='3'/> <iothreadpin iothread='1' cpuset='0'/> </cputune> 2. start it: # virsh start test4 Domain test4 started 3. check cgroup # cgget -g cpuset /machine.slice/machine-qemu\\x2dtest4.scope/emulator /machine.slice/machine-qemu\x2dtest4.scope/emulator: cpuset.memory_spread_slab: 0 cpuset.memory_spread_page: 0 cpuset.memory_pressure: 0 cpuset.memory_migrate: 1 cpuset.sched_relax_domain_level: -1 cpuset.sched_load_balance: 1 cpuset.mem_hardwall: 0 cpuset.mem_exclusive: 0 cpuset.cpu_exclusive: 0 cpuset.mems: 0 cpuset.cpus: 3 # cgget -g cpuset /machine.slice/machine-qemu\\x2dtest4.scope/iothread1 /machine.slice/machine-qemu\x2dtest4.scope/iothread1: cpuset.memory_spread_slab: 0 cpuset.memory_spread_page: 0 cpuset.memory_pressure: 0 cpuset.memory_migrate: 1 cpuset.sched_relax_domain_level: -1 cpuset.sched_load_balance: 1 cpuset.mem_hardwall: 0 cpuset.mem_exclusive: 0 cpuset.cpu_exclusive: 0 cpuset.mems: 0 cpuset.cpus: 0 # cgget -g cpuset /machine.slice/machine-qemu\\x2dtest4.scope/vcpu0 /machine.slice/machine-qemu\x2dtest4.scope/vcpu0: cpuset.memory_spread_slab: 0 cpuset.memory_spread_page: 0 cpuset.memory_pressure: 0 cpuset.memory_migrate: 1 cpuset.sched_relax_domain_level: -1 cpuset.sched_load_balance: 1 cpuset.mem_hardwall: 0 cpuset.mem_exclusive: 0 cpuset.cpu_exclusive: 0 cpuset.mems: 0 cpuset.cpus: 1 4. check other # cgget -g cpuset /machine.slice/machine-qemu\\x2dtest4.scope/vcpu1 /machine.slice/machine-qemu\x2dtest4.scope/vcpu1: cpuset.memory_spread_slab: 0 cpuset.memory_spread_page: 0 cpuset.memory_pressure: 0 cpuset.memory_migrate: 1 cpuset.sched_relax_domain_level: -1 cpuset.sched_load_balance: 1 cpuset.mem_hardwall: 0 cpuset.mem_exclusive: 0 cpuset.cpu_exclusive: 0 cpuset.mems: 0 cpuset.cpus: 2 # cgget -g cpuset /machine.slice/machine-qemu\\x2dtest4.scope/iothread2 /machine.slice/machine-qemu\x2dtest4.scope/iothread2: cpuset.memory_spread_slab: 0 cpuset.memory_spread_page: 0 cpuset.memory_pressure: 0 cpuset.memory_migrate: 1 cpuset.sched_relax_domain_level: -1 cpuset.sched_load_balance: 1 cpuset.mem_hardwall: 0 cpuset.mem_exclusive: 0 cpuset.cpu_exclusive: 0 cpuset.mems: 0 cpuset.cpus: 2 # cgget -g cpuset /machine.slice/machine-qemu\\x2dtest4.scope/iothread3 /machine.slice/machine-qemu\x2dtest4.scope/iothread3: cpuset.memory_spread_slab: 0 cpuset.memory_spread_page: 0 cpuset.memory_pressure: 0 cpuset.memory_migrate: 1 cpuset.sched_relax_domain_level: -1 cpuset.sched_load_balance: 1 cpuset.mem_hardwall: 0 cpuset.mem_exclusive: 0 cpuset.cpu_exclusive: 0 cpuset.mems: 0 cpuset.cpus: 2 Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://rhn.redhat.com/errata/RHBA-2015-2202.html |