| 14 | } |
| 15 | |
| 16 | static inline void range_entry_unlink(struct range_entry **prev_ptr, |
| 17 | struct range_entry *r) |
| 18 | { |
| 19 | *prev_ptr = r->next; |
| 20 | r->next = NULL; |
| 21 | } |
| 22 | |
| 23 | static inline void range_entry_unlink_and_free(struct memranges *ranges, |
| 24 | struct range_entry **prev_ptr, |
no outgoing calls
no test coverage detected