11fdeb165SXin LI /* $Id: list.h,v 1.6 2006/10/31 06:25:28 gmm Exp $ */
21fdeb165SXin LI /*-
3*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause
4718cf2ccSPedro F. Giffuni *
51fdeb165SXin LI * Copyright (C) 2005-2011 HighPoint Technologies, Inc.
61fdeb165SXin LI * All rights reserved.
71fdeb165SXin LI *
81fdeb165SXin LI * Redistribution and use in source and binary forms, with or without
91fdeb165SXin LI * modification, are permitted provided that the following conditions
101fdeb165SXin LI * are met:
111fdeb165SXin LI * 1. Redistributions of source code must retain the above copyright
121fdeb165SXin LI * notice, this list of conditions and the following disclaimer.
131fdeb165SXin LI * 2. Redistributions in binary form must reproduce the above copyright
141fdeb165SXin LI * notice, this list of conditions and the following disclaimer in the
151fdeb165SXin LI * documentation and/or other materials provided with the distribution.
161fdeb165SXin LI *
171fdeb165SXin LI * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
181fdeb165SXin LI * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
191fdeb165SXin LI * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
201fdeb165SXin LI * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
211fdeb165SXin LI * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
221fdeb165SXin LI * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
231fdeb165SXin LI * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
241fdeb165SXin LI * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
251fdeb165SXin LI * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
261fdeb165SXin LI * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
271fdeb165SXin LI * SUCH DAMAGE.
281fdeb165SXin LI */
291fdeb165SXin LI #include <dev/hptnr/hptnr_config.h>
301fdeb165SXin LI #ifndef _HPT_LIST_H_
311fdeb165SXin LI #define _HPT_LIST_H_
321fdeb165SXin LI
331fdeb165SXin LI #ifndef _LINUX_LIST_H
341fdeb165SXin LI
351fdeb165SXin LI #ifndef HPT_INLINE
361fdeb165SXin LI #define HPT_INLINE __inline
371fdeb165SXin LI #endif
381fdeb165SXin LI
391fdeb165SXin LI struct list_head {
401fdeb165SXin LI struct list_head *next, *prev;
411fdeb165SXin LI };
421fdeb165SXin LI
431fdeb165SXin LI #define INIT_LIST_HEAD(ptr) do { (ptr)->next = (ptr); (ptr)->prev = (ptr); } while (0)
441fdeb165SXin LI
__list_add(struct list_head * _new,struct list_head * prev,struct list_head * next)451fdeb165SXin LI static HPT_INLINE void __list_add(struct list_head * _new, struct list_head * prev, struct list_head * next)
461fdeb165SXin LI {
471fdeb165SXin LI next->prev = _new;
481fdeb165SXin LI _new->next = next;
491fdeb165SXin LI _new->prev = prev;
501fdeb165SXin LI prev->next = _new;
511fdeb165SXin LI }
521fdeb165SXin LI
list_add(struct list_head * _new,struct list_head * head)531fdeb165SXin LI static HPT_INLINE void list_add(struct list_head *_new, struct list_head *head)
541fdeb165SXin LI {
551fdeb165SXin LI __list_add(_new, head, head->next);
561fdeb165SXin LI }
571fdeb165SXin LI
list_add_tail(struct list_head * _new,struct list_head * head)581fdeb165SXin LI static HPT_INLINE void list_add_tail(struct list_head *_new, struct list_head *head)
591fdeb165SXin LI {
601fdeb165SXin LI __list_add(_new, head->prev, head);
611fdeb165SXin LI }
621fdeb165SXin LI
__list_del(struct list_head * prev,struct list_head * next)631fdeb165SXin LI static HPT_INLINE void __list_del(struct list_head * prev, struct list_head * next)
641fdeb165SXin LI {
651fdeb165SXin LI next->prev = prev;
661fdeb165SXin LI prev->next = next;
671fdeb165SXin LI }
681fdeb165SXin LI
list_del(struct list_head * entry)691fdeb165SXin LI static HPT_INLINE void list_del(struct list_head *entry)
701fdeb165SXin LI {
711fdeb165SXin LI __list_del(entry->prev, entry->next);
721fdeb165SXin LI }
731fdeb165SXin LI
list_del_init(struct list_head * entry)741fdeb165SXin LI static HPT_INLINE void list_del_init(struct list_head *entry)
751fdeb165SXin LI {
761fdeb165SXin LI __list_del(entry->prev, entry->next);
771fdeb165SXin LI INIT_LIST_HEAD(entry);
781fdeb165SXin LI }
791fdeb165SXin LI
list_empty(struct list_head * head)801fdeb165SXin LI static HPT_INLINE int list_empty(struct list_head *head)
811fdeb165SXin LI {
821fdeb165SXin LI HPT_ASSERT(!(head->next==head && head->prev!=head));
831fdeb165SXin LI return head->next == head;
841fdeb165SXin LI }
851fdeb165SXin LI
__list_splice(struct list_head * list,struct list_head * head)861fdeb165SXin LI static HPT_INLINE void __list_splice(struct list_head *list,
871fdeb165SXin LI struct list_head *head)
881fdeb165SXin LI {
891fdeb165SXin LI struct list_head *first = list->next;
901fdeb165SXin LI struct list_head *last = list->prev;
911fdeb165SXin LI struct list_head *at = head->next;
921fdeb165SXin LI
931fdeb165SXin LI first->prev = head;
941fdeb165SXin LI head->next = first;
951fdeb165SXin LI
961fdeb165SXin LI last->next = at;
971fdeb165SXin LI at->prev = last;
981fdeb165SXin LI }
991fdeb165SXin LI
list_splice(struct list_head * list,struct list_head * head)1001fdeb165SXin LI static HPT_INLINE void list_splice(struct list_head *list, struct list_head *head)
1011fdeb165SXin LI {
1021fdeb165SXin LI if (!list_empty(list))
1031fdeb165SXin LI __list_splice(list, head);
1041fdeb165SXin LI }
1051fdeb165SXin LI
list_splice_init(struct list_head * list,struct list_head * head)1061fdeb165SXin LI static HPT_INLINE void list_splice_init(struct list_head *list, struct list_head *head)
1071fdeb165SXin LI {
1081fdeb165SXin LI if (!list_empty(list)) {
1091fdeb165SXin LI __list_splice(list, head);
1101fdeb165SXin LI INIT_LIST_HEAD(list);
1111fdeb165SXin LI }
1121fdeb165SXin LI }
1131fdeb165SXin LI
1141fdeb165SXin LI #define list_entry(ptr, type, member) \
1151fdeb165SXin LI ((type *)((char *)(ptr)-(HPT_UPTR)(&((type *)0)->member)))
1161fdeb165SXin LI
1171fdeb165SXin LI #define list_for_each(pos, head) \
1181fdeb165SXin LI for (pos = (head)->next; pos != (head); pos = pos->next)
1191fdeb165SXin LI
1201fdeb165SXin LI #define list_for_each_safe(pos, n, head) \
1211fdeb165SXin LI for (pos = (head)->next, n = pos->next; pos != (head); \
1221fdeb165SXin LI pos = n, n = pos->next)
1231fdeb165SXin LI
1241fdeb165SXin LI #define get_first_item(attached, type, member) \
1251fdeb165SXin LI ((type *)((char *)((attached)->next)-(HPT_UPTR)(&((type *)0)->member)))
1261fdeb165SXin LI
1271fdeb165SXin LI #endif
1281fdeb165SXin LI
1291fdeb165SXin LI #endif
130