* Main thread: data plane thread init */
| 16 | * Main thread: data plane thread init |
| 17 | */ |
| 18 | void |
| 19 | softnic_thread_free(struct pmd_internals *softnic) |
| 20 | { |
| 21 | uint32_t i; |
| 22 | |
| 23 | RTE_LCORE_FOREACH_WORKER(i) { |
| 24 | struct softnic_thread *t = &softnic->thread[i]; |
| 25 | |
| 26 | /* MSGQs */ |
| 27 | rte_ring_free(t->msgq_req); |
| 28 | |
| 29 | rte_ring_free(t->msgq_rsp); |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | int |
| 34 | softnic_thread_init(struct pmd_internals *softnic) |
no test coverage detected