diff options
author | 2017-02-22 14:07:24 +0200 | |
---|---|---|
committer | 2017-02-22 14:07:24 +0200 | |
commit | d45195617e23255049c1234b49cd677f7b06f72d (patch) | |
tree | fef151742ab80ecd104814f171fdd0e7d4560dbc /src | |
parent | 97144e5554fdd9f5ca71e8086154031f6d2435eb (diff) |
Dumping interface info was broken in v2.18
Change-Id: Icec84cb2912d6e179c5aac536825a04b47bebb2b
Signed-off-by: Yaroslav Brustinov <ybrustin@cisco.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/main_dpdk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main_dpdk.cpp b/src/main_dpdk.cpp index f8ec0556..df6f63ae 100644 --- a/src/main_dpdk.cpp +++ b/src/main_dpdk.cpp @@ -5743,7 +5743,7 @@ void dump_interfaces_info() { ether_format_addr(mac_str, sizeof mac_str, &mac_addr); printf("PCI: %04x:%02x:%02x.%d - MAC: %s - Driver: %s\n", pci_addr.domain, pci_addr.bus, pci_addr.devid, pci_addr.function, mac_str, - rte_eth_devices[port_id].device->devargs->virt.drv_name); + rte_eth_devices[port_id].data->drv_name); } } |