crypto/dpaa2_sec: fix debug logs
Digest and IV length variable declarations have changed. These were escaping builds as the debugging macro was disabled. During dynamic logging change, they were discoverd. Fixes:0fbd75a99f
("cryptodev: move IV parameters to session") Fixes:7f0034275a
("cryptodev: remove digest length from crypto op") Cc: stable@dpdk.org Signed-off-by: Shreyansh Jain <shreyansh.jain@nxp.com> Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
This commit is contained in:
parent
a016a88cbf
commit
79c271ee4f
@ -136,7 +136,7 @@ build_authenc_gcm_sg_fd(dpaa2_sec_session *sess,
|
||||
"iv-len=%d data_off: 0x%x\n",
|
||||
sym_op->aead.data.offset,
|
||||
sym_op->aead.data.length,
|
||||
sym_op->aead.digest.length,
|
||||
sess->digest_length,
|
||||
sess->iv.length,
|
||||
sym_op->m_src->data_off);
|
||||
|
||||
@ -301,7 +301,7 @@ build_authenc_gcm_fd(dpaa2_sec_session *sess,
|
||||
"iv-len=%d data_off: 0x%x\n",
|
||||
sym_op->aead.data.offset,
|
||||
sym_op->aead.data.length,
|
||||
sym_op->aead.digest.length,
|
||||
sess->digest_length,
|
||||
sess->iv.length,
|
||||
sym_op->m_src->data_off);
|
||||
|
||||
@ -433,10 +433,10 @@ build_authenc_sg_fd(dpaa2_sec_session *sess,
|
||||
"cipher_off: 0x%x/length %d, iv-len=%d data_off: 0x%x\n",
|
||||
sym_op->auth.data.offset,
|
||||
sym_op->auth.data.length,
|
||||
sym_op->auth.digest.length,
|
||||
sess->digest_length,
|
||||
sym_op->cipher.data.offset,
|
||||
sym_op->cipher.data.length,
|
||||
sym_op->cipher.iv.length,
|
||||
sess->iv.length,
|
||||
sym_op->m_src->data_off);
|
||||
|
||||
/* Configure Output FLE with Scatter/Gather Entry */
|
||||
@ -877,7 +877,7 @@ build_cipher_sg_fd(dpaa2_sec_session *sess, struct rte_crypto_op *op,
|
||||
"CIPHER SG: cipher_off: 0x%x/length %d,ivlen=%d data_off: 0x%x",
|
||||
sym_op->cipher.data.offset,
|
||||
sym_op->cipher.data.length,
|
||||
sym_op->cipher.iv.length,
|
||||
sess->iv.length,
|
||||
sym_op->m_src->data_off);
|
||||
|
||||
/* o/p fle */
|
||||
|
Loading…
Reference in New Issue
Block a user