> 
> diff --git a/lib/librte_eal/include/rte_eal.h 
> b/lib/librte_eal/include/rte_eal.h
> index ddcf6a2e7a..fb739f3474 100644
> --- a/lib/librte_eal/include/rte_eal.h
> +++ b/lib/librte_eal/include/rte_eal.h
> @@ -43,6 +43,14 @@ enum rte_proc_type_t {
>       RTE_PROC_INVALID
>  };
> 
> +enum rte_max_simd_t {

Just one more nit, why do we need '_t' suffix here?
Usually we '_t' is reserved for typedefs only.

> +     RTE_NO_SIMD = 64,
> +     RTE_MAX_128_SIMD = 128,
> +     RTE_MAX_256_SIMD = 256,
> +     RTE_MAX_512_SIMD = 512,
> +     RTE_MAX_SIMD_DISABLE = UINT16_MAX,
> +};
> +

Reply via email to