diff options
author | Dave Barach <dave@barachs.net> | 2019-02-25 15:27:28 -0500 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-02-26 11:30:29 +0000 |
commit | 5ecd5a5d159332a964dd840fcdabe5f8d3111b0e (patch) | |
tree | 99c6fbcd96efce44215bb06363126acfa88f8fb0 /src/plugins/dpdk/device/dpdk.h | |
parent | f6defa113e2e10a70c5a92ce7e14b7a532154409 (diff) |
Move pcap rx/tx trace code out of the dpdk plugin
Moved code to the ethernet input node, and the interface output
path(s). Since we no longer skip ethernet-input, there's no reason
for device drivers to know anything about pcap rx tracing, etc.
Change-Id: I08d32fb1b90cbee1bd4f609837d533e047b36fa4
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'src/plugins/dpdk/device/dpdk.h')
-rw-r--r-- | src/plugins/dpdk/device/dpdk.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/plugins/dpdk/device/dpdk.h b/src/plugins/dpdk/device/dpdk.h index b2ca56cbe4d..5d8368b06c3 100644 --- a/src/plugins/dpdk/device/dpdk.h +++ b/src/plugins/dpdk/device/dpdk.h @@ -44,7 +44,6 @@ #include <rte_bus_pci.h> #include <rte_flow.h> -#include <vppinfra/pcap.h> #include <vnet/devices/devices.h> #if CLIB_DEBUG > 0 @@ -399,13 +398,6 @@ typedef struct typedef struct { - int pcap_enable; - u32 pcap_sw_if_index; - pcap_main_t pcap_main; -} dpdk_pcap_t; - -typedef struct -{ /* Devices */ dpdk_device_t *devices; @@ -415,15 +407,6 @@ typedef struct /* buffer flags template, configurable to enable/disable tcp / udp cksum */ u32 buffer_flags_template; - /* pcap tracing */ - dpdk_pcap_t pcap[VLIB_N_RX_TX]; - - int pcap_enable; - pcap_main_t pcap_main; - u8 *pcap_filename; - u32 pcap_sw_if_index; - u32 pcap_pkts_to_capture; - /* * flag indicating that a posted admin up/down * (via post_sw_interface_set_flags) is in progress |