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