crypto/ipsec_mb: fix GCM requested digest length
[dpdk.git] / lib / fib / rte_fib6.h
index f9d7812..62a425d 100644 (file)
@@ -17,7 +17,6 @@
 
 #include <stdint.h>
 
-#include <rte_compat.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -71,6 +70,8 @@ struct rte_fib6_conf {
        /** Default value returned on lookup if there is no route */
        uint64_t default_nh;
        int     max_routes;
+       /** Size of the node extension in the internal RIB struct */
+       unsigned int rib_ext_sz;
        union {
                struct {
                        enum rte_fib_trie_nh_sz nh_sz;
@@ -182,7 +183,7 @@ rte_fib6_lookup_bulk(struct rte_fib6 *fib,
  *   FIB6 object handle
  * @return
  *   Pointer on the dataplane struct on success
- *   NULL othervise
+ *   NULL otherwise
  */
 void *
 rte_fib6_get_dp(struct rte_fib6 *fib);
@@ -194,7 +195,7 @@ rte_fib6_get_dp(struct rte_fib6 *fib);
  *   FIB object handle
  * @return
  *   Pointer on the RIB6 on success
- *   NULL othervise
+ *   NULL otherwise
  */
 struct rte_rib6 *
 rte_fib6_get_rib(struct rte_fib6 *fib);