]> git.saurik.com Git - apple/xnu.git/blame - bsd/sys/queue.h
xnu-4903.270.47.tar.gz
[apple/xnu.git] / bsd / sys / queue.h
CommitLineData
1c79356b 1/*
5d5c5d0d
A
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
2d21ac55 4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
0a7de745 5 *
2d21ac55
A
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
0a7de745 14 *
2d21ac55
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
0a7de745 17 *
2d21ac55
A
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
8f6c56a5
A
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
2d21ac55
A
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
0a7de745 25 *
2d21ac55 26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
1c79356b 27 */
2d21ac55 28/*-
1c79356b
A
29 * Copyright (c) 1991, 1993
30 * The Regents of the University of California. All rights reserved.
31 *
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions
34 * are met:
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright
38 * notice, this list of conditions and the following disclaimer in the
39 * documentation and/or other materials provided with the distribution.
1c79356b
A
40 * 4. Neither the name of the University nor the names of its contributors
41 * may be used to endorse or promote products derived from this software
42 * without specific prior written permission.
43 *
44 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
45 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
46 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
47 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
48 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
49 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
50 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
51 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
52 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
53 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
54 * SUCH DAMAGE.
55 *
56 * @(#)queue.h 8.5 (Berkeley) 8/20/94
57 */
58
59#ifndef _SYS_QUEUE_H_
0a7de745 60#define _SYS_QUEUE_H_
1c79356b 61
d9a64523
A
62#ifdef KERNEL_PRIVATE
63#include <kern/debug.h> /* panic function call */
0a7de745 64#include <sys/cdefs.h> /* __improbable in kernelspace */
d9a64523
A
65#else
66#ifndef __improbable
0a7de745 67#define __improbable(x) (x) /* noop in userspace */
d9a64523
A
68#endif /* __improbable */
69#endif /* KERNEL_PRIVATE */
70
1c79356b
A
71/*
72 * This file defines five types of data structures: singly-linked lists,
2d21ac55 73 * singly-linked tail queues, lists, tail queues, and circular queues.
1c79356b
A
74 *
75 * A singly-linked list is headed by a single forward pointer. The elements
76 * are singly linked for minimum space and pointer manipulation overhead at
77 * the expense of O(n) removal for arbitrary elements. New elements can be
78 * added to the list after an existing element or at the head of the list.
79 * Elements being removed from the head of the list should use the explicit
80 * macro for this purpose for optimum efficiency. A singly-linked list may
81 * only be traversed in the forward direction. Singly-linked lists are ideal
82 * for applications with large datasets and few or no removals or for
83 * implementing a LIFO queue.
84 *
85 * A singly-linked tail queue is headed by a pair of pointers, one to the
86 * head of the list and the other to the tail of the list. The elements are
87 * singly linked for minimum space and pointer manipulation overhead at the
88 * expense of O(n) removal for arbitrary elements. New elements can be added
89 * to the list after an existing element, at the head of the list, or at the
90 * end of the list. Elements being removed from the head of the tail queue
91 * should use the explicit macro for this purpose for optimum efficiency.
92 * A singly-linked tail queue may only be traversed in the forward direction.
93 * Singly-linked tail queues are ideal for applications with large datasets
94 * and few or no removals or for implementing a FIFO queue.
95 *
96 * A list is headed by a single forward pointer (or an array of forward
97 * pointers for a hash table header). The elements are doubly linked
98 * so that an arbitrary element can be removed without a need to
99 * traverse the list. New elements can be added to the list before
100 * or after an existing element or at the head of the list. A list
101 * may only be traversed in the forward direction.
102 *
103 * A tail queue is headed by a pair of pointers, one to the head of the
104 * list and the other to the tail of the list. The elements are doubly
105 * linked so that an arbitrary element can be removed without a need to
106 * traverse the list. New elements can be added to the list before or
107 * after an existing element, at the head of the list, or at the end of
2d21ac55 108 * the list. A tail queue may be traversed in either direction.
1c79356b
A
109 *
110 * A circle queue is headed by a pair of pointers, one to the head of the
111 * list and the other to the tail of the list. The elements are doubly
112 * linked so that an arbitrary element can be removed without a need to
113 * traverse the list. New elements can be added to the list before or after
114 * an existing element, at the head of the list, or at the end of the list.
115 * A circle queue may be traversed in either direction, but has a more
116 * complex end of list detection.
2d21ac55
A
117 * Note that circle queues are deprecated, because, as the removal log
118 * in FreeBSD states, "CIRCLEQs are a disgrace to everything Knuth taught
119 * us in Volume 1 Chapter 2. [...] Use TAILQ instead, it provides the same
120 * functionality." Code using them will continue to compile, but they
121 * are no longer documented on the man page.
1c79356b
A
122 *
123 * For details on the use of these macros, see the queue(3) manual page.
124 *
125 *
2d21ac55
A
126 * SLIST LIST STAILQ TAILQ CIRCLEQ
127 * _HEAD + + + + +
128 * _HEAD_INITIALIZER + + + + -
129 * _ENTRY + + + + +
130 * _INIT + + + + +
131 * _EMPTY + + + + +
132 * _FIRST + + + + +
133 * _NEXT + + + + +
134 * _PREV - - - + +
135 * _LAST - - + + +
136 * _FOREACH + + + + +
137 * _FOREACH_SAFE + + + + -
138 * _FOREACH_REVERSE - - - + -
139 * _FOREACH_REVERSE_SAFE - - - + -
140 * _INSERT_HEAD + + + + +
141 * _INSERT_BEFORE - + - + +
142 * _INSERT_AFTER + + + + +
143 * _INSERT_TAIL - - + + +
144 * _CONCAT - - + + -
6d2010ae 145 * _REMOVE_AFTER + - + - -
2d21ac55 146 * _REMOVE_HEAD + - + - -
6d2010ae 147 * _REMOVE_HEAD_UNTIL - - + - -
2d21ac55 148 * _REMOVE + + + + +
6d2010ae 149 * _SWAP - + + + -
1c79356b
A
150 *
151 */
2d21ac55
A
152#ifdef QUEUE_MACRO_DEBUG
153/* Store the last 2 places the queue element or head was altered */
154struct qm_trace {
155 char * lastfile;
156 int lastline;
157 char * prevfile;
158 int prevline;
159};
160
0a7de745
A
161#define TRACEBUF struct qm_trace trace;
162#define TRASHIT(x) do {(x) = (void *)-1;} while (0)
2d21ac55 163
0a7de745
A
164#define QMD_TRACE_HEAD(head) do { \
165 (head)->trace.prevline = (head)->trace.lastline; \
166 (head)->trace.prevfile = (head)->trace.lastfile; \
167 (head)->trace.lastline = __LINE__; \
168 (head)->trace.lastfile = __FILE__; \
2d21ac55
A
169} while (0)
170
0a7de745
A
171#define QMD_TRACE_ELEM(elem) do { \
172 (elem)->trace.prevline = (elem)->trace.lastline; \
173 (elem)->trace.prevfile = (elem)->trace.lastfile; \
174 (elem)->trace.lastline = __LINE__; \
175 (elem)->trace.lastfile = __FILE__; \
2d21ac55
A
176} while (0)
177
178#else
0a7de745
A
179#define QMD_TRACE_ELEM(elem)
180#define QMD_TRACE_HEAD(head)
181#define TRACEBUF
182#define TRASHIT(x)
183#endif /* QUEUE_MACRO_DEBUG */
1c79356b 184
39236c6e
A
185/*
186 * Horrible macros to enable use of code that was meant to be C-specific
187 * (and which push struct onto type) in C++; without these, C++ code
188 * that uses these macros in the context of a class will blow up
189 * due to "struct" being preprended to "type" by the macros, causing
190 * inconsistent use of tags.
191 *
192 * This approach is necessary because these are macros; we have to use
193 * these on a per-macro basis (because the queues are implemented as
194 * macros, disabling this warning in the scope of the header file is
195 * insufficient), whuch means we can't use #pragma, and have to use
196 * _Pragma. We only need to use these for the queue macros that
197 * prepend "struct" to "type" and will cause C++ to blow up.
198 */
199#if defined(__clang__) && defined(__cplusplus)
0a7de745
A
200#define __MISMATCH_TAGS_PUSH \
201 _Pragma("clang diagnostic push") \
39236c6e 202 _Pragma("clang diagnostic ignored \"-Wmismatched-tags\"")
0a7de745 203#define __MISMATCH_TAGS_POP \
39236c6e
A
204 _Pragma("clang diagnostic pop")
205#else
206#define __MISMATCH_TAGS_PUSH
207#define __MISMATCH_TAGS_POP
208#endif
209
1c79356b 210/*
2d21ac55 211 * Singly-linked List declarations.
1c79356b 212 */
0a7de745
A
213#define SLIST_HEAD(name, type) \
214__MISMATCH_TAGS_PUSH \
215struct name { \
216 struct type *slh_first; /* first element */ \
217} \
39236c6e 218__MISMATCH_TAGS_POP
2d21ac55 219
0a7de745 220#define SLIST_HEAD_INITIALIZER(head) \
2d21ac55
A
221 { NULL }
222
0a7de745
A
223#define SLIST_ENTRY(type) \
224__MISMATCH_TAGS_PUSH \
225struct { \
226 struct type *sle_next; /* next element */ \
227} \
39236c6e 228__MISMATCH_TAGS_POP
2d21ac55 229
1c79356b
A
230/*
231 * Singly-linked List functions.
232 */
0a7de745 233#define SLIST_EMPTY(head) ((head)->slh_first == NULL)
1c79356b 234
0a7de745 235#define SLIST_FIRST(head) ((head)->slh_first)
1c79356b 236
0a7de745
A
237#define SLIST_FOREACH(var, head, field) \
238 for ((var) = SLIST_FIRST((head)); \
239 (var); \
2d21ac55 240 (var) = SLIST_NEXT((var), field))
1c79356b 241
0a7de745
A
242#define SLIST_FOREACH_SAFE(var, head, field, tvar) \
243 for ((var) = SLIST_FIRST((head)); \
244 (var) && ((tvar) = SLIST_NEXT((var), field), 1); \
2d21ac55 245 (var) = (tvar))
1c79356b 246
0a7de745
A
247#define SLIST_FOREACH_PREVPTR(var, varp, head, field) \
248 for ((varp) = &SLIST_FIRST((head)); \
249 ((var) = *(varp)) != NULL; \
2d21ac55 250 (varp) = &SLIST_NEXT((var), field))
1c79356b 251
0a7de745
A
252#define SLIST_INIT(head) do { \
253 SLIST_FIRST((head)) = NULL; \
1c79356b
A
254} while (0)
255
0a7de745
A
256#define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
257 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
258 SLIST_NEXT((slistelm), field) = (elm); \
2d21ac55 259} while (0)
1c79356b 260
0a7de745
A
261#define SLIST_INSERT_HEAD(head, elm, field) do { \
262 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
263 SLIST_FIRST((head)) = (elm); \
1c79356b
A
264} while (0)
265
0a7de745 266#define SLIST_NEXT(elm, field) ((elm)->field.sle_next)
2d21ac55 267
0a7de745
A
268#define SLIST_REMOVE(head, elm, type, field) \
269__MISMATCH_TAGS_PUSH \
270do { \
271 if (SLIST_FIRST((head)) == (elm)) { \
272 SLIST_REMOVE_HEAD((head), field); \
273 } \
274 else { \
275 struct type *curelm = SLIST_FIRST((head)); \
276 while (SLIST_NEXT(curelm, field) != (elm)) \
277 curelm = SLIST_NEXT(curelm, field); \
278 SLIST_REMOVE_AFTER(curelm, field); \
279 } \
280 TRASHIT((elm)->field.sle_next); \
281} while (0) \
39236c6e 282__MISMATCH_TAGS_POP
2d21ac55 283
0a7de745
A
284#define SLIST_REMOVE_AFTER(elm, field) do { \
285 SLIST_NEXT(elm, field) = \
286 SLIST_NEXT(SLIST_NEXT(elm, field), field); \
6d2010ae
A
287} while (0)
288
0a7de745
A
289#define SLIST_REMOVE_HEAD(head, field) do { \
290 SLIST_FIRST((head)) = SLIST_NEXT(SLIST_FIRST((head)), field); \
1c79356b
A
291} while (0)
292
293/*
2d21ac55 294 * Singly-linked Tail queue declarations.
1c79356b 295 */
0a7de745
A
296#define STAILQ_HEAD(name, type) \
297__MISMATCH_TAGS_PUSH \
298struct name { \
299 struct type *stqh_first;/* first element */ \
300 struct type **stqh_last;/* addr of last next element */ \
301} \
39236c6e 302__MISMATCH_TAGS_POP
1c79356b 303
0a7de745 304#define STAILQ_HEAD_INITIALIZER(head) \
1c79356b
A
305 { NULL, &(head).stqh_first }
306
0a7de745
A
307#define STAILQ_ENTRY(type) \
308__MISMATCH_TAGS_PUSH \
309struct { \
310 struct type *stqe_next; /* next element */ \
311} \
39236c6e 312__MISMATCH_TAGS_POP
1c79356b
A
313
314/*
315 * Singly-linked Tail queue functions.
316 */
0a7de745
A
317#define STAILQ_CONCAT(head1, head2) do { \
318 if (!STAILQ_EMPTY((head2))) { \
319 *(head1)->stqh_last = (head2)->stqh_first; \
320 (head1)->stqh_last = (head2)->stqh_last; \
321 STAILQ_INIT((head2)); \
322 } \
1c79356b
A
323} while (0)
324
0a7de745 325#define STAILQ_EMPTY(head) ((head)->stqh_first == NULL)
1c79356b 326
0a7de745 327#define STAILQ_FIRST(head) ((head)->stqh_first)
2d21ac55 328
0a7de745
A
329#define STAILQ_FOREACH(var, head, field) \
330 for((var) = STAILQ_FIRST((head)); \
331 (var); \
2d21ac55 332 (var) = STAILQ_NEXT((var), field))
1c79356b 333
1c79356b 334
0a7de745
A
335#define STAILQ_FOREACH_SAFE(var, head, field, tvar) \
336 for ((var) = STAILQ_FIRST((head)); \
337 (var) && ((tvar) = STAILQ_NEXT((var), field), 1); \
2d21ac55
A
338 (var) = (tvar))
339
0a7de745
A
340#define STAILQ_INIT(head) do { \
341 STAILQ_FIRST((head)) = NULL; \
342 (head)->stqh_last = &STAILQ_FIRST((head)); \
1c79356b
A
343} while (0)
344
0a7de745 345#define STAILQ_INSERT_AFTER(head, tqelm, elm, field) do { \
2d21ac55 346 if ((STAILQ_NEXT((elm), field) = STAILQ_NEXT((tqelm), field)) == NULL)\
0a7de745
A
347 (head)->stqh_last = &STAILQ_NEXT((elm), field); \
348 STAILQ_NEXT((tqelm), field) = (elm); \
2d21ac55 349} while (0)
1c79356b 350
0a7de745
A
351#define STAILQ_INSERT_HEAD(head, elm, field) do { \
352 if ((STAILQ_NEXT((elm), field) = STAILQ_FIRST((head))) == NULL) \
353 (head)->stqh_last = &STAILQ_NEXT((elm), field); \
354 STAILQ_FIRST((head)) = (elm); \
1c79356b
A
355} while (0)
356
0a7de745
A
357#define STAILQ_INSERT_TAIL(head, elm, field) do { \
358 STAILQ_NEXT((elm), field) = NULL; \
359 *(head)->stqh_last = (elm); \
360 (head)->stqh_last = &STAILQ_NEXT((elm), field); \
1c79356b
A
361} while (0)
362
0a7de745
A
363#define STAILQ_LAST(head, type, field) \
364__MISMATCH_TAGS_PUSH \
365 (STAILQ_EMPTY((head)) ? \
366 NULL : \
367 ((struct type *)(void *) \
368 ((char *)((head)->stqh_last) - __offsetof(struct type, field))))\
39236c6e 369__MISMATCH_TAGS_POP
1c79356b 370
0a7de745
A
371#define STAILQ_NEXT(elm, field) ((elm)->field.stqe_next)
372
373#define STAILQ_REMOVE(head, elm, type, field) \
374__MISMATCH_TAGS_PUSH \
375do { \
376 if (STAILQ_FIRST((head)) == (elm)) { \
377 STAILQ_REMOVE_HEAD((head), field); \
378 } \
379 else { \
380 struct type *curelm = STAILQ_FIRST((head)); \
381 while (STAILQ_NEXT(curelm, field) != (elm)) \
382 curelm = STAILQ_NEXT(curelm, field); \
383 STAILQ_REMOVE_AFTER(head, curelm, field); \
384 } \
385 TRASHIT((elm)->field.stqe_next); \
386} while (0) \
39236c6e 387__MISMATCH_TAGS_POP
2d21ac55 388
0a7de745
A
389#define STAILQ_REMOVE_HEAD(head, field) do { \
390 if ((STAILQ_FIRST((head)) = \
391 STAILQ_NEXT(STAILQ_FIRST((head)), field)) == NULL) \
392 (head)->stqh_last = &STAILQ_FIRST((head)); \
2d21ac55
A
393} while (0)
394
6d2010ae
A
395#define STAILQ_REMOVE_HEAD_UNTIL(head, elm, field) do { \
396 if ((STAILQ_FIRST((head)) = STAILQ_NEXT((elm), field)) == NULL) \
0a7de745
A
397 (head)->stqh_last = &STAILQ_FIRST((head)); \
398} while (0)
399
400#define STAILQ_REMOVE_AFTER(head, elm, field) do { \
401 if ((STAILQ_NEXT(elm, field) = \
402 STAILQ_NEXT(STAILQ_NEXT(elm, field), field)) == NULL) \
403 (head)->stqh_last = &STAILQ_NEXT((elm), field); \
404} while (0)
405
406#define STAILQ_SWAP(head1, head2, type) \
407__MISMATCH_TAGS_PUSH \
408do { \
409 struct type *swap_first = STAILQ_FIRST(head1); \
410 struct type **swap_last = (head1)->stqh_last; \
411 STAILQ_FIRST(head1) = STAILQ_FIRST(head2); \
412 (head1)->stqh_last = (head2)->stqh_last; \
413 STAILQ_FIRST(head2) = swap_first; \
414 (head2)->stqh_last = swap_last; \
415 if (STAILQ_EMPTY(head1)) \
416 (head1)->stqh_last = &STAILQ_FIRST(head1); \
417 if (STAILQ_EMPTY(head2)) \
418 (head2)->stqh_last = &STAILQ_FIRST(head2); \
419} while (0) \
39236c6e 420__MISMATCH_TAGS_POP
6d2010ae
A
421
422
1c79356b 423/*
2d21ac55 424 * List declarations.
1c79356b 425 */
0a7de745
A
426#define LIST_HEAD(name, type) \
427__MISMATCH_TAGS_PUSH \
428struct name { \
429 struct type *lh_first; /* first element */ \
430} \
39236c6e 431__MISMATCH_TAGS_POP
1c79356b 432
0a7de745 433#define LIST_HEAD_INITIALIZER(head) \
1c79356b
A
434 { NULL }
435
0a7de745
A
436#define LIST_ENTRY(type) \
437__MISMATCH_TAGS_PUSH \
438struct { \
439 struct type *le_next; /* next element */ \
440 struct type **le_prev; /* address of previous next element */ \
441} \
39236c6e 442__MISMATCH_TAGS_POP
1c79356b
A
443
444/*
445 * List functions.
446 */
447
d9a64523 448#ifdef KERNEL_PRIVATE
0a7de745
A
449#define LIST_CHECK_HEAD(head, field) do { \
450 if (__improbable( \
451 LIST_FIRST((head)) != NULL && \
452 LIST_FIRST((head))->field.le_prev != \
453 &LIST_FIRST((head)))) \
454 panic("Bad list head %p first->prev != head", (head)); \
2d21ac55 455} while (0)
1c79356b 456
0a7de745
A
457#define LIST_CHECK_NEXT(elm, field) do { \
458 if (__improbable( \
459 LIST_NEXT((elm), field) != NULL && \
460 LIST_NEXT((elm), field)->field.le_prev != \
461 &((elm)->field.le_next))) \
462 panic("Bad link elm %p next->prev != elm", (elm)); \
2d21ac55
A
463} while (0)
464
0a7de745
A
465#define LIST_CHECK_PREV(elm, field) do { \
466 if (__improbable(*(elm)->field.le_prev != (elm))) \
467 panic("Bad link elm %p prev->next != elm", (elm)); \
2d21ac55
A
468} while (0)
469#else
0a7de745
A
470#define LIST_CHECK_HEAD(head, field)
471#define LIST_CHECK_NEXT(elm, field)
472#define LIST_CHECK_PREV(elm, field)
d9a64523 473#endif /* KERNEL_PRIVATE */
1c79356b 474
0a7de745 475#define LIST_EMPTY(head) ((head)->lh_first == NULL)
2d21ac55 476
0a7de745 477#define LIST_FIRST(head) ((head)->lh_first)
2d21ac55 478
0a7de745
A
479#define LIST_FOREACH(var, head, field) \
480 for ((var) = LIST_FIRST((head)); \
481 (var); \
2d21ac55
A
482 (var) = LIST_NEXT((var), field))
483
0a7de745
A
484#define LIST_FOREACH_SAFE(var, head, field, tvar) \
485 for ((var) = LIST_FIRST((head)); \
486 (var) && ((tvar) = LIST_NEXT((var), field), 1); \
2d21ac55 487 (var) = (tvar))
1c79356b 488
0a7de745
A
489#define LIST_INIT(head) do { \
490 LIST_FIRST((head)) = NULL; \
1c79356b
A
491} while (0)
492
0a7de745
A
493#define LIST_INSERT_AFTER(listelm, elm, field) do { \
494 LIST_CHECK_NEXT(listelm, field); \
2d21ac55 495 if ((LIST_NEXT((elm), field) = LIST_NEXT((listelm), field)) != NULL)\
0a7de745
A
496 LIST_NEXT((listelm), field)->field.le_prev = \
497 &LIST_NEXT((elm), field); \
498 LIST_NEXT((listelm), field) = (elm); \
499 (elm)->field.le_prev = &LIST_NEXT((listelm), field); \
500} while (0)
501
502#define LIST_INSERT_BEFORE(listelm, elm, field) do { \
503 LIST_CHECK_PREV(listelm, field); \
504 (elm)->field.le_prev = (listelm)->field.le_prev; \
505 LIST_NEXT((elm), field) = (listelm); \
506 *(listelm)->field.le_prev = (elm); \
507 (listelm)->field.le_prev = &LIST_NEXT((elm), field); \
508} while (0)
509
510#define LIST_INSERT_HEAD(head, elm, field) do { \
511 LIST_CHECK_HEAD((head), field); \
512 if ((LIST_NEXT((elm), field) = LIST_FIRST((head))) != NULL) \
513 LIST_FIRST((head))->field.le_prev = &LIST_NEXT((elm), field);\
514 LIST_FIRST((head)) = (elm); \
515 (elm)->field.le_prev = &LIST_FIRST((head)); \
516} while (0)
517
518#define LIST_NEXT(elm, field) ((elm)->field.le_next)
519
520#define LIST_REMOVE(elm, field) do { \
521 LIST_CHECK_NEXT(elm, field); \
522 LIST_CHECK_PREV(elm, field); \
523 if (LIST_NEXT((elm), field) != NULL) \
524 LIST_NEXT((elm), field)->field.le_prev = \
525 (elm)->field.le_prev; \
526 *(elm)->field.le_prev = LIST_NEXT((elm), field); \
527 TRASHIT((elm)->field.le_next); \
528 TRASHIT((elm)->field.le_prev); \
529} while (0)
530
531#define LIST_SWAP(head1, head2, type, field) \
532__MISMATCH_TAGS_PUSH \
533do { \
534 struct type *swap_tmp = LIST_FIRST((head1)); \
535 LIST_FIRST((head1)) = LIST_FIRST((head2)); \
536 LIST_FIRST((head2)) = swap_tmp; \
537 if ((swap_tmp = LIST_FIRST((head1))) != NULL) \
538 swap_tmp->field.le_prev = &LIST_FIRST((head1)); \
539 if ((swap_tmp = LIST_FIRST((head2))) != NULL) \
540 swap_tmp->field.le_prev = &LIST_FIRST((head2)); \
541} while (0) \
39236c6e 542__MISMATCH_TAGS_POP
6d2010ae 543
1c79356b 544/*
2d21ac55 545 * Tail queue declarations.
1c79356b 546 */
0a7de745
A
547#define TAILQ_HEAD(name, type) \
548__MISMATCH_TAGS_PUSH \
549struct name { \
550 struct type *tqh_first; /* first element */ \
551 struct type **tqh_last; /* addr of last next element */ \
552 TRACEBUF \
553} \
39236c6e 554__MISMATCH_TAGS_POP
1c79356b 555
0a7de745 556#define TAILQ_HEAD_INITIALIZER(head) \
1c79356b
A
557 { NULL, &(head).tqh_first }
558
0a7de745
A
559#define TAILQ_ENTRY(type) \
560__MISMATCH_TAGS_PUSH \
561struct { \
562 struct type *tqe_next; /* next element */ \
563 struct type **tqe_prev; /* address of previous next element */ \
564 TRACEBUF \
565} \
39236c6e 566__MISMATCH_TAGS_POP
1c79356b
A
567
568/*
569 * Tail queue functions.
570 */
d9a64523 571#ifdef KERNEL_PRIVATE
0a7de745
A
572#define TAILQ_CHECK_HEAD(head, field) do { \
573 if (__improbable( \
574 TAILQ_FIRST((head)) != NULL && \
575 TAILQ_FIRST((head))->field.tqe_prev != \
576 &TAILQ_FIRST((head)))) \
577 panic("Bad tailq head %p first->prev != head", (head)); \
578} while (0)
579
580#define TAILQ_CHECK_NEXT(elm, field) do { \
581 if (__improbable( \
582 TAILQ_NEXT((elm), field) != NULL && \
583 TAILQ_NEXT((elm), field)->field.tqe_prev != \
584 &((elm)->field.tqe_next))) \
585 panic("Bad tailq elm %p next->prev != elm", (elm)); \
d9a64523
A
586} while(0)
587
0a7de745
A
588#define TAILQ_CHECK_PREV(elm, field) do { \
589 if (__improbable(*(elm)->field.tqe_prev != (elm))) \
590 panic("Bad tailq elm %p prev->next != elm", (elm)); \
d9a64523
A
591} while(0)
592#else
0a7de745
A
593#define TAILQ_CHECK_HEAD(head, field)
594#define TAILQ_CHECK_NEXT(elm, field)
595#define TAILQ_CHECK_PREV(elm, field)
d9a64523
A
596#endif /* KERNEL_PRIVATE */
597
0a7de745
A
598#define TAILQ_CONCAT(head1, head2, field) do { \
599 if (!TAILQ_EMPTY(head2)) { \
600 *(head1)->tqh_last = (head2)->tqh_first; \
601 (head2)->tqh_first->field.tqe_prev = (head1)->tqh_last; \
602 (head1)->tqh_last = (head2)->tqh_last; \
603 TAILQ_INIT((head2)); \
604 QMD_TRACE_HEAD(head1); \
605 QMD_TRACE_HEAD(head2); \
606 } \
2d21ac55 607} while (0)
1c79356b 608
0a7de745 609#define TAILQ_EMPTY(head) ((head)->tqh_first == NULL)
1c79356b 610
0a7de745 611#define TAILQ_FIRST(head) ((head)->tqh_first)
1c79356b 612
0a7de745
A
613#define TAILQ_FOREACH(var, head, field) \
614 for ((var) = TAILQ_FIRST((head)); \
615 (var); \
2d21ac55 616 (var) = TAILQ_NEXT((var), field))
1c79356b 617
0a7de745
A
618#define TAILQ_FOREACH_SAFE(var, head, field, tvar) \
619 for ((var) = TAILQ_FIRST((head)); \
620 (var) && ((tvar) = TAILQ_NEXT((var), field), 1); \
2d21ac55 621 (var) = (tvar))
1c79356b 622
0a7de745
A
623#define TAILQ_FOREACH_REVERSE(var, head, headname, field) \
624 for ((var) = TAILQ_LAST((head), headname); \
625 (var); \
2d21ac55 626 (var) = TAILQ_PREV((var), headname, field))
1c79356b 627
0a7de745
A
628#define TAILQ_FOREACH_REVERSE_SAFE(var, head, headname, field, tvar) \
629 for ((var) = TAILQ_LAST((head), headname); \
630 (var) && ((tvar) = TAILQ_PREV((var), headname, field), 1); \
2d21ac55 631 (var) = (tvar))
1c79356b 632
0a7de745
A
633#define TAILQ_INIT(head) do { \
634 TAILQ_FIRST((head)) = NULL; \
635 (head)->tqh_last = &TAILQ_FIRST((head)); \
636 QMD_TRACE_HEAD(head); \
1c79356b
A
637} while (0)
638
d9a64523 639
0a7de745
A
640#define TAILQ_INSERT_AFTER(head, listelm, elm, field) do { \
641 TAILQ_CHECK_NEXT(listelm, field); \
2d21ac55 642 if ((TAILQ_NEXT((elm), field) = TAILQ_NEXT((listelm), field)) != NULL)\
0a7de745
A
643 TAILQ_NEXT((elm), field)->field.tqe_prev = \
644 &TAILQ_NEXT((elm), field); \
645 else { \
646 (head)->tqh_last = &TAILQ_NEXT((elm), field); \
647 QMD_TRACE_HEAD(head); \
648 } \
649 TAILQ_NEXT((listelm), field) = (elm); \
650 (elm)->field.tqe_prev = &TAILQ_NEXT((listelm), field); \
651 QMD_TRACE_ELEM(&(elm)->field); \
652 QMD_TRACE_ELEM(&listelm->field); \
653} while (0)
654
655#define TAILQ_INSERT_BEFORE(listelm, elm, field) do { \
656 TAILQ_CHECK_PREV(listelm, field); \
657 (elm)->field.tqe_prev = (listelm)->field.tqe_prev; \
658 TAILQ_NEXT((elm), field) = (listelm); \
659 *(listelm)->field.tqe_prev = (elm); \
660 (listelm)->field.tqe_prev = &TAILQ_NEXT((elm), field); \
661 QMD_TRACE_ELEM(&(elm)->field); \
662 QMD_TRACE_ELEM(&listelm->field); \
663} while (0)
664
665#define TAILQ_INSERT_HEAD(head, elm, field) do { \
666 TAILQ_CHECK_HEAD(head, field); \
667 if ((TAILQ_NEXT((elm), field) = TAILQ_FIRST((head))) != NULL) \
668 TAILQ_FIRST((head))->field.tqe_prev = \
669 &TAILQ_NEXT((elm), field); \
670 else \
671 (head)->tqh_last = &TAILQ_NEXT((elm), field); \
672 TAILQ_FIRST((head)) = (elm); \
673 (elm)->field.tqe_prev = &TAILQ_FIRST((head)); \
674 QMD_TRACE_HEAD(head); \
675 QMD_TRACE_ELEM(&(elm)->field); \
676} while (0)
677
678#define TAILQ_INSERT_TAIL(head, elm, field) do { \
679 TAILQ_NEXT((elm), field) = NULL; \
680 (elm)->field.tqe_prev = (head)->tqh_last; \
681 *(head)->tqh_last = (elm); \
682 (head)->tqh_last = &TAILQ_NEXT((elm), field); \
683 QMD_TRACE_HEAD(head); \
684 QMD_TRACE_ELEM(&(elm)->field); \
685} while (0)
686
687#define TAILQ_LAST(head, headname) \
688__MISMATCH_TAGS_PUSH \
689 (*(((struct headname *)((head)->tqh_last))->tqh_last)) \
39236c6e 690__MISMATCH_TAGS_POP
2d21ac55 691
0a7de745 692#define TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
2d21ac55 693
0a7de745
A
694#define TAILQ_PREV(elm, headname, field) \
695__MISMATCH_TAGS_PUSH \
696 (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last)) \
39236c6e 697__MISMATCH_TAGS_POP
2d21ac55 698
0a7de745
A
699#define TAILQ_REMOVE(head, elm, field) do { \
700 TAILQ_CHECK_NEXT(elm, field); \
701 TAILQ_CHECK_PREV(elm, field); \
702 if ((TAILQ_NEXT((elm), field)) != NULL) \
703 TAILQ_NEXT((elm), field)->field.tqe_prev = \
704 (elm)->field.tqe_prev; \
705 else { \
706 (head)->tqh_last = (elm)->field.tqe_prev; \
707 QMD_TRACE_HEAD(head); \
708 } \
709 *(elm)->field.tqe_prev = TAILQ_NEXT((elm), field); \
710 TRASHIT((elm)->field.tqe_next); \
711 TRASHIT((elm)->field.tqe_prev); \
712 QMD_TRACE_ELEM(&(elm)->field); \
1c79356b
A
713} while (0)
714
39236c6e
A
715/*
716 * Why did they switch to spaces for this one macro?
717 */
718#define TAILQ_SWAP(head1, head2, type, field) \
719__MISMATCH_TAGS_PUSH \
720do { \
6d2010ae
A
721 struct type *swap_first = (head1)->tqh_first; \
722 struct type **swap_last = (head1)->tqh_last; \
723 (head1)->tqh_first = (head2)->tqh_first; \
724 (head1)->tqh_last = (head2)->tqh_last; \
725 (head2)->tqh_first = swap_first; \
726 (head2)->tqh_last = swap_last; \
727 if ((swap_first = (head1)->tqh_first) != NULL) \
0a7de745 728 swap_first->field.tqe_prev = &(head1)->tqh_first; \
6d2010ae 729 else \
0a7de745 730 (head1)->tqh_last = &(head1)->tqh_first; \
6d2010ae 731 if ((swap_first = (head2)->tqh_first) != NULL) \
0a7de745 732 swap_first->field.tqe_prev = &(head2)->tqh_first; \
6d2010ae 733 else \
0a7de745 734 (head2)->tqh_last = &(head2)->tqh_first; \
39236c6e
A
735} while (0) \
736__MISMATCH_TAGS_POP
6d2010ae 737
1c79356b
A
738/*
739 * Circular queue definitions.
740 */
0a7de745
A
741#define CIRCLEQ_HEAD(name, type) \
742__MISMATCH_TAGS_PUSH \
743struct name { \
744 struct type *cqh_first; /* first element */ \
745 struct type *cqh_last; /* last element */ \
746} \
39236c6e 747__MISMATCH_TAGS_POP
1c79356b 748
0a7de745
A
749#define CIRCLEQ_ENTRY(type) \
750__MISMATCH_TAGS_PUSH \
751struct { \
752 struct type *cqe_next; /* next element */ \
753 struct type *cqe_prev; /* previous element */ \
754} \
39236c6e 755__MISMATCH_TAGS_POP
1c79356b
A
756
757/*
758 * Circular queue functions.
759 */
d9a64523 760#ifdef KERNEL_PRIVATE
0a7de745
A
761#define CIRCLEQ_CHECK_HEAD(head, field) do { \
762 if (__improbable( \
763 CIRCLEQ_FIRST((head)) != ((void*)(head)) && \
d9a64523 764 CIRCLEQ_FIRST((head))->field.cqe_prev != ((void*)(head))))\
0a7de745 765 panic("Bad circleq head %p first->prev != head", (head)); \
d9a64523 766} while(0)
0a7de745
A
767#define CIRCLEQ_CHECK_NEXT(head, elm, field) do { \
768 if (__improbable( \
769 CIRCLEQ_NEXT((elm), field) != ((void*)(head)) && \
770 CIRCLEQ_NEXT((elm), field)->field.cqe_prev != (elm))) \
771 panic("Bad circleq elm %p next->prev != elm", (elm)); \
d9a64523 772} while(0)
0a7de745
A
773#define CIRCLEQ_CHECK_PREV(head, elm, field) do { \
774 if (__improbable( \
775 CIRCLEQ_PREV((elm), field) != ((void*)(head)) && \
776 CIRCLEQ_PREV((elm), field)->field.cqe_next != (elm))) \
777 panic("Bad circleq elm %p prev->next != elm", (elm)); \
d9a64523
A
778} while(0)
779#else
0a7de745
A
780#define CIRCLEQ_CHECK_HEAD(head, field)
781#define CIRCLEQ_CHECK_NEXT(head, elm, field)
782#define CIRCLEQ_CHECK_PREV(head, elm, field)
d9a64523
A
783#endif /* KERNEL_PRIVATE */
784
1c79356b
A
785#define CIRCLEQ_EMPTY(head) ((head)->cqh_first == (void *)(head))
786
787#define CIRCLEQ_FIRST(head) ((head)->cqh_first)
788
0a7de745
A
789#define CIRCLEQ_FOREACH(var, head, field) \
790 for((var) = (head)->cqh_first; \
791 (var) != (void *)(head); \
1c79356b
A
792 (var) = (var)->field.cqe_next)
793
0a7de745
A
794#define CIRCLEQ_INIT(head) do { \
795 (head)->cqh_first = (void *)(head); \
796 (head)->cqh_last = (void *)(head); \
797} while (0)
798
799#define CIRCLEQ_INSERT_AFTER(head, listelm, elm, field) do { \
800 CIRCLEQ_CHECK_NEXT(head, listelm, field); \
801 (elm)->field.cqe_next = (listelm)->field.cqe_next; \
802 (elm)->field.cqe_prev = (listelm); \
803 if ((listelm)->field.cqe_next == (void *)(head)) \
804 (head)->cqh_last = (elm); \
805 else \
806 (listelm)->field.cqe_next->field.cqe_prev = (elm); \
807 (listelm)->field.cqe_next = (elm); \
808} while (0)
809
810#define CIRCLEQ_INSERT_BEFORE(head, listelm, elm, field) do { \
811 CIRCLEQ_CHECK_PREV(head, listelm, field); \
812 (elm)->field.cqe_next = (listelm); \
813 (elm)->field.cqe_prev = (listelm)->field.cqe_prev; \
814 if ((listelm)->field.cqe_prev == (void *)(head)) \
815 (head)->cqh_first = (elm); \
816 else \
817 (listelm)->field.cqe_prev->field.cqe_next = (elm); \
818 (listelm)->field.cqe_prev = (elm); \
819} while (0)
820
821#define CIRCLEQ_INSERT_HEAD(head, elm, field) do { \
822 CIRCLEQ_CHECK_HEAD(head, field); \
823 (elm)->field.cqe_next = (head)->cqh_first; \
824 (elm)->field.cqe_prev = (void *)(head); \
825 if ((head)->cqh_last == (void *)(head)) \
826 (head)->cqh_last = (elm); \
827 else \
828 (head)->cqh_first->field.cqe_prev = (elm); \
829 (head)->cqh_first = (elm); \
830} while (0)
831
832#define CIRCLEQ_INSERT_TAIL(head, elm, field) do { \
833 (elm)->field.cqe_next = (void *)(head); \
834 (elm)->field.cqe_prev = (head)->cqh_last; \
835 if ((head)->cqh_first == (void *)(head)) \
836 (head)->cqh_first = (elm); \
837 else \
838 (head)->cqh_last->field.cqe_next = (elm); \
839 (head)->cqh_last = (elm); \
1c79356b
A
840} while (0)
841
842#define CIRCLEQ_LAST(head) ((head)->cqh_last)
843
0a7de745 844#define CIRCLEQ_NEXT(elm, field) ((elm)->field.cqe_next)
1c79356b 845
0a7de745 846#define CIRCLEQ_PREV(elm, field) ((elm)->field.cqe_prev)
1c79356b 847
0a7de745
A
848#define CIRCLEQ_REMOVE(head, elm, field) do { \
849 CIRCLEQ_CHECK_NEXT(head, elm, field); \
850 CIRCLEQ_CHECK_PREV(head, elm, field); \
851 if ((elm)->field.cqe_next == (void *)(head)) \
852 (head)->cqh_last = (elm)->field.cqe_prev; \
853 else \
854 (elm)->field.cqe_next->field.cqe_prev = \
855 (elm)->field.cqe_prev; \
856 if ((elm)->field.cqe_prev == (void *)(head)) \
857 (head)->cqh_first = (elm)->field.cqe_next; \
858 else \
859 (elm)->field.cqe_prev->field.cqe_next = \
860 (elm)->field.cqe_next; \
1c79356b
A
861} while (0)
862
2d21ac55 863#ifdef _KERNEL
1c79356b
A
864
865#if NOTFB31
866
867/*
868 * XXX insque() and remque() are an old way of handling certain queues.
869 * They bogusly assumes that all queue heads look alike.
870 */
871
872struct quehead {
873 struct quehead *qh_link;
874 struct quehead *qh_rlink;
875};
876
2d21ac55 877#ifdef __GNUC__
d9a64523
A
878#ifdef KERNEL_PRIVATE
879static __inline void
880chkquenext(void *a)
881{
0a7de745
A
882 struct quehead *element = (struct quehead *)a;
883 if (__improbable(element->qh_link != NULL &&
884 element->qh_link->qh_rlink != element)) {
885 panic("Bad que elm %p next->prev != elm", a);
886 }
d9a64523
A
887}
888
889static __inline void
890chkqueprev(void *a)
891{
0a7de745
A
892 struct quehead *element = (struct quehead *)a;
893 if (__improbable(element->qh_rlink != NULL &&
894 element->qh_rlink->qh_link != element)) {
895 panic("Bad que elm %p prev->next != elm", a);
896 }
d9a64523
A
897}
898#else /* !KERNEL_PRIVATE */
899#define chkquenext(a)
900#define chkqueprev(a)
901#endif /* KERNEL_PRIVATE */
1c79356b
A
902
903static __inline void
904insque(void *a, void *b)
905{
2d21ac55 906 struct quehead *element = (struct quehead *)a,
0a7de745 907 *head = (struct quehead *)b;
d9a64523 908 chkquenext(head);
1c79356b
A
909
910 element->qh_link = head->qh_link;
911 element->qh_rlink = head;
912 head->qh_link = element;
913 element->qh_link->qh_rlink = element;
914}
915
916static __inline void
917remque(void *a)
918{
2d21ac55 919 struct quehead *element = (struct quehead *)a;
d9a64523
A
920 chkquenext(element);
921 chkqueprev(element);
1c79356b
A
922
923 element->qh_link->qh_rlink = element->qh_rlink;
924 element->qh_rlink->qh_link = element->qh_link;
925 element->qh_rlink = 0;
926}
927
928#else /* !__GNUC__ */
929
0a7de745
A
930void insque(void *a, void *b);
931void remque(void *a);
1c79356b
A
932
933#endif /* __GNUC__ */
934
d9a64523 935#endif /* NOTFB31 */
2d21ac55 936#endif /* _KERNEL */
1c79356b
A
937
938#endif /* !_SYS_QUEUE_H_ */