How to enable KVM virtio multiqueue when launching VM?

0

I know I can enable Multiqueue on a VM by modifying the VM's xml file as such:

<interface type='network'> 
      <source network='default'/> 
      <model type='virtio'/> 
      <driver name='vhost' queues='N'/> 
</interface> 

This works great, however, I need to find a way to do this prior to launching the VM. Is there a virt-install flag that I can use to enable Multiqueue at instance launch?

As a referece:

https://www.linux-kvm.org/page/Multiqueue

Javier Diaz Charles

Posted 2019-05-03T20:53:42.410

Reputation: 1

Even, I have a question: How can I configure Multiqueue from virt-manager UI? – Brijesh Valera – 2019-09-06T12:03:54.527

No answers