diff options
author | Marvin Liu <yong.liu@intel.com> | 2023-03-15 03:41:26 +0800 |
---|---|---|
committer | Damjan Marion <dmarion@0xa5.net> | 2023-03-14 20:10:19 +0000 |
commit | e10ace267429a9203acf742ab64e434c79fc5544 (patch) | |
tree | ad062b6a2d6480772a7511480b9b3dd845e723d6 /src/plugins/dpdk/device/driver.c | |
parent | 0d07a5d27ff9f1ad37e02c1017f12868ea7dd7a2 (diff) |
dpdk: enable Google Virtual Ethernet
Recognize and drive google virtual ethernet (gve) in google cloud.
Type: feature
Signed-off-by: Marvin Liu <yong.liu@intel.com>
Change-Id: Ia559615ac059cabbca5d10bcd4049e87beaad638
Diffstat (limited to 'src/plugins/dpdk/device/driver.c')
-rw-r--r-- | src/plugins/dpdk/device/driver.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/dpdk/device/driver.c b/src/plugins/dpdk/device/driver.c index eef191e5fdc..4b13e03b06f 100644 --- a/src/plugins/dpdk/device/driver.c +++ b/src/plugins/dpdk/device/driver.c @@ -125,6 +125,10 @@ static dpdk_driver_t dpdk_drivers[] = { .n_tx_desc = 256, .mq_mode_none = 1, .enable_rxq_int = 1, + }, + { + .drivers = DPDK_DRIVERS ({ "net_gve", "Google vNIC" }), + .interface_name_prefix = "VirtualFunctionEthernet", } }; |