2008-09-10 20:59:42 +04:00
/*
2008-09-11 19:08:12 +04:00
* Simple doubly linked list implementation .
*
* Based on list . h in the Linux kernel source tree , licensed under
* the GNU GPL version 2.
2008-09-10 20:59:42 +04:00
*/
# ifndef _LIST_H
# define _LIST_H
/**
2008-09-11 19:08:12 +04:00
* container_of :
2008-09-10 20:59:42 +04:00
* @ ptr : the pointer to the member .
* @ type : the type of the container struct this is embedded in .
* @ member : the name of the member within the struct .
*
2008-09-11 19:08:12 +04:00
* cast a member of a structure out to the containing structure
2008-09-10 20:59:42 +04:00
*/
# define container_of(ptr, type, member) ({ \
const typeof ( ( ( type * ) 0 ) - > member ) * __mptr = ( ptr ) ; \
( type * ) ( ( char * ) __mptr - offsetof ( type , member ) ) ; } )
/*
* These are non - NULL pointers that will result in page faults
* under normal circumstances , used to verify that nobody uses
* non - initialized list entries .
*/
# define LIST_POISON1 ((void *) 0x00100100)
# define LIST_POISON2 ((void *) 0x00200200)
struct list_head {
struct list_head * next , * prev ;
} ;
# define LIST_HEAD_INIT(name) { &(name), &(name) }
# define LIST_HEAD(name) \
struct list_head name = LIST_HEAD_INIT ( name )
# define INIT_LIST_HEAD(ptr) do { \
( ptr ) - > next = ( ptr ) ; ( ptr ) - > prev = ( ptr ) ; \
} while ( 0 )
2008-09-11 19:08:12 +04:00
/* Insert a new entry between two known consecutive entries. */
2008-09-10 20:59:42 +04:00
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 ;
}
/**
2008-09-11 19:08:12 +04:00
* list_add :
2008-09-10 20:59:42 +04:00
* @ new : new entry to be added
* @ head : list head to add it after
*
* Insert a new entry after the specified head .
* This is good for implementing stacks .
*/
static inline void list_add ( struct list_head * new , struct list_head * head )
{
__list_add ( new , head , head - > next ) ;
}
/**
2008-09-11 19:08:12 +04:00
* list_add_tail :
2008-09-10 20:59:42 +04:00
* @ 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 .
*/
static inline void list_add_tail ( struct list_head * new , struct list_head * head )
{
__list_add ( new , head - > prev , head ) ;
}
/*
* Delete a list entry by making the prev / next entries
* point to each other .
*/
static inline void __list_del ( struct list_head * prev , struct list_head * next )
{
next - > prev = prev ;
prev - > next = next ;
}
/**
2008-09-11 19:08:12 +04:00
* list_del :
2008-09-10 20:59:42 +04:00
* @ entry : the element to delete from the list .
2008-09-11 19:08:12 +04:00
*
* deletes entry from list .
*
2008-09-10 20:59:42 +04:00
* Note : list_empty on entry does not return true after this , the entry is
* in an undefined state .
*/
static inline void list_del ( struct list_head * entry )
{
__list_del ( entry - > prev , entry - > next ) ;
entry - > next = LIST_POISON1 ;
entry - > prev = LIST_POISON2 ;
}
/**
2008-09-11 19:08:12 +04:00
* list_move
2008-09-10 20:59:42 +04:00
* @ list : the entry to move
* @ head : the head that will precede our entry
2008-09-11 19:08:12 +04:00
* delete from one list and add as another ' s head
2008-09-10 20:59:42 +04:00
*/
static inline void list_move ( struct list_head * list , struct list_head * head )
{
__list_del ( list - > prev , list - > next ) ;
list_add ( list , head ) ;
}
/**
2008-09-11 19:08:12 +04:00
* list_move_tail
2008-09-10 20:59:42 +04:00
* @ list : the entry to move
* @ head : the head that will follow our entry
2008-09-11 19:08:12 +04:00
*
* delete from one list and add as another ' s tail
2008-09-10 20:59:42 +04:00
*/
static inline void list_move_tail ( struct list_head * list ,
struct list_head * head )
{
__list_del ( list - > prev , list - > next ) ;
list_add_tail ( list , head ) ;
}
/**
2008-09-11 19:08:12 +04:00
* list_empty :
2008-09-10 20:59:42 +04:00
* @ head : the list to test .
2008-09-11 19:08:12 +04:00
*
* tests whether a list is empty
2008-09-10 20:59:42 +04:00
*/
static inline int list_empty ( struct list_head * head )
{
return head - > next = = head ;
}
/**
2008-09-11 19:08:12 +04:00
* list_entry :
2008-09-10 20:59:42 +04:00
* @ ptr : the & struct list_head pointer .
* @ type : the type of the struct this is embedded in .
* @ member : the name of the list_struct within the struct .
2008-09-11 19:08:12 +04:00
*
* get the struct for this entry
2008-09-10 20:59:42 +04:00
*/
# define list_entry(ptr, type, member) \
container_of ( ptr , type , member )
/**
2008-09-11 19:08:12 +04:00
* list_for_each_entry :
2008-09-10 20:59:42 +04:00
* @ pos : the type * to use as a loop counter .
* @ head : the head for your list .
* @ member : the name of the list_struct within the struct .
2008-09-11 19:08:12 +04:00
*
* iterate over list of given type
2008-09-10 20:59:42 +04:00
*/
# define list_for_each_entry(pos, head, member) \
for ( pos = list_entry ( ( head ) - > next , typeof ( * pos ) , member ) ; \
& pos - > member ! = ( head ) ; \
pos = list_entry ( pos - > member . next , typeof ( * pos ) , member ) )
/**
2008-09-11 19:08:12 +04:00
* list_for_each_entry_safe :
2008-09-10 20:59:42 +04:00
* @ pos : the type * to use as a loop counter .
* @ n : another type * to use as temporary storage
* @ head : the head for your list .
* @ member : the name of the list_struct within the struct .
2008-09-11 19:08:12 +04:00
*
* iterate over list of given type safe against removal of list entry
2008-09-10 20:59:42 +04:00
*/
# define list_for_each_entry_safe(pos, n, head, member) \
for ( pos = list_entry ( ( head ) - > next , typeof ( * pos ) , member ) , \
n = list_entry ( pos - > member . next , typeof ( * pos ) , member ) ; \
& pos - > member ! = ( head ) ; \
pos = n , n = list_entry ( n - > member . next , typeof ( * n ) , member ) )
# endif /* _LIST_H */