From: Ido Barnea Date: Thu, 3 Mar 2016 14:12:36 +0000 (+0200) Subject: Small flow stat fix X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=2760d0eef3076580f3d112c2e754e108f6028dc7;p=trex.git Small flow stat fix --- diff --git a/src/flow_stat.cpp b/src/flow_stat.cpp index cb5c7e08..7f9df8c7 100644 --- a/src/flow_stat.cpp +++ b/src/flow_stat.cpp @@ -649,7 +649,7 @@ bool CFlowStatRuleMgr::dump_json(std::string & json) { for (uint8_t port = 0; port < m_num_ports; port++) { std::string str_port = static_cast( &(std::ostringstream() << port) )->str(); if (user_id_info->get_rx_counter(port) != 0) { - data_section[str_user_id]["rx"][str_port] = Json::Value::UInt64(user_id_info->get_rx_counter(port)); + data_section[str_user_id]["rx-pkts"][str_port] = Json::Value::UInt64(user_id_info->get_rx_counter(port)); ret = true; } if (user_id_info->get_tx_counter(port).get_pkts() != 0) { diff --git a/src/main_dpdk.cpp b/src/main_dpdk.cpp index 77e186b3..57b3719b 100644 --- a/src/main_dpdk.cpp +++ b/src/main_dpdk.cpp @@ -3897,7 +3897,7 @@ static CGlobalTRex g_trex; int CPhyEthIF::reset_hw_flow_stats() { uint32_t diff_stats[MAX_FLOW_STATS]; - if (get_ex_drv()->get_rx_stats(this, diff_stats, m_stats.m_fdir_prev_stats, 0, MAX_FLOW_STATS) < 0) { + if (get_ex_drv()->get_rx_stats(this, diff_stats, m_stats.m_fdir_prev_stats, 0, MAX_FLOW_STATS - 1) < 0) { return -1; }