> Subject: [PATCH 06/13] net/intel: move iavf descriptor writing functions to > common > > In order to promote reuse of code, move the Tx vector functions for > writing descriptors from the iavf driver to the common folder in a new > tx_vec_x86.h file. This will allow reuse in later commits by other > drivers such as ice. > > Signed-off-by: Bruce Richardson <[email protected]>
Acked-by: Ciara Loftus <[email protected]> > --- > drivers/net/intel/common/tx_vec_x86.h | 513 ++++++++++++++++++ > drivers/net/intel/iavf/iavf_rxtx_vec_avx2.c | 285 +--------- > drivers/net/intel/iavf/iavf_rxtx_vec_avx512.c | 272 +--------- > drivers/net/intel/iavf/iavf_rxtx_vec_common.h | 77 +-- > 4 files changed, 532 insertions(+), 615 deletions(-) > create mode 100644 drivers/net/intel/common/tx_vec_x86.h >

