Copy packet data */
| 309 | |
| 310 | /* Copy packet data */ |
| 311 | static inline void |
| 312 | pktmbuf_sw_copy(struct rte_mbuf *src, struct rte_mbuf *dst) |
| 313 | { |
| 314 | rte_memcpy(rte_pktmbuf_mtod(dst, char *), |
| 315 | rte_pktmbuf_mtod(src, char *), |
| 316 | RTE_MAX(src->data_len, force_min_copy_size)); |
| 317 | } |
| 318 | /* >8 End of perform packet copy there is a user-defined function. */ |
| 319 | |
| 320 | static uint32_t |