DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] crypto/qat: fix AES-GMAC length of data
@ 2017-07-11 13:35 Arek Kusztal
  2017-07-11 13:35 ` [dpdk-dev] [PATCH] crypto/qat: remove unused ablkcipher struct and functions Arek Kusztal
  2017-07-11 13:46 ` [dpdk-dev] [PATCH] crypto/qat: fix AES-GMAC length of data Trahe, Fiona
  0 siblings, 2 replies; 5+ messages in thread
From: Arek Kusztal @ 2017-07-11 13:35 UTC (permalink / raw)
  To: dev
  Cc: fiona.trahe, pablo.de.lara.guarch, john.griffin, deepak.k.jain,
	abhinav.singh, Arek Kusztal

Fix AES-GMAC length of the data copied to the hardware to avoid
copying more data than necessary.

Fixes: 2fa64f840d65 ("crypto/qat: add GMAC capability")

Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com>
---
 drivers/crypto/qat/qat_crypto.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/crypto/qat/qat_crypto.c b/drivers/crypto/qat/qat_crypto.c
index 7e04f21..6764553 100644
--- a/drivers/crypto/qat/qat_crypto.c
+++ b/drivers/crypto/qat/qat_crypto.c
@@ -1363,10 +1363,10 @@ qat_write_hw_desc_entry(struct rte_crypto_op *op, uint8_t *out_msg,
 		if (!do_aead) {
 			qat_req->comn_mid.dst_length =
 				qat_req->comn_mid.src_length =
-					rte_pktmbuf_data_len(op->sym->m_src);
+					op->sym->auth.data.length;
 			auth_param->u1.aad_adr = 0;
 			auth_param->auth_len = op->sym->auth.data.length;
-			auth_param->auth_off = op->sym->auth.data.offset;
+			auth_param->auth_off = 0;
 			auth_param->u2.aad_sz = 0;
 		}
 	}
-- 
2.1.0

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-07-11 14:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-11 13:35 [dpdk-dev] [PATCH] crypto/qat: fix AES-GMAC length of data Arek Kusztal
2017-07-11 13:35 ` [dpdk-dev] [PATCH] crypto/qat: remove unused ablkcipher struct and functions Arek Kusztal
2017-07-11 13:44   ` Trahe, Fiona
2017-07-11 14:02     ` De Lara Guarch, Pablo
2017-07-11 13:46 ` [dpdk-dev] [PATCH] crypto/qat: fix AES-GMAC length of data Trahe, Fiona

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).