On Mon, 30 Jan 2023 05:59:33 +0200 Rongwei Liu <rongw...@nvidia.com> wrote:
> +/** > + * @warning > + * @b EXPERIMENTAL: this structure may change without prior notice > + * > + * RTE_FLOW_ITEM_TYPE_IPV6_ROUTING_EXT. > + * > + * Matches an IPv6 routing extension header. > + */ > +struct rte_flow_item_ipv6_routing_ext { > + struct rte_ipv6_routing_ext hdr; > +}; The problem with nesting a variable length structure inside another structure is not allowed. The issue is that the applicaiton would have to pass a variable length structure in for the flow definition. The flow item is variable length for this type? all the others are fixed length. One option would be to get rid of the wrapper structure.