| 65 | } |
| 66 | |
| 67 | static inline void |
| 68 | ipsec_event_pre_forward(struct rte_mbuf *m, unsigned int port_id) |
| 69 | { |
| 70 | /* Save the destination port in the mbuf */ |
| 71 | m->port = port_id; |
| 72 | |
| 73 | /* Save eth queue for Tx */ |
| 74 | rte_event_eth_tx_adapter_txq_set(m, 0); |
| 75 | } |
| 76 | |
| 77 | static inline void |
| 78 | ev_vector_attr_init(struct rte_event_vector *vec) |
no test coverage detected