07/04/2020 09:56, Muhammad Bilal:
> Bugzilla ID: 353
> Cc: dev@dpdk.org
> Cc: sta...@dpdk.org
> Cc: hemant.agra...@nxp.com
> Signed-off-by: Muhammad Bilal <m.bi...@emumba.com>
Acked-by: Hemant Agrawal <hemant.agra...@nxp.com>

No need to Cc stable in my opinion, as there is no bug fixed.

Changing the name to:
        mbuf: prevent setting mempool ops name empty

Applied with below minor change, thanks


The blank line below should remain:

>       const struct rte_memzone *mz;
> -
> -     if (strlen(ops_name) >= RTE_MEMPOOL_OPS_NAMESIZE)
> +     size_t len = strnlen(ops_name, RTE_MEMPOOL_OPS_NAMESIZE);
> +     if (len == 0)
> +             return -EINVAL;



Reply via email to