diff options
author | 2016-03-03 17:14:28 +0200 | |
---|---|---|
committer | 2016-03-03 17:14:28 +0200 | |
commit | 0a10805acc189a36eecb4d49b858bd911bc45f4e (patch) | |
tree | 05ab3e32da5a284c50b2b186be2a7857bb364382 /src/debug.cpp | |
parent | 951a503356fd359407a8fae791b75fa8881dc04c (diff) | |
parent | 2760d0eef3076580f3d112c2e754e108f6028dc7 (diff) |
Merge Console merge
Diffstat (limited to 'src/debug.cpp')
-rw-r--r-- | src/debug.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/debug.cpp b/src/debug.cpp index 0ca34545..3f8ad2fa 100644 --- a/src/debug.cpp +++ b/src/debug.cpp @@ -359,10 +359,9 @@ int CTrexDebug::test_send(uint pkt_type) { exit(-1); } - // read first time to zero statistics for (port_id = 0; port_id < m_max_ports; port_id++) { CPhyEthIF * lp=&m_ports[port_id]; - lp->get_rx_stats(NULL, -1, true); + lp->reset_hw_flow_stats(); } printf("Sending packet:\n"); @@ -410,10 +409,10 @@ int CTrexDebug::test_send(uint pkt_type) { lp->dump_stats_extended(stdout); } for (port_id = 0; port_id < m_max_ports; port_id++) { - uint64_t fdir_stat[TREX_FDIR_STAT_SIZE]; + uint64_t fdir_stat[MAX_FLOW_STATS]; CPhyEthIF *lp = &m_ports[port_id]; - if (lp->get_rx_stats(fdir_stat, -1, false) == 0) - rte_stat_dump_array(fdir_stat, "FDIR stat", TREX_FDIR_STAT_SIZE); + if (lp->get_flow_stats(fdir_stat, NULL, 0, MAX_FLOW_STATS, false) == 0) + rte_stat_dump_array(fdir_stat, "FDIR stat", MAX_FLOW_STATS); } return (0); |