Remove element from list, initializing the element's list pointers. */
| 84 | |
| 85 | /* Remove element from list, initializing the element's list pointers. */ |
| 86 | static inline void list_del_init(struct list_head *elem) |
| 87 | { |
| 88 | list_del(elem); |
| 89 | INIT_LIST_HEAD(elem); |
| 90 | } |
| 91 | |
| 92 | /* Delete from list, add to another list as head. */ |
| 93 | static inline void list_move(struct list_head *elem, struct list_head *head) |
nothing calls this directly
no test coverage detected