test/telemetry: fix typo at beginning of line
[dpdk.git] / lib / librte_fib / rte_fib.h
index ddb992c..fef0749 100644 (file)
@@ -59,6 +59,8 @@ enum rte_fib_dir24_8_nh_sz {
 
 /** Type of lookup function implementation */
 enum rte_fib_lookup_type {
+       RTE_FIB_LOOKUP_DEFAULT,
+       /**< Selects the best implementation based on the max simd bitwidth */
        RTE_FIB_LOOKUP_DIR24_8_SCALAR_MACRO,
        /**< Macro based lookup function */
        RTE_FIB_LOOKUP_DIR24_8_SCALAR_INLINE,
@@ -70,6 +72,8 @@ enum rte_fib_lookup_type {
        /**<
         * Unified lookup function for all next hop sizes
         */
+       RTE_FIB_LOOKUP_DIR24_8_VECTOR_AVX512
+       /**< Vector implementation using AVX512 */
 };
 
 /** FIB configuration structure */