Anybody know the syntax how to add +x2apic to the virtual machines xml files when I edit them with "virsh edit vm"?
From the command line it would be starting with this flag:
qemu -cpu $MODEL,+x2apic ...
My other question is how to add the cache=none into the disk section:
Guest Caching Mode
cache = writethough is the default & provides data integrity in all cases (disk cache not exposed to guest)
cache = writethrough is great for read-intensive workloads (host’s page cache enabled)
cache = none is great for write-intensive workloads or workloads involving NFS remote storage (host’s page cache disable and disk write cache enabled)
Thanks