| 27 | } |
| 28 | |
| 29 | static __rte_always_inline struct sw_queue_chunk * |
| 30 | iq_alloc_chunk(struct sw_evdev *sw) |
| 31 | { |
| 32 | struct sw_queue_chunk *chunk = sw->chunk_list_head; |
| 33 | sw->chunk_list_head = chunk->next; |
| 34 | chunk->next = NULL; |
| 35 | return chunk; |
| 36 | } |
| 37 | |
| 38 | static __rte_always_inline void |
| 39 | iq_free_chunk(struct sw_evdev *sw, struct sw_queue_chunk *chunk) |
no outgoing calls
no test coverage detected