2 * Copyright (c) 2000-2009 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
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
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
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.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
34 * All Rights Reserved.
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
46 * Carnegie Mellon requests users of this software to return to
48 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
53 * any improvements or extensions that they make and grant Carnegie Mellon rights
54 * to redistribute these changes.
60 * Author: Avadis Tevanian, Jr.
63 * Type definitions for generic queues.
67 #ifndef _KERN_QUEUE_H_
68 #define _KERN_QUEUE_H_
70 #include <mach/mach_types.h>
71 #include <kern/macro_help.h>
73 #include <sys/cdefs.h>
78 * Queue Management APIs
80 * There are currently two subtly different methods of maintining
81 * a queue of objects. Both APIs are contained in this file, and
82 * unfortunately overlap.
83 * (there is also a third way maintained in bsd/sys/queue.h)
85 * Both methods use a common queue head and linkage pattern:
86 * The head of a queue is declared as:
87 * queue_head_t q_head;
89 * Elements in this queue are chained together using
90 * struct queue_entry objects embedded within a structure:
99 * struct some_data is referred to as the queue "element."
100 * (note that queue_chain_t is typedef'd to struct queue_entry)
102 * IMPORTANT: The two queue iteration methods described below are not
103 * compatible with one another. You must choose one and be careful
104 * to use only the supported APIs for that method.
106 * Method 1: chaining of queue_chain_t (linkage chains)
107 * This method uses the next and prev pointers of the struct queue_entry
108 * linkage object embedded in a queue element to point to the next or
109 * previous queue_entry structure in the chain. The head of the queue
110 * (the queue_head_t object) will point to the first and last
111 * struct queue_entry object, and both the next and prev pointer will
112 * point back to the head if the queue is empty.
114 * This method is the most flexible method of chaining objects together
115 * as it allows multiple chains through a given object, by embedding
116 * multiple queue_chain_t objects in the structure, while simultaneously
117 * providing fast removal and insertion into the queue using only
118 * struct queue_entry object pointers.
120 * ++ Valid APIs for this style queue ++
121 * -------------------------------------
144 * [1] qe_foreach_safe
145 * [1] qe_foreach_element
146 * [1] qe_foreach_element_safe
148 * Method 2: chaining of elements (element chains)
149 * This method uses the next and prev pointers of the struct queue_entry
150 * linkage object embedded in a queue element to point to the next or
151 * previous queue element (not another queue_entry). The head of the
152 * queue will point to the first and last queue element (struct some_data
153 * from the above example) NOT the embedded queue_entry structure. The
154 * first queue element will have a prev pointer that points to the
155 * queue_head_t, and the last queue element will have a next pointer
156 * that points to the queue_head_t.
158 * This method requires knowledge of the queue_head_t of the queue on
159 * which an element resides in order to remove the element. Iterating
160 * through the elements of the queue is also more cumbersome because
161 * a check against the head pointer plus a cast then offset operation
162 * must be performed at each step of the iteration.
164 * ++ Valid APIs for this style queue ++
165 * -------------------------------------
175 * [2] queue_enter_first
176 * [2] queue_insert_before
177 * [2] queue_insert_after
180 * [2] queue_remove_first
181 * [2] queue_remove_last
187 * [C] -> API common to both methods
188 * [1] -> API used only in method 1 (linkage chains)
189 * [2] -> API used only in method 2 (element chains)
193 * A generic doubly-linked list (queue).
197 struct queue_entry
*next
; /* next element */
198 struct queue_entry
*prev
; /* previous element */
200 #if __arm__ && (__BIGGEST_ALIGNMENT__ > 4)
201 /* For the newer ARMv7k ABI where 64-bit types are 64-bit aligned, but pointers
203 * Since this type is so often cast to various 64-bit aligned types
204 * aligning it to 64-bits will avoid -wcast-align without needing
205 * to disable it entirely. The impact on memory footprint should be
208 } __attribute__ ((aligned(8)));
213 typedef struct queue_entry
*queue_t
;
214 typedef struct queue_entry queue_head_t
;
215 typedef struct queue_entry queue_chain_t
;
216 typedef struct queue_entry
*queue_entry_t
;
219 * enqueue puts "elt" on the "queue".
220 * dequeue returns the first element in the "queue".
221 * remqueue removes the specified "elt" from its queue.
224 #define enqueue(queue, elt) enqueue_tail(queue, elt)
225 #define dequeue(queue) dequeue_head(queue)
227 #ifdef XNU_KERNEL_PRIVATE
228 #include <kern/debug.h>
230 __QUEUE_ELT_VALIDATE(queue_entry_t elt
)
232 queue_entry_t elt_next
, elt_prev
;
234 if (__improbable(elt
== (queue_entry_t
)0)) {
235 panic("Invalid queue element %p", elt
);
238 elt_next
= elt
->next
;
239 elt_prev
= elt
->prev
;
241 if (__improbable(elt_next
== (queue_entry_t
)0 || elt_prev
== (queue_entry_t
)0)) {
242 panic("Invalid queue element pointers for %p: next %p prev %p", elt
, elt_next
, elt_prev
);
244 if (__improbable(elt_next
->prev
!= elt
|| elt_prev
->next
!= elt
)) {
245 panic("Invalid queue element linkage for %p: next %p next->prev %p prev %p prev->next %p",
246 elt
, elt_next
, elt_next
->prev
, elt_prev
, elt_prev
->next
);
251 __DEQUEUE_ELT_CLEANUP(queue_entry_t elt
)
253 (elt
)->next
= (queue_entry_t
) 0;
254 (elt
)->prev
= (queue_entry_t
) 0;
257 #define __QUEUE_ELT_VALIDATE(elt) do { } while (0)
258 #define __DEQUEUE_ELT_CLEANUP(elt) do { } while(0)
259 #endif /* !XNU_KERNEL_PRIVATE */
261 static __inline__
void
266 queue_entry_t old_head
;
268 __QUEUE_ELT_VALIDATE((queue_entry_t
)que
);
269 old_head
= que
->next
;
270 elt
->next
= old_head
;
272 old_head
->prev
= elt
;
276 static __inline__
void
281 queue_entry_t old_tail
;
283 __QUEUE_ELT_VALIDATE((queue_entry_t
)que
);
284 old_tail
= que
->prev
;
286 elt
->prev
= old_tail
;
287 old_tail
->next
= elt
;
291 static __inline__ queue_entry_t
295 queue_entry_t elt
= (queue_entry_t
) 0;
296 queue_entry_t new_head
;
298 if (que
->next
!= que
) {
300 __QUEUE_ELT_VALIDATE(elt
);
301 new_head
= elt
->next
; /* new_head may point to que if elt was the only element */
302 new_head
->prev
= que
;
303 que
->next
= new_head
;
304 __DEQUEUE_ELT_CLEANUP(elt
);
310 static __inline__ queue_entry_t
314 queue_entry_t elt
= (queue_entry_t
) 0;
315 queue_entry_t new_tail
;
317 if (que
->prev
!= que
) {
319 __QUEUE_ELT_VALIDATE(elt
);
320 new_tail
= elt
->prev
; /* new_tail may point to queue if elt was the only element */
321 new_tail
->next
= que
;
322 que
->prev
= new_tail
;
323 __DEQUEUE_ELT_CLEANUP(elt
);
329 static __inline__
void
333 queue_entry_t next_elt
, prev_elt
;
335 __QUEUE_ELT_VALIDATE(elt
);
336 next_elt
= elt
->next
;
337 prev_elt
= elt
->prev
; /* next_elt may equal prev_elt (and the queue head) if elt was the only element */
338 next_elt
->prev
= prev_elt
;
339 prev_elt
->next
= next_elt
;
340 __DEQUEUE_ELT_CLEANUP(elt
);
343 static __inline__
void
348 queue_entry_t successor
;
350 __QUEUE_ELT_VALIDATE(pred
);
351 successor
= pred
->next
;
352 entry
->next
= successor
;
354 successor
->prev
= entry
;
358 static __inline__
void
362 queue_entry_t next_elt
, prev_elt
;
364 __QUEUE_ELT_VALIDATE(elt
);
365 next_elt
= elt
->next
;
366 prev_elt
= elt
->prev
; /* next_elt may equal prev_elt (and the queue head) if elt was the only element */
367 next_elt
->prev
= prev_elt
;
368 prev_elt
->next
= next_elt
;
369 __DEQUEUE_ELT_CLEANUP(elt
);
373 * Function: re_queue_head
375 * queue_t que : queue onto which elt will be pre-pended
376 * queue_entry_t elt : element to re-queue
378 * Remove elt from its current queue and put it onto the
379 * head of a new queue
381 * This should only be used with Method 1 queue iteration (linkage chains)
383 static __inline__
void
384 re_queue_head(queue_t que
, queue_entry_t elt
)
386 queue_entry_t n_elt
, p_elt
;
388 __QUEUE_ELT_VALIDATE(elt
);
389 __QUEUE_ELT_VALIDATE((queue_entry_t
)que
);
393 p_elt
= elt
->prev
; /* next_elt may equal prev_elt (and the queue head) if elt was the only element */
406 * Function: re_queue_tail
408 * queue_t que : queue onto which elt will be appended
409 * queue_entry_t elt : element to re-queue
411 * Remove elt from its current queue and put it onto the
414 * This should only be used with Method 1 queue iteration (linkage chains)
416 static __inline__
void
417 re_queue_tail(queue_t que
, queue_entry_t elt
)
419 queue_entry_t n_elt
, p_elt
;
421 __QUEUE_ELT_VALIDATE(elt
);
422 __QUEUE_ELT_VALIDATE((queue_entry_t
)que
);
426 p_elt
= elt
->prev
; /* next_elt may equal prev_elt (and the queue head) if elt was the only element */
441 * Convert a queue_entry_t to a queue element pointer.
442 * Get a pointer to the user-defined element containing
443 * a given queue_entry_t
445 * <type> * qe_element(queue_entry_t qe, <type>, field)
446 * qe - queue entry to convert
447 * <type> - what's in the queue (e.g., struct some_data)
448 * <field> - is the chain field in <type>
450 * Do not use pointer types for <type>
452 #define qe_element(qe, type, field) \
453 ((type *)((void *)((char *)(qe) - __offsetof(type, field))))
458 * Iterate over each queue_entry_t structure.
459 * Generates a 'for' loop, setting 'qe' to
460 * each queue_entry_t in the queue.
462 * qe_foreach(queue_entry_t qe, queue_t head)
463 * qe - iteration variable
464 * head - pointer to queue_head_t (head of queue)
466 * This should only be used with Method 1 queue iteration (linkage chains)
468 #define qe_foreach(qe, head) \
469 for (qe = (head)->next; qe != (head); qe = (qe)->next)
472 * Macro: qe_foreach_safe
474 * Safely iterate over each queue_entry_t structure.
476 * Use this iterator macro if you plan to remove the
477 * queue_entry_t, qe, from the queue during the
480 * qe_foreach_safe(queue_entry_t qe, queue_t head)
481 * qe - iteration variable
482 * head - pointer to queue_head_t (head of queue)
484 * This should only be used with Method 1 queue iteration (linkage chains)
486 #define qe_foreach_safe(qe, head) \
487 for (queue_entry_t _ne = ((head)->next)->next, \
488 __ ## qe ## _unused_shadow __unused = (qe = (head)->next); \
490 qe = _ne, _ne = (qe)->next)
493 * Macro: qe_foreach_element
495 * Iterate over each _element_ in a queue
496 * where each queue_entry_t points to another
497 * queue_entry_t, i.e., managed by the [de|en]queue_head/
498 * [de|en]queue_tail / remqueue / etc. function.
500 * qe_foreach_element(<type> *elt, queue_t head, <field>)
501 * elt - iteration variable
502 * <type> - what's in the queue (e.g., struct some_data)
503 * <field> - is the chain field in <type>
505 * This should only be used with Method 1 queue iteration (linkage chains)
507 #define qe_foreach_element(elt, head, field) \
508 for (elt = qe_element((head)->next, typeof(*(elt)), field); \
509 &((elt)->field) != (head); \
510 elt = qe_element((elt)->field.next, typeof(*(elt)), field))
513 * Macro: qe_foreach_element_safe
515 * Safely iterate over each _element_ in a queue
516 * where each queue_entry_t points to another
517 * queue_entry_t, i.e., managed by the [de|en]queue_head/
518 * [de|en]queue_tail / remqueue / etc. function.
520 * Use this iterator macro if you plan to remove the
521 * element, elt, from the queue during the iteration.
523 * qe_foreach_element_safe(<type> *elt, queue_t head, <field>)
524 * elt - iteration variable
525 * <type> - what's in the queue (e.g., struct some_data)
526 * <field> - is the chain field in <type>
528 * This should only be used with Method 1 queue iteration (linkage chains)
530 #define qe_foreach_element_safe(elt, head, field) \
531 for (typeof(*(elt)) *_nelt = qe_element(((head)->next)->next, typeof(*(elt)), field), \
532 *__ ## elt ## _unused_shadow __unused = \
533 (elt = qe_element((head)->next, typeof(*(elt)), field)); \
534 &((elt)->field) != (head); \
535 elt = _nelt, _nelt = qe_element((elt)->field.next, typeof(*(elt)), field)) \
537 #ifdef XNU_KERNEL_PRIVATE
539 /* Dequeue an element from head, or return NULL if the queue is empty */
540 #define qe_dequeue_head(head, type, field) ({ \
541 queue_entry_t _tmp_entry = dequeue_head((head)); \
542 type *_tmp_element = (type*) NULL; \
543 if (_tmp_entry != (queue_entry_t) NULL) \
544 _tmp_element = qe_element(_tmp_entry, type, field); \
548 /* Dequeue an element from tail, or return NULL if the queue is empty */
549 #define qe_dequeue_tail(head, type, field) ({ \
550 queue_entry_t _tmp_entry = dequeue_tail((head)); \
551 type *_tmp_element = (type*) NULL; \
552 if (_tmp_entry != (queue_entry_t) NULL) \
553 _tmp_element = qe_element(_tmp_entry, type, field); \
557 /* Peek at the first element, or return NULL if the queue is empty */
558 #define qe_queue_first(head, type, field) ({ \
559 queue_entry_t _tmp_entry = queue_first((head)); \
560 type *_tmp_element = (type*) NULL; \
561 if (_tmp_entry != (queue_entry_t) head) \
562 _tmp_element = qe_element(_tmp_entry, type, field); \
566 /* Peek at the last element, or return NULL if the queue is empty */
567 #define qe_queue_last(head, type, field) ({ \
568 queue_entry_t _tmp_entry = queue_last((head)); \
569 type *_tmp_element = (type*) NULL; \
570 if (_tmp_entry != (queue_entry_t) head) \
571 _tmp_element = qe_element(_tmp_entry, type, field); \
575 #endif /* XNU_KERNEL_PRIVATE */
580 * Initialize the given queue.
583 * queue_t q; \* MODIFIED *\
585 #define queue_init(q) \
592 * Macro: queue_head_init
594 * Initialize the given queue head
596 * void queue_head_init(q)
597 * queue_head_t q; \* MODIFIED *\
599 #define queue_head_init(q) \
603 * Macro: queue_chain_init
605 * Initialize the given queue chain element
607 * void queue_chain_init(q)
608 * queue_chain_t q; \* MODIFIED *\
610 #define queue_chain_init(q) \
616 * Returns the first entry in the queue,
618 * queue_entry_t queue_first(q)
619 * queue_t q; \* IN *\
621 #define queue_first(q) ((q)->next)
626 * Returns the entry after an item in the queue.
628 * queue_entry_t queue_next(qc)
631 #define queue_next(qc) ((qc)->next)
636 * Returns the last entry in the queue.
638 * queue_entry_t queue_last(q)
639 * queue_t q; \* IN *\
641 #define queue_last(q) ((q)->prev)
646 * Returns the entry before an item in the queue.
648 * queue_entry_t queue_prev(qc)
651 #define queue_prev(qc) ((qc)->prev)
656 * Tests whether a new entry is really the end of
659 * boolean_t queue_end(q, qe)
663 #define queue_end(q, qe) ((q) == (qe))
668 * Tests whether a queue is empty.
670 * boolean_t queue_empty(q)
673 #define queue_empty(q) queue_end((q), queue_first(q))
678 * queue_t _old : head of a queue whose items will be moved
679 * queue_t _new : new queue head onto which items will be moved
681 * Rebase queue items in _old onto _new then re-initialize
682 * the _old object to an empty queue.
683 * Equivalent to the queue_new_head Method 2 macro
685 * Similar to the queue_new_head macro, this macros is intented
686 * to function as an initializer method for '_new' and thus may
687 * leak any list items that happen to be on the '_new' list.
688 * This should only be used with Method 1 queue iteration (linkage chains)
690 static __inline__
void
691 movqueue(queue_t _old
, queue_t _new
)
693 queue_entry_t next_elt
, prev_elt
;
695 __QUEUE_ELT_VALIDATE((queue_entry_t
)_old
);
697 if (queue_empty(_old
)) {
703 * move the queue at _old to _new
704 * and re-initialize _old
706 next_elt
= _old
->next
;
707 prev_elt
= _old
->prev
;
709 _new
->next
= next_elt
;
710 _new
->prev
= prev_elt
;
711 next_elt
->prev
= _new
;
712 prev_elt
->next
= _new
;
717 /*----------------------------------------------------------------*/
719 * Macros that operate on generic structures. The queue
720 * chain may be at any location within the structure, and there
721 * may be more than one chain.
727 * Insert a new element at the tail of the queue.
729 * void queue_enter(q, elt, type, field)
732 * <type> is what's in our queue
733 * <field> is the chain field in (*<type>)
735 * This should only be used with Method 2 queue iteration (element chains)
737 * We insert a compiler barrier after setting the fields in the element
738 * to ensure that the element is updated before being added to the queue,
739 * which is especially important because stackshot, which operates from
740 * debugger context, iterates several queues that use this macro (the tasks
741 * lists and threads lists) without locks. Without this barrier, the
742 * compiler may re-order the instructions for this macro in a way that
743 * could cause stackshot to trip over an inconsistent queue during
746 #define queue_enter(head, elt, type, field) \
748 queue_entry_t __prev; \
750 __prev = (head)->prev; \
751 (elt)->field.prev = __prev; \
752 (elt)->field.next = head; \
753 __compiler_barrier(); \
754 if ((head) == __prev) { \
755 (head)->next = (queue_entry_t) (elt); \
758 ((type)(void *)__prev)->field.next = \
759 (queue_entry_t)(elt); \
761 (head)->prev = (queue_entry_t) elt; \
765 * Macro: queue_enter_first
767 * Insert a new element at the head of the queue.
769 * void queue_enter_first(q, elt, type, field)
772 * <type> is what's in our queue
773 * <field> is the chain field in (*<type>)
775 * This should only be used with Method 2 queue iteration (element chains)
777 #define queue_enter_first(head, elt, type, field) \
779 queue_entry_t __next; \
781 __next = (head)->next; \
782 if ((head) == __next) { \
783 (head)->prev = (queue_entry_t) (elt); \
786 ((type)(void *)__next)->field.prev = \
787 (queue_entry_t)(elt); \
789 (elt)->field.next = __next; \
790 (elt)->field.prev = head; \
791 (head)->next = (queue_entry_t) elt; \
795 * Macro: queue_insert_before
797 * Insert a new element before a given element.
799 * void queue_insert_before(q, elt, cur, type, field)
803 * <type> is what's in our queue
804 * <field> is the chain field in (*<type>)
806 * This should only be used with Method 2 queue iteration (element chains)
808 #define queue_insert_before(head, elt, cur, type, field) \
810 queue_entry_t __prev; \
812 if ((head) == (queue_entry_t)(cur)) { \
813 (elt)->field.next = (head); \
814 if ((head)->next == (head)) { /* only element */ \
815 (elt)->field.prev = (head); \
816 (head)->next = (queue_entry_t)(elt); \
817 } else { /* last element */ \
818 __prev = (elt)->field.prev = (head)->prev; \
819 ((type)(void *)__prev)->field.next = \
820 (queue_entry_t)(elt); \
822 (head)->prev = (queue_entry_t)(elt); \
824 (elt)->field.next = (queue_entry_t)(cur); \
825 if ((head)->next == (queue_entry_t)(cur)) { \
826 /* first element */ \
827 (elt)->field.prev = (head); \
828 (head)->next = (queue_entry_t)(elt); \
829 } else { /* middle element */ \
830 __prev = (elt)->field.prev = (cur)->field.prev; \
831 ((type)(void *)__prev)->field.next = \
832 (queue_entry_t)(elt); \
834 (cur)->field.prev = (queue_entry_t)(elt); \
839 * Macro: queue_insert_after
841 * Insert a new element after a given element.
843 * void queue_insert_after(q, elt, cur, type, field)
847 * <type> is what's in our queue
848 * <field> is the chain field in (*<type>)
850 * This should only be used with Method 2 queue iteration (element chains)
852 #define queue_insert_after(head, elt, cur, type, field) \
854 queue_entry_t __next; \
856 if ((head) == (queue_entry_t)(cur)) { \
857 (elt)->field.prev = (head); \
858 if ((head)->next == (head)) { /* only element */ \
859 (elt)->field.next = (head); \
860 (head)->prev = (queue_entry_t)(elt); \
861 } else { /* first element */ \
862 __next = (elt)->field.next = (head)->next; \
863 ((type)(void *)__next)->field.prev = \
864 (queue_entry_t)(elt); \
866 (head)->next = (queue_entry_t)(elt); \
868 (elt)->field.prev = (queue_entry_t)(cur); \
869 if ((head)->prev == (queue_entry_t)(cur)) { \
871 (elt)->field.next = (head); \
872 (head)->prev = (queue_entry_t)(elt); \
873 } else { /* middle element */ \
874 __next = (elt)->field.next = (cur)->field.next; \
875 ((type)(void *)__next)->field.prev = \
876 (queue_entry_t)(elt); \
878 (cur)->field.next = (queue_entry_t)(elt); \
883 * Macro: queue_field [internal use only]
885 * Find the queue_chain_t (or queue_t) for the
886 * given element (thing) in the given queue (head)
888 * This should only be used with Method 2 queue iteration (element chains)
890 #define queue_field(head, thing, type, field) \
891 (((head) == (thing)) ? (head) : &((type)(void *)(thing))->field)
894 * Macro: queue_remove
896 * Remove an arbitrary item from the queue.
898 * void queue_remove(q, qe, type, field)
899 * arguments as in queue_enter
901 * This should only be used with Method 2 queue iteration (element chains)
903 #define queue_remove(head, elt, type, field) \
905 queue_entry_t __next, __prev; \
907 __next = (elt)->field.next; \
908 __prev = (elt)->field.prev; \
910 if ((head) == __next) \
911 (head)->prev = __prev; \
913 ((type)(void *)__next)->field.prev = __prev; \
915 if ((head) == __prev) \
916 (head)->next = __next; \
918 ((type)(void *)__prev)->field.next = __next; \
920 (elt)->field.next = NULL; \
921 (elt)->field.prev = NULL; \
925 * Macro: queue_remove_first
927 * Remove and return the entry at the head of
930 * queue_remove_first(head, entry, type, field)
931 * entry is returned by reference
933 * This should only be used with Method 2 queue iteration (element chains)
935 #define queue_remove_first(head, entry, type, field) \
937 queue_entry_t __next; \
939 (entry) = (type)(void *) ((head)->next); \
940 __next = (entry)->field.next; \
942 if ((head) == __next) \
943 (head)->prev = (head); \
945 ((type)(void *)(__next))->field.prev = (head); \
946 (head)->next = __next; \
948 (entry)->field.next = NULL; \
949 (entry)->field.prev = NULL; \
953 * Macro: queue_remove_last
955 * Remove and return the entry at the tail of
958 * queue_remove_last(head, entry, type, field)
959 * entry is returned by reference
961 * This should only be used with Method 2 queue iteration (element chains)
963 #define queue_remove_last(head, entry, type, field) \
965 queue_entry_t __prev; \
967 (entry) = (type)(void *) ((head)->prev); \
968 __prev = (entry)->field.prev; \
970 if ((head) == __prev) \
971 (head)->next = (head); \
973 ((type)(void *)(__prev))->field.next = (head); \
974 (head)->prev = __prev; \
976 (entry)->field.next = NULL; \
977 (entry)->field.prev = NULL; \
981 * Macro: queue_assign
983 * This should only be used with Method 2 queue iteration (element chains)
985 #define queue_assign(to, from, type, field) \
987 ((type)(void *)((from)->prev))->field.next = (to); \
988 ((type)(void *)((from)->next))->field.prev = (to); \
993 * Macro: queue_new_head
995 * rebase old queue to new queue head
997 * queue_new_head(old, new, type, field)
1000 * <type> is what's in our queue
1001 * <field> is the chain field in (*<type>)
1003 * This should only be used with Method 2 queue iteration (element chains)
1005 #define queue_new_head(old, new, type, field) \
1007 if (!queue_empty(old)) { \
1009 ((type)(void *)((new)->next))->field.prev = \
1011 ((type)(void *)((new)->prev))->field.next = \
1019 * Macro: queue_iterate
1021 * iterate over each item in the queue.
1022 * Generates a 'for' loop, setting elt to
1023 * each item in turn (by reference).
1025 * queue_iterate(q, elt, type, field)
1028 * <type> is what's in our queue
1029 * <field> is the chain field in (*<type>)
1031 * This should only be used with Method 2 queue iteration (element chains)
1033 #define queue_iterate(head, elt, type, field) \
1034 for ((elt) = (type)(void *) queue_first(head); \
1035 !queue_end((head), (queue_entry_t)(elt)); \
1036 (elt) = (type)(void *) queue_next(&(elt)->field))
1041 #endif /* _KERN_QUEUE_H_ */