This series adds another way to detect LLDP packets in the Tx paths of the iavf PMD, which is based on the mbuf packet type field. This is in addition to the existing method of using a dynamic field. The series also adds new AVX2 context descriptor Tx paths that support LLDP. Finally, a deprecation notice is added to the documentation to flag that the dynamic mbuf field method of LLDP packet detection will be removed in a future release.
v2: * Support both dynfield and ptype to preserve ABI * Add deprecation notice for dynfield approach Ciara Loftus (3): net/iavf: support LLDP Tx based on mbuf ptype or dynfield net/iavf: add AVX2 context descriptor Tx paths doc: announce change to LLDP packet detection in iavf PMD doc/guides/nics/intel_vf.rst | 6 + doc/guides/rel_notes/deprecation.rst | 4 + doc/guides/rel_notes/release_26_03.rst | 2 + drivers/net/intel/iavf/iavf.h | 2 + drivers/net/intel/iavf/iavf_rxtx.c | 18 + drivers/net/intel/iavf/iavf_rxtx.h | 9 +- drivers/net/intel/iavf/iavf_rxtx_vec_avx2.c | 386 ++++++++++++++++++++ 7 files changed, 424 insertions(+), 3 deletions(-) -- 2.43.0

