]> git.droids-corp.org - dpdk.git/commitdiff
crypto/aesni_mb: fix incorrect crypto session
authorPablo de Lara <pablo.de.lara.guarch@intel.com>
Mon, 19 Dec 2016 17:29:00 +0000 (17:29 +0000)
committerPablo de Lara <pablo.de.lara.guarch@intel.com>
Wed, 18 Jan 2017 20:47:04 +0000 (21:47 +0100)
When using sessionless crypto operations, crypto session
is obtained from a pool of sessions, when processing the
operation. Once the operation is processed, the session
is put back in the pool, but for the AESNI MB PMD, this
session was not being saved in the operation and therefore,
it did not return to the session pool.

Fixes: 924e84f87306 ("aesni_mb: add driver for multi buffer based crypto")
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Acked-by: Declan Doherty <declan.doherty@intel.com>
drivers/crypto/aesni_mb/rte_aesni_mb_pmd.c

index f07cd077c5c02b907b00fb909850c3cdfbc1a32f..7443b47b91beb07f7e1ea0daa382211ec25363b7 100644 (file)
@@ -322,6 +322,7 @@ get_session(struct aesni_mb_qp *qp, struct rte_crypto_op *op)
                        rte_mempool_put(qp->sess_mp, _sess);
                        sess = NULL;
                }
+               op->sym->session = (struct rte_cryptodev_sym_session *)_sess;
        }
 
        return sess;