Lines Matching defs:head
353 static int list_empty(const struct list_head *head)
355 return head->next == head;
367 static inline void list_add_head(struct list_head *new, struct list_head *head)
369 list_add(new, head, head->next);
372 static inline void list_add_tail(struct list_head *new, struct list_head *head)
374 list_add(new, head->prev, head);
405 static struct node_slab *list_to_slab(struct list_head *head)
407 return (struct node_slab *) head;