> Subject: [PATCH 09/13] net/intel: move vector Tx paths to common > > The main loops for vector Tx, both avx2 and avx512 are almost identical > across a couple of drivers, so move the iavf copies to common for later > reuse by other drivers. > > Signed-off-by: Bruce Richardson <[email protected]>
Acked-by: Ciara Loftus <[email protected]> > --- > drivers/net/intel/common/tx.h | 10 ++ > drivers/net/intel/common/tx_vec_x86.h | 128 ++++++++++++++++++ > drivers/net/intel/iavf/iavf_rxtx_vec_avx2.c | 75 +--------- > drivers/net/intel/iavf/iavf_rxtx_vec_avx512.c | 77 +---------- > 4 files changed, 148 insertions(+), 142 deletions(-) >

