[PATCH v2 1/2] app/testpmd: assign share group dynamically
Stephen Hemminger
stephen at networkplumber.org
Wed Mar 25 17:50:38 CET 2026
On Tue, 24 Mar 2026 17:56:56 +0100
Dariusz Sosnowski <dsosnowski at nvidia.com> wrote:
> + /*
> + * testpmd assigns all queues on a given port to single share group.
> + * There are RTE_MAX_ETHPORTS share group slots,
> + * so at least one should always be available.
> + */
> + RTE_ASSERT(first_free < RTE_DIM(share_group_slots));
> +
Since RTE_ASSERT is compiled away in normal builds, this is a noop.
Please use a regular if statement and error handling.
More information about the dev
mailing list