mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-25 06:03:55 +03:00
708516c39e
Add vcpupin support to virt-install so that it can create guest domains with statically allocated vcpu pinning towards a given cpuset. Syntax: to pin vcpu=0 to cpuset="1,3" and vcpu=1 to cpuset=2 --cputune vcpupin0.vcpu=0,vcpupin0.cpuset=1,3,vcpupin1.vcpu=1,vcpupin1.cpuset=2 generates below XML description for the guest domain. <cputune> <vcpupin vcpu="0" cpuset="1,3"/> <vcpupin vcpu="1" cpuset="2"/> </cputune> Signed-off-by: Wim ten Have <wim.ten.have@oracle.com> Signed-off-by: Menno Lageman <menno.lageman@oracle.com>