> Subject: [EXT] [dpdk-dev] [PATCH v1 1/1] compress/octeontx: scatter gather > mode feature support
Rename title to compress/octeontx: support scatter gather mode Fix checkpatch warning. Add documentation update in .ini file. > Scatter gather mode feature support is added to compress or decompress > the larger data in a single compression or decompression operation. > > Signed-off-by: Mahipal Challa <mcha...@marvell.com> > --- > drivers/compress/octeontx/otx_zip.h | 155 +++++++++++++++++++++--- > drivers/compress/octeontx/otx_zip_pmd.c | 72 +++++++++-- > 2 files changed, 200 insertions(+), 27 deletions(-) > > +#ifdef ZIP_DBG > + ZIP_PMD_INFO("ZIP SGL buf[%d], len = %d, iova = > 0x%"PRIx64"\n", > + sgidx, sginfo[sgidx].sg_ctl.s.length, > + sginfo[sgidx].sg_addr.s.addr); > +#endif Can we use PMD debug logs instead of polluting the code with ZIP_DBG If it is in datapath, we can define datapath macros which are compiled off by default.