helper routine to free bulk of crypto-ops and related packets */
| 17 | |
| 18 | /* helper routine to free bulk of crypto-ops and related packets */ |
| 19 | static inline void |
| 20 | free_cops(struct rte_crypto_op *cop[], uint32_t n) |
| 21 | { |
| 22 | uint32_t i; |
| 23 | |
| 24 | for (i = 0; i != n; i++) |
| 25 | rte_pktmbuf_free(cop[i]->sym->m_src); |
| 26 | } |
| 27 | |
| 28 | /* helper routine to enqueue bulk of crypto ops */ |
| 29 | static inline void |
no test coverage detected