net/virtio: fix incorrect cast of void *
[dpdk.git] / lib / librte_table / rte_table_lpm.h
index c08c958..f303323 100644 (file)
@@ -77,9 +77,18 @@ extern "C" {
 
 /** LPM table parameters */
 struct rte_table_lpm_params {
+       /** Table name */
+       const char *name;
+
        /** Maximum number of LPM rules (i.e. IP routes) */
        uint32_t n_rules;
 
+       /**< Number of tbl8s to allocate. */
+       uint32_t number_tbl8s;
+
+       /**< This field is currently unused. */
+       int flags;
+
        /** Number of bytes at the start of the table entry that uniquely
        identify the entry. Cannot be bigger than table entry size. */
        uint32_t entry_unique_size;