crypto/scheduler: fix session in size-based distribution

The index for sess_ctx was incorrect when setting the op session.

Fixes: 6812b9bf47 ("crypto/scheduler: use unified session")

Signed-off-by: Ciara Power <ciara.power@intel.com>
This commit is contained in:
Ciara Power 2022-10-25 14:14:29 +00:00 committed by Akhil Goyal
parent 09fcf99dca
commit 7ae361307d

View File

@ -148,7 +148,7 @@ schedule_enqueue(void *qp, struct rte_crypto_op **ops, uint16_t nb_ops)
target[3] = !(job_len[3] & psd_qp_ctx->threshold);
if (ops[i + 3]->sess_type == RTE_CRYPTO_OP_WITH_SESSION)
ops[i + 3]->sym->session =
sess_ctx[1]->worker_sess[target[3]];
sess_ctx[3]->worker_sess[target[3]];
p_enq_op = &enq_ops[target[3]];
if (p_enq_op->pos + in_flight_ops[p_enq_op->worker_idx] ==