/*!
* @brief list_add_tail - add a new entry
*
* @details Insert a new entry before the specified head.
* This is useful for implementing queues.
*
* @param new_h: new entry to be added
* @param head: list head to add it before
*/
static inline void list_add_tail(struct list_head *new_h, struct list_head *head)
{
__list_add(new_h, head->prev, head);
}
/*!
* @brief Insert a new entry between two known consecutive entries.
*
* @details This is only for internal list manipulation where we know
* the prev/next entries already!
*/
static inline void __list_add(struct list_head *new_h,
struct list_head *prev,
struct list_head *next)
{
next->prev = new_h;
new_h->next = next;
new_h->prev = prev;
prev->next = new_h;
}