07/04/2020 09:56, Muhammad Bilal:
> Bugzilla ID: 353
> Cc: [email protected]
> Cc: [email protected]
> Cc: [email protected]
> Signed-off-by: Muhammad Bilal <[email protected]>
Acked-by: Hemant Agrawal <[email protected]>
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;