08/07/2020 15:37, Qi Zhang: > --- a/lib/librte_ethdev/rte_ethdev.h > +++ b/lib/librte_ethdev/rte_ethdev.h > +/* > + * Only select IPV6 address prefix as RSS input set according to > + * https://tools.ietf.org/html/rfc6052 > + * Must be combined with ETH_RSS_IPV6, ETH_RSS_NONFRAG_IPV6_UDP, > + * ETH_RSS_NONFRAG_IPV6_TCP, ETH_RSS_NONFRAG_IPV6_SCTP. > + */ > +#define ETH_RSS_L3_PRE32 (1ULL << 57) > +#define ETH_RSS_L3_PRE40 (1ULL << 56) > +#define ETH_RSS_L3_PRE48 (1ULL << 55) > +#define ETH_RSS_L3_PRE56 (1ULL << 54) > +#define ETH_RSS_L3_PRE64 (1ULL << 53) > +#define ETH_RSS_L3_PRE96 (1ULL << 52)
I still think names should start with RTE_ for new additions. Please Cc Andrew as well as he is a maintainer of ethdev.