diff options
author | Benoît Ganne <bganne@cisco.com> | 2022-07-27 17:50:46 +0200 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2022-08-04 17:15:58 +0000 |
commit | 157e4f5d249a262bd8a9c920b8591411e179763c (patch) | |
tree | ee7349ee85e813a9e06f02d0ec4b998ec60c62bf /src/plugins | |
parent | 5fcec2053eab28b8b56e6d692d9822dc22bd073f (diff) |
dpdk: enable interrupt support for vmxnet3
Type: feature
Change-Id: I0abbe925d6b9d3dd7196cd8beaf4f471beb45bd6
Signed-off-by: Benoît Ganne <bganne@cisco.com>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/dpdk/device/driver.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/dpdk/device/driver.c b/src/plugins/dpdk/device/driver.c index 66ec1824a9d..eef191e5fdc 100644 --- a/src/plugins/dpdk/device/driver.c +++ b/src/plugins/dpdk/device/driver.c @@ -116,6 +116,7 @@ static dpdk_driver_t dpdk_drivers[] = { { .drivers = DPDK_DRIVERS ({ "net_vmxnet3", "VMware VMXNET3" }), .interface_name_prefix = "GigabitEthernet", + .enable_rxq_int = 1, }, { .drivers = DPDK_DRIVERS ({ "net_virtio", "Red Hat Virtio" }), |