Hello,
I create a network device (NIC) by
....
-netdev tap,id=hn0,vhost=off,script=/etc/qemu-ifup,downscript=/etc/qemu-ifdown \ -device virtio-net-pci,id=e0,netdev=hn0,mac=56:00:00:00:00:01 \
...
At runtime, I replace the "vhost=on" by unplug (netdev_del+device_del) and plug (netdev_add + device_add).
Is there any better method to replace the vhost value at runtime instead of using hotplug?
Thank you.
Regards,
Derek