summaryrefslogtreecommitdiffstats
path: root/src/vnet/devices/dpdk/dpdk.h
diff options
context:
space:
mode:
authorPavel Kotucek <pkotucek@cisco.com>2017-01-23 15:24:49 +0100
committerDamjan Marion <dmarion.lists@gmail.com>2017-01-27 19:55:09 +0000
commit50132fa8c14dd74a77b760bc603f96d7027bb73a (patch)
tree23334ce33e97dd538b5bfcd113c3a3f8eeaa82b4 /src/vnet/devices/dpdk/dpdk.h
parent4746a5d75ebb080d15d5d743dca3a85d0265176f (diff)
dpdk : incorrect rx filter being installed
When mac address is set prior bringing interface up incorrect rx filter being installed into the e1000 mac. Change-Id: If59a2bf16f732e45221b3787d271307d369e54d3 Signed-off-by: Pavel Kotucek <pkotucek@cisco.com>
Diffstat (limited to 'src/vnet/devices/dpdk/dpdk.h')
-rw-r--r--src/vnet/devices/dpdk/dpdk.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vnet/devices/dpdk/dpdk.h b/src/vnet/devices/dpdk/dpdk.h
index 066ec6fadbf..a91e87df4d8 100644
--- a/src/vnet/devices/dpdk/dpdk.h
+++ b/src/vnet/devices/dpdk/dpdk.h
@@ -232,6 +232,9 @@ typedef struct
struct rte_eth_xstat *last_cleared_xstats;
f64 time_last_stats_update;
dpdk_port_type_t port_type;
+
+ /* mac address */
+ u8 *default_mac_address;
} dpdk_device_t;
#define DPDK_STATS_POLL_INTERVAL (10.0)