summaryrefslogtreecommitdiffstats
path: root/VNFs/DPPD-PROX/stats_task.h
diff options
context:
space:
mode:
authorPatrice Buriez <patrice.buriez@intel.com>2019-06-12 18:39:15 +0200
committerPatrice Buriez <patrice.buriez@intel.com>2019-06-14 16:43:03 +0200
commit585612f163e1d434d9a21632d157dced5dc4a8c6 (patch)
tree56143c5962bbaa98b9fa3d21c6cd100538af2060 /VNFs/DPPD-PROX/stats_task.h
parentf7f4553772881fb4d49bd55d94c3fc3eaccc8403 (diff)
Add "total TX fail" count to "dp core stats" command output
Warning: This change breaks backward-compatibility of PROX socket scripting API, because the "total TX fail" count is reported before the "last TSC" field. As a result, PROX scripts that make use of the "dp core stats" command, such as the core_stats() method in helper-scripts/openstackrapid/prox_ctrl.py, MUST be reworked to correctly parse the returned set of fields. Change-Id: I3fe7f37dccee19f5f0b2719f262c6cfa7bad850f Signed-off-by: Xavier Simonart <xavier.simonart@intel.com> Signed-off-by: Patrice Buriez <patrice.buriez@intel.com>
Diffstat (limited to 'VNFs/DPPD-PROX/stats_task.h')
-rw-r--r--VNFs/DPPD-PROX/stats_task.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/VNFs/DPPD-PROX/stats_task.h b/VNFs/DPPD-PROX/stats_task.h
index 362b718c..7dc54eab 100644
--- a/VNFs/DPPD-PROX/stats_task.h
+++ b/VNFs/DPPD-PROX/stats_task.h
@@ -153,6 +153,7 @@ void stats_task_get_host_rx_tx_packets(uint64_t *rx, uint64_t *tx, uint64_t *tsc
uint64_t stats_core_task_tot_rx(uint8_t lcore_id, uint8_t task_id);
uint64_t stats_core_task_tot_tx(uint8_t lcore_id, uint8_t task_id);
+uint64_t stats_core_task_tot_tx_fail(uint8_t lcore_id, uint8_t task_id);
uint64_t stats_core_task_tot_drop(uint8_t lcore_id, uint8_t task_id);
uint64_t stats_core_task_last_tsc(uint8_t lcore_id, uint8_t task_id);
uint64_t stats_core_task_tot_rx_non_dp(uint8_t lcore_id, uint8_t task_id);