| 798 | } |
| 799 | |
| 800 | static inline void |
| 801 | enqueue_cop(struct cdev_qp *cqp, struct rte_crypto_op *cop) |
| 802 | { |
| 803 | cqp->buf[cqp->len++] = cop; |
| 804 | |
| 805 | if (cqp->len == MAX_PKT_BURST) |
| 806 | enqueue_cop_burst(cqp); |
| 807 | } |
| 808 | |
| 809 | static inline void |
| 810 | ipsec_enqueue(ipsec_xform_fn xform_func, struct ipsec_ctx *ipsec_ctx, |
no test coverage detected