mirror of https://github.com/apache/cloudstack.git
kvm: add VMXNET3 nic adapter to nic models
Linux kernel supports vmxnet3, allowing it in KVM plugin would allow us to
run ESX hosts on KVM hosts using CloudStack with vmxnet3 nic which can be
passed as VM's nicAdapter detail
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
(cherry picked from commit e02d787f30)
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
1f87057248
commit
29b8800660
|
|
@ -784,7 +784,7 @@ public class LibvirtVMDef {
|
|||
}
|
||||
|
||||
enum nicModel {
|
||||
E1000("e1000"), VIRTIO("virtio"), RTL8139("rtl8139"), NE2KPCI("ne2k_pci");
|
||||
E1000("e1000"), VIRTIO("virtio"), RTL8139("rtl8139"), NE2KPCI("ne2k_pci"), VMXNET3("vmxnet3");
|
||||
String _model;
|
||||
|
||||
nicModel(String model) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue