* setup packets and crypto ops for LOOKASIDE_PROTO type of devices. * Note that for LOOKASIDE_PROTO all packet modifications will be * performed by PMD/HW. * SW has only to prepare crypto op. */
| 634 | * SW has only to prepare crypto op. |
| 635 | */ |
| 636 | static uint16_t |
| 637 | lksd_proto_prepare(const struct rte_ipsec_session *ss, |
| 638 | struct rte_mbuf *mb[], struct rte_crypto_op *cop[], uint16_t num) |
| 639 | { |
| 640 | lksd_proto_cop_prepare(ss, mb, cop, num); |
| 641 | return num; |
| 642 | } |
| 643 | |
| 644 | /* |
| 645 | * simplest pkt process routine: |
nothing calls this directly
no test coverage detected