Re: [dpdk-dev] [PATCH v1] crypto/qat: use better variable names in CRC functions

2020-07-18 Thread Akhil Goyal
> > The variable names crc_length and crc_offset have been changed to > > crc_data_len and crc_data_ofs respectively, to make it clearer as to > > their use i.e. the length and offset of the data over which the CRC is > > calculated. > > > > Fixes: 6f0ef237404b ("crypto/qat: support DOCSIS protocol

Re: [dpdk-dev] [PATCH v1] crypto/qat: use better variable names in CRC functions

2020-07-17 Thread Trahe, Fiona
> -Original Message- > From: Coyle, David > Sent: Thursday, July 16, 2020 4:35 PM > To: akhil.go...@nxp.com; Doherty, Declan ; Trahe, > Fiona > > Cc: dev@dpdk.org; Ryan, Brendan ; O'loingsigh, Mairtin > ; De Lara Guarch, Pablo > ; Coyle, David > > Subject: [PATCH v1] crypto/qat: use

[dpdk-dev] [PATCH v1] crypto/qat: use better variable names in CRC functions

2020-07-16 Thread David Coyle
The variable names crc_length and crc_offset have been changed to crc_data_len and crc_data_ofs respectively, to make it clearer as to their use i.e. the length and offset of the data over which the CRC is calculated. Fixes: 6f0ef237404b ("crypto/qat: support DOCSIS protocol") Signed-off-by: Davi