Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 5 | * |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 6 | * You may obtain a copy of the License at: |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef included_dlist_h |
| 18 | #define included_dlist_h |
| 19 | |
| 20 | #include <stdarg.h> |
| 21 | #include <vppinfra/clib.h> |
| 22 | #include <vppinfra/vec.h> |
| 23 | #include <vppinfra/pool.h> |
| 24 | #include <vppinfra/error.h> |
| 25 | #include <vppinfra/format.h> |
| 26 | #include <vppinfra/cache.h> |
| 27 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 28 | typedef struct |
| 29 | { |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 30 | u32 next; |
| 31 | u32 prev; |
| 32 | u32 value; |
| 33 | } dlist_elt_t; |
| 34 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 35 | static inline void |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 36 | clib_dlist_init (dlist_elt_t * pool, u32 index) |
| 37 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 38 | dlist_elt_t *head = pool_elt_at_index (pool, index); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 39 | clib_memset (head, 0xFF, sizeof (*head)); |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 40 | } |
| 41 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 42 | static inline void |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 43 | clib_dlist_addtail (dlist_elt_t * pool, u32 head_index, u32 new_index) |
| 44 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 45 | dlist_elt_t *head = pool_elt_at_index (pool, head_index); |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 46 | u32 old_last_index; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 47 | dlist_elt_t *old_last; |
| 48 | dlist_elt_t *new; |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 49 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 50 | ASSERT (head->value == ~0); |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 51 | |
| 52 | new = pool_elt_at_index (pool, new_index); |
| 53 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 54 | if (PREDICT_FALSE (head->next == ~0)) |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 55 | { |
| 56 | head->next = head->prev = new_index; |
| 57 | new->next = new->prev = head_index; |
| 58 | return; |
| 59 | } |
| 60 | |
| 61 | old_last_index = head->prev; |
| 62 | old_last = pool_elt_at_index (pool, old_last_index); |
| 63 | |
| 64 | new->next = old_last->next; |
| 65 | new->prev = old_last_index; |
| 66 | old_last->next = new_index; |
| 67 | head->prev = new_index; |
| 68 | } |
| 69 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 70 | static inline void |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 71 | clib_dlist_addhead (dlist_elt_t * pool, u32 head_index, u32 new_index) |
| 72 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 73 | dlist_elt_t *head = pool_elt_at_index (pool, head_index); |
| 74 | dlist_elt_t *old_first; |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 75 | u32 old_first_index; |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 76 | dlist_elt_t *new; |
| 77 | |
| 78 | ASSERT (head->value == ~0); |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 79 | |
| 80 | new = pool_elt_at_index (pool, new_index); |
| 81 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 82 | if (PREDICT_FALSE (head->next == ~0)) |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 83 | { |
| 84 | head->next = head->prev = new_index; |
| 85 | new->next = new->prev = head_index; |
| 86 | return; |
| 87 | } |
| 88 | |
| 89 | old_first_index = head->next; |
| 90 | old_first = pool_elt_at_index (pool, old_first_index); |
| 91 | |
| 92 | new->next = old_first_index; |
| 93 | new->prev = old_first->prev; |
| 94 | old_first->prev = new_index; |
| 95 | head->next = new_index; |
| 96 | } |
| 97 | |
| 98 | static inline void |
| 99 | clib_dlist_remove (dlist_elt_t * pool, u32 index) |
| 100 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 101 | dlist_elt_t *elt = pool_elt_at_index (pool, index); |
| 102 | dlist_elt_t *next_elt, *prev_elt; |
| 103 | |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 104 | /* listhead, not so much */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 105 | ASSERT (elt->value != ~0); |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 106 | |
| 107 | next_elt = pool_elt_at_index (pool, elt->next); |
| 108 | prev_elt = pool_elt_at_index (pool, elt->prev); |
| 109 | |
| 110 | next_elt->prev = elt->prev; |
| 111 | prev_elt->next = elt->next; |
| 112 | |
| 113 | elt->prev = elt->next = ~0; |
| 114 | } |
| 115 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 116 | static inline u32 |
| 117 | clib_dlist_remove_head (dlist_elt_t * pool, u32 head_index) |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 118 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 119 | dlist_elt_t *head = pool_elt_at_index (pool, head_index); |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 120 | u32 rv; |
| 121 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 122 | ASSERT (head->value == ~0); |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 123 | |
Neale Ranns | 32e1c01 | 2016-11-22 17:07:28 +0000 | [diff] [blame] | 124 | if (head->next == ~0 || (head->next == head_index)) |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 125 | return ~0; |
| 126 | |
| 127 | rv = head->next; |
| 128 | clib_dlist_remove (pool, rv); |
| 129 | return rv; |
| 130 | } |
| 131 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 132 | static inline u32 |
| 133 | clib_dlist_remove_tail (dlist_elt_t * pool, u32 head_index) |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 134 | { |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 135 | dlist_elt_t *head = pool_elt_at_index (pool, head_index); |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 136 | u32 rv; |
| 137 | |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 138 | ASSERT (head->value == ~0); |
Dave Barach | 034fccc | 2016-06-24 18:53:21 -0400 | [diff] [blame] | 139 | |
| 140 | if (head->prev == ~0) |
| 141 | return ~0; |
| 142 | |
| 143 | rv = head->prev; |
| 144 | clib_dlist_remove (pool, rv); |
| 145 | return rv; |
| 146 | } |
| 147 | |
| 148 | #endif /* included_dlist_h */ |
Dave Barach | c379999 | 2016-08-15 11:12:27 -0400 | [diff] [blame] | 149 | |
| 150 | /* |
| 151 | * fd.io coding-style-patch-verification: ON |
| 152 | * |
| 153 | * Local Variables: |
| 154 | * eval: (c-set-style "gnu") |
| 155 | * End: |
| 156 | */ |