Add option priorities
[fio.git] / flist.h
... / ...
CommitLineData
1#ifndef _LINUX_FLIST_H
2#define _LINUX_FLIST_H
3
4#undef offsetof
5#ifdef __compiler_offsetof
6#define offsetof(TYPE,MEMBER) __compiler_offsetof(TYPE,MEMBER)
7#else
8#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
9#endif
10
11#define container_of(ptr, type, member) ({ \
12 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
13 (type *)( (char *)__mptr - offsetof(type,member) );})
14
15/*
16 * Simple doubly linked list implementation.
17 *
18 * Some of the internal functions ("__xxx") are useful when
19 * manipulating whole lists rather than single entries, as
20 * sometimes we already know the next/prev entries and we can
21 * generate better code by using them directly rather than
22 * using the generic single-entry routines.
23 */
24
25struct flist_head {
26 struct flist_head *next, *prev;
27};
28
29#define FLIST_HEAD_INIT(name) { &(name), &(name) }
30
31#define FLIST_HEAD(name) \
32 struct flist_head name = FLIST_HEAD_INIT(name)
33
34#define INIT_FLIST_HEAD(ptr) do { \
35 (ptr)->next = (ptr); (ptr)->prev = (ptr); \
36} while (0)
37
38/*
39 * Insert a new entry between two known consecutive entries.
40 *
41 * This is only for internal list manipulation where we know
42 * the prev/next entries already!
43 */
44static inline void __flist_add(struct flist_head *new,
45 struct flist_head *prev,
46 struct flist_head *next)
47{
48 next->prev = new;
49 new->next = next;
50 new->prev = prev;
51 prev->next = new;
52}
53
54/**
55 * flist_add - add a new entry
56 * @new: new entry to be added
57 * @head: list head to add it after
58 *
59 * Insert a new entry after the specified head.
60 * This is good for implementing stacks.
61 */
62static inline void flist_add(struct flist_head *new, struct flist_head *head)
63{
64 __flist_add(new, head, head->next);
65}
66
67static inline void flist_add_tail(struct flist_head *new,
68 struct flist_head *head)
69{
70 __flist_add(new, head->prev, head);
71}
72
73/*
74 * Delete a list entry by making the prev/next entries
75 * point to each other.
76 *
77 * This is only for internal list manipulation where we know
78 * the prev/next entries already!
79 */
80static inline void __flist_del(struct flist_head *prev,
81 struct flist_head * next)
82{
83 next->prev = prev;
84 prev->next = next;
85}
86
87/**
88 * flist_del - deletes entry from list.
89 * @entry: the element to delete from the list.
90 * Note: flist_empty on entry does not return true after this, the entry is
91 * in an undefined state.
92 */
93static inline void flist_del(struct flist_head *entry)
94{
95 __flist_del(entry->prev, entry->next);
96 entry->next = NULL;
97 entry->prev = NULL;
98}
99
100/**
101 * flist_del_init - deletes entry from list and reinitialize it.
102 * @entry: the element to delete from the list.
103 */
104static inline void flist_del_init(struct flist_head *entry)
105{
106 __flist_del(entry->prev, entry->next);
107 INIT_FLIST_HEAD(entry);
108}
109
110/**
111 * flist_empty - tests whether a list is empty
112 * @head: the list to test.
113 */
114static inline int flist_empty(const struct flist_head *head)
115{
116 return head->next == head;
117}
118
119/**
120 * flist_entry - get the struct for this entry
121 * @ptr: the &struct flist_head pointer.
122 * @type: the type of the struct this is embedded in.
123 * @member: the name of the flist_struct within the struct.
124 */
125#define flist_entry(ptr, type, member) \
126 container_of(ptr, type, member)
127
128/**
129 * flist_for_each - iterate over a list
130 * @pos: the &struct flist_head to use as a loop counter.
131 * @head: the head for your list.
132 */
133#define flist_for_each(pos, head) \
134 for (pos = (head)->next; pos != (head); pos = pos->next)
135
136/**
137 * flist_for_each_safe - iterate over a list safe against removal of list entry
138 * @pos: the &struct flist_head to use as a loop counter.
139 * @n: another &struct flist_head to use as temporary storage
140 * @head: the head for your list.
141 */
142#define flist_for_each_safe(pos, n, head) \
143 for (pos = (head)->next, n = pos->next; pos != (head); \
144 pos = n, n = pos->next)
145
146#endif