| 1097 | } |
| 1098 | |
| 1099 | void * ff_mbuf_mtod(void* bsd_mbuf) |
| 1100 | { |
| 1101 | if ( !bsd_mbuf ) |
| 1102 | return NULL; |
| 1103 | return (void*)((struct mbuf *)bsd_mbuf)->m_data; |
| 1104 | } |
| 1105 | |
| 1106 | // get source rte_mbuf from ext cluster, which carry rte_mbuf while recving pkt, such as arp. |
| 1107 | void* ff_rte_frm_extcl(void* mbuf) |