File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -840,14 +840,16 @@ def test_model_kvm_qemu_parallels_custom(self):
840
840
network_model .VIF_MODEL_RTL8139 ,
841
841
network_model .VIF_MODEL_E1000 ,
842
842
network_model .VIF_MODEL_E1000E ,
843
- network_model .VIF_MODEL_SPAPR_VLAN )
843
+ network_model .VIF_MODEL_SPAPR_VLAN ,
844
+ network_model .VIF_MODEL_VMXNET3 )
844
845
else :
845
846
supported = (network_model .VIF_MODEL_NE2K_PCI ,
846
847
network_model .VIF_MODEL_PCNET ,
847
848
network_model .VIF_MODEL_RTL8139 ,
848
849
network_model .VIF_MODEL_E1000 ,
849
850
network_model .VIF_MODEL_E1000E ,
850
- network_model .VIF_MODEL_SPAPR_VLAN )
851
+ network_model .VIF_MODEL_SPAPR_VLAN ,
852
+ network_model .VIF_MODEL_VMXNET3 )
851
853
for model in supported :
852
854
image_meta = objects .ImageMeta .from_dict (
853
855
{'properties' : {'hw_vif_model' : model }})
Original file line number Diff line number Diff line change 67
67
network_model .VIF_MODEL_E1000 ,
68
68
network_model .VIF_MODEL_E1000E ,
69
69
network_model .VIF_MODEL_LAN9118 ,
70
- network_model .VIF_MODEL_SPAPR_VLAN ],
70
+ network_model .VIF_MODEL_SPAPR_VLAN ,
71
+ network_model .VIF_MODEL_VMXNET3 ],
71
72
'kvm' : [
72
73
network_model .VIF_MODEL_VIRTIO ,
73
74
network_model .VIF_MODEL_NE2K_PCI ,
74
75
network_model .VIF_MODEL_PCNET ,
75
76
network_model .VIF_MODEL_RTL8139 ,
76
77
network_model .VIF_MODEL_E1000 ,
77
78
network_model .VIF_MODEL_E1000E ,
78
- network_model .VIF_MODEL_SPAPR_VLAN ],
79
+ network_model .VIF_MODEL_SPAPR_VLAN ,
80
+ network_model .VIF_MODEL_VMXNET3 ],
79
81
'xen' : [
80
82
network_model .VIF_MODEL_NETFRONT ,
81
83
network_model .VIF_MODEL_NE2K_PCI ,
Original file line number Diff line number Diff line change
1
+ ---
2
+ features :
3
+ - |
4
+ Add the ability to use ``vmxnet3`` NIC on a host using the QEMU/KVM driver. This allows
5
+ the migration of an ESXi VM to QEMU/KVM, without any driver changes. ``vmxnet3``
6
+ comes with better performance and lower latency comparing to an emulated driver like
7
+ ``e1000``.
You can’t perform that action at this time.
0 commit comments