mirror of
				https://git.proxmox.com/git/mirror_iproute2
				synced 2025-11-04 06:22:48 +00:00 
			
		
		
		
	For all files in iproute2 which do not have an obvious license identification, mark them with SPDK GPL-2 Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
		
			
				
	
	
		
			130 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			130 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
#ifndef __LIST_H__
 | 
						|
#define __LIST_H__ 1
 | 
						|
/* List and hash list stuff from kernel */
 | 
						|
 | 
						|
#include <stddef.h>
 | 
						|
 | 
						|
#define container_of(ptr, type, member) ({			\
 | 
						|
	const typeof( ((type *)0)->member ) *__mptr = (ptr);	\
 | 
						|
	(type *)( (char *)__mptr - offsetof(type,member) );})
 | 
						|
 | 
						|
struct list_head {
 | 
						|
	struct list_head *next, *prev;
 | 
						|
};
 | 
						|
 | 
						|
static inline void INIT_LIST_HEAD(struct list_head *list)
 | 
						|
{
 | 
						|
	list->next = list;
 | 
						|
	list->prev = list;
 | 
						|
}
 | 
						|
 | 
						|
static inline void __list_add(struct list_head *new,
 | 
						|
			      struct list_head *prev,
 | 
						|
			      struct list_head *next)
 | 
						|
{
 | 
						|
	next->prev = new;
 | 
						|
	new->next = next;
 | 
						|
	new->prev = prev;
 | 
						|
	prev->next = new;
 | 
						|
}
 | 
						|
 | 
						|
static inline void list_add(struct list_head *new, struct list_head *head)
 | 
						|
{
 | 
						|
	__list_add(new, head, head->next);
 | 
						|
}
 | 
						|
 | 
						|
static inline void list_add_tail(struct list_head *new, struct list_head *head)
 | 
						|
{
 | 
						|
	__list_add(new, head->prev, head);
 | 
						|
}
 | 
						|
 | 
						|
static inline void __list_del(struct list_head *prev, struct list_head *next)
 | 
						|
{
 | 
						|
	next->prev = prev;
 | 
						|
	prev->next = next;
 | 
						|
}
 | 
						|
 | 
						|
static inline void list_del(struct list_head *entry)
 | 
						|
{
 | 
						|
	__list_del(entry->prev, entry->next);
 | 
						|
}
 | 
						|
 | 
						|
#define list_entry(ptr, type, member) \
 | 
						|
	container_of(ptr, type, member)
 | 
						|
 | 
						|
#define list_first_entry(ptr, type, member) \
 | 
						|
	list_entry((ptr)->next, type, member)
 | 
						|
 | 
						|
#define list_last_entry(ptr, type, member) \
 | 
						|
	list_entry((ptr)->prev, type, member)
 | 
						|
 | 
						|
#define list_next_entry(pos, member) \
 | 
						|
	list_entry((pos)->member.next, typeof(*(pos)), member)
 | 
						|
 | 
						|
#define list_prev_entry(pos, member) \
 | 
						|
	list_entry((pos)->member.prev, typeof(*(pos)), member)
 | 
						|
 | 
						|
#define list_for_each_entry(pos, head, member)				\
 | 
						|
	for (pos = list_first_entry(head, typeof(*pos), member);	\
 | 
						|
	     &pos->member != (head);					\
 | 
						|
	     pos = list_next_entry(pos, member))
 | 
						|
 | 
						|
#define list_for_each_entry_safe(pos, n, head, member)			\
 | 
						|
	for (pos = list_first_entry(head, typeof(*pos), member),	\
 | 
						|
		n = list_next_entry(pos, member);			\
 | 
						|
	     &pos->member != (head);					\
 | 
						|
	     pos = n, n = list_next_entry(n, member))
 | 
						|
 | 
						|
#define list_for_each_entry_reverse(pos, head, member)			\
 | 
						|
	for (pos = list_last_entry(head, typeof(*pos), member);		\
 | 
						|
	     &pos->member != (head);					\
 | 
						|
	     pos = list_prev_entry(pos, member))
 | 
						|
 | 
						|
struct hlist_head {
 | 
						|
	struct hlist_node *first;
 | 
						|
};
 | 
						|
 | 
						|
struct hlist_node {
 | 
						|
	struct hlist_node *next, **pprev;
 | 
						|
};
 | 
						|
 | 
						|
static inline void hlist_del(struct hlist_node *n)
 | 
						|
{
 | 
						|
	struct hlist_node *next = n->next;
 | 
						|
	struct hlist_node **pprev = n->pprev;
 | 
						|
	*pprev = next;
 | 
						|
	if (next)
 | 
						|
		next->pprev = pprev;
 | 
						|
}
 | 
						|
 | 
						|
static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *h)
 | 
						|
{
 | 
						|
	struct hlist_node *first = h->first;
 | 
						|
	n->next = first;
 | 
						|
	if (first)
 | 
						|
		first->pprev = &n->next;
 | 
						|
	h->first = n;
 | 
						|
	n->pprev = &h->first;
 | 
						|
}
 | 
						|
 | 
						|
#define hlist_for_each(pos, head) \
 | 
						|
	for (pos = (head)->first; pos ; pos = pos->next)
 | 
						|
 | 
						|
 | 
						|
#define hlist_for_each_safe(pos, n, head) \
 | 
						|
	for (pos = (head)->first; pos && ({ n = pos->next; 1; }); \
 | 
						|
	     pos = n)
 | 
						|
 | 
						|
#define hlist_entry_safe(ptr, type, member) \
 | 
						|
	({ typeof(ptr) ____ptr = (ptr); \
 | 
						|
	   ____ptr ? hlist_entry(____ptr, type, member) : NULL; \
 | 
						|
	})
 | 
						|
 | 
						|
#define hlist_for_each_entry(pos, head, member)				\
 | 
						|
	for (pos = hlist_entry_safe((head)->first, typeof(*(pos)), member);\
 | 
						|
	     pos;							\
 | 
						|
	     pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
 | 
						|
 | 
						|
#endif /* __LIST_H__ */
 |