| 176 | } |
| 177 | |
| 178 | static inline void |
| 179 | asan_clear_split_alloczone(struct malloc_elem *elem) |
| 180 | { |
| 181 | void *ptr = RTE_PTR_SUB(elem, MALLOC_ELEM_TRAILER_LEN); |
| 182 | asan_set_zone(ptr, MALLOC_ELEM_OVERHEAD, 0x0); |
| 183 | } |
| 184 | |
| 185 | /* |
| 186 | * When the memory is allocated, the memory boundary is |
no test coverage detected