Lines Matching defs:list_head
49 struct list_head {
50 struct list_head *next, *prev;
53 static inline void __list_add(struct list_head *new,
54 struct list_head *prev,
55 struct list_head *next)
63 static inline void __list_del(struct list_head * prev, struct list_head * next)
69 static inline void list_del(struct list_head *entry)
74 static inline void list_add_tail(struct list_head *new, struct list_head *head)
257 struct list_head orphan_inode_list;
497 struct list_head list; /* list head */