From: Ankur Dwivedi <adwivedi@marvell.com> To: <dev@dpdk.org> Cc: <stable@dpdk.org>, <gakhil@marvell.com>, <anoobj@marvell.com>, "Ankur Dwivedi" <adwivedi@marvell.com> Subject: [dpdk-stable] [PATCH] crypto/octeontx: fix session-less mode Date: Mon, 1 Mar 2021 11:29:55 +0530 Message-ID: <20210301055955.8183-1-adwivedi@marvell.com> (raw) A temporary session is created for sessionless crypto operations. rte_cryptodev_sym_session_create() should be used for creating the temporary session as it initializes the session structure in the correct way. Fixes: caeba5062c39 ("crypto/octeontx: improve symmetric session-less path") Signed-off-by: Ankur Dwivedi <adwivedi@marvell.com> --- drivers/crypto/octeontx/otx_cryptodev_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/crypto/octeontx/otx_cryptodev_ops.c b/drivers/crypto/octeontx/otx_cryptodev_ops.c index 0cf760b296..b74eb2694b 100644 --- a/drivers/crypto/octeontx/otx_cryptodev_ops.c +++ b/drivers/crypto/octeontx/otx_cryptodev_ops.c @@ -577,8 +577,8 @@ otx_cpt_enq_single_sym_sessless(struct cpt_instance *instance, int ret; /* Create temporary session */ - - if (rte_mempool_get(instance->sess_mp, (void **)&sess)) + sess = rte_cryptodev_sym_session_create(instance->sess_mp); + if (sess == NULL) return -ENOMEM; ret = sym_session_configure(driver_id, sym_op->xform, sess, -- 2.28.0
next reply other threads:[~2021-03-01 6:00 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-03-01 5:59 Ankur Dwivedi [this message] 2021-03-23 19:01 ` Akhil Goyal
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210301055955.8183-1-adwivedi@marvell.com \ --to=adwivedi@marvell.com \ --cc=anoobj@marvell.com \ --cc=dev@dpdk.org \ --cc=gakhil@marvell.com \ --cc=stable@dpdk.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
patches for DPDK stable branches This inbox may be cloned and mirrored by anyone: git clone --mirror https://inbox.dpdk.org/stable/0 stable/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 stable stable/ https://inbox.dpdk.org/stable \ stable@dpdk.org public-inbox-index stable Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.stable AGPL code for this site: git clone https://public-inbox.org/public-inbox.git