lib: update documentation of some *_free functions
[dpdk.git] / lib / fib / rte_fib.h
index ac54f83..e592d32 100644 (file)
@@ -80,6 +80,8 @@ struct rte_fib_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_dir24_8_nh_sz nh_sz;
@@ -187,7 +189,7 @@ rte_fib_lookup_bulk(struct rte_fib *fib, uint32_t *ips,
  *   FIB object handle
  * @return
  *   Pointer on the dataplane struct on success
- *   NULL othervise
+ *   NULL otherwise
  */
 void *
 rte_fib_get_dp(struct rte_fib *fib);
@@ -199,7 +201,7 @@ rte_fib_get_dp(struct rte_fib *fib);
  *   FIB object handle
  * @return
  *   Pointer on the RIB on success
- *   NULL othervise
+ *   NULL otherwise
  */
 struct rte_rib *
 rte_fib_get_rib(struct rte_fib *fib);