| 144 | }; |
| 145 | |
| 146 | static struct rte_mbuf *generate_mbuf_data(struct rte_mempool *mpool) |
| 147 | { |
| 148 | struct rte_mbuf *mbuf = rte_pktmbuf_alloc(mpool); |
| 149 | |
| 150 | if (mbuf) { |
| 151 | mbuf->data_len = 64; |
| 152 | mbuf->pkt_len = 64; |
| 153 | } |
| 154 | |
| 155 | return mbuf; |
| 156 | } |
| 157 | |
| 158 | static int |
| 159 | fill_ipsec_param(struct ipsec_sa *sa) |
no test coverage detected