| 1051 | } |
| 1052 | |
| 1053 | static __rte_always_inline bool |
| 1054 | mbuf_is_consumed(struct rte_mbuf *m) |
| 1055 | { |
| 1056 | while (m) { |
| 1057 | if (rte_mbuf_refcnt_read(m) > 1) |
| 1058 | return false; |
| 1059 | m = m->next; |
| 1060 | } |
| 1061 | |
| 1062 | return true; |
| 1063 | } |
| 1064 | |
| 1065 | void mem_set_dump(void *ptr, size_t size, bool enable, uint64_t alignment); |
| 1066 |
nothing calls this directly
no test coverage detected