* list_add_tail - add a new entry * @new: new entry to be added * @head: list head to add it before * * Insert a new entry before the specified head. * This is useful for implementing queues. */
| 98 | * This is useful for implementing queues. |
| 99 | */ |
| 100 | static inline void list_add_tail(struct list_head *_new, struct list_head *head) |
| 101 | { |
| 102 | __list_add(_new, head->prev, head); |
| 103 | } |
| 104 | |
| 105 | /* |
| 106 | * Delete a list entry by making the prev/next entries |
no test coverage detected