]> git.droids-corp.org - dpdk.git/commitdiff
table: add stats structure and config option
authorMaciej Gajdzica <maciejx.t.gajdzica@intel.com>
Fri, 19 Jun 2015 10:28:34 +0000 (12:28 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 23 Jun 2015 21:31:14 +0000 (23:31 +0200)
Added common structure for table statistics.
Added config option to enable table stats collecting.

Signed-off-by: Maciej Gajdzica <maciejx.t.gajdzica@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
config/common_bsdapp
config/common_linuxapp
lib/librte_table/rte_table.h

index bbe95a7caf4cba14f571818009b99338e8f715ac..3ed884f73f13cc574add069e028bda6a2c8203f4 100644 (file)
@@ -389,6 +389,7 @@ CONFIG_RTE_PORT_STATS_COLLECT=n
 # Compile librte_table
 #
 CONFIG_RTE_LIBRTE_TABLE=y
+CONFIG_RTE_TABLE_STATS_COLLECT=n
 
 #
 # Compile librte_pipeline
index 01ab5b3d9ab97dd8f5e6d2e21a0f3bd93cdc521d..f859d07e8664fbc85b262dc4eb66de46ca83c5e6 100644 (file)
@@ -396,6 +396,7 @@ CONFIG_RTE_PORT_STATS_COLLECT=n
 # Compile librte_table
 #
 CONFIG_RTE_LIBRTE_TABLE=y
+CONFIG_RTE_TABLE_STATS_COLLECT=n
 
 #
 # Compile librte_pipeline
index 6e51fe686597579c1bf90800441f48d8f1e38564..c13d40d0e2714646c966bfbccfcf350ad5fc68e9 100644 (file)
@@ -59,6 +59,12 @@ extern "C" {
 
 struct rte_mbuf;
 
+/** Lookup table statistics */
+struct rte_table_stats {
+       uint64_t n_pkts_in;
+       uint64_t n_pkts_lookup_miss;
+};
+
 /**
  * Lookup table create
  *
@@ -187,6 +193,24 @@ typedef int (*rte_table_op_lookup)(
        uint64_t *lookup_hit_mask,
        void **entries);
 
+/**
+ * Lookup table stats read
+ *
+ * @param table
+ *   Handle to lookup table instance
+ * @param stats
+ *   Handle to table stats struct to copy data
+ * @param clear
+ *   Flag indicating that stats should be cleared after read
+ *
+ * @return
+ *   Error code or 0 on success.
+ */
+typedef int (*rte_table_op_stats_read)(
+       void *table,
+       struct rte_table_stats *stats,
+       int clear);
+
 /** Lookup table interface defining the lookup table operation */
 struct rte_table_ops {
        rte_table_op_create f_create;       /**< Create */
@@ -194,6 +218,7 @@ struct rte_table_ops {
        rte_table_op_entry_add f_add;       /**< Entry add */
        rte_table_op_entry_delete f_delete; /**< Entry delete */
        rte_table_op_lookup f_lookup;       /**< Lookup */
+       rte_table_op_stats_read f_stats;        /**< Stats */
 };
 
 #ifdef __cplusplus