Add new element at the tail of the list. */
| 62 | |
| 63 | /* Add new element at the tail of the list. */ |
| 64 | static inline void list_add_tail(struct list_head *newp, struct list_head *head) |
| 65 | { |
| 66 | head->prev->next = newp; |
| 67 | newp->next = head; |
| 68 | newp->prev = head->prev; |
| 69 | head->prev = newp; |
| 70 | } |
| 71 | |
| 72 | /* Remove element from list. */ |
| 73 | static inline void __list_del(struct list_head *prev, struct list_head *next) |
no outgoing calls
no test coverage detected