Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [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. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 16 | #include <svm/svm_fifo.h> |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 17 | #include <vppinfra/cpu.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 18 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 19 | static inline u8 |
| 20 | position_lt (svm_fifo_t * f, u32 a, u32 b) |
| 21 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 22 | return (ooo_segment_distance_from_tail (f, a) |
| 23 | < ooo_segment_distance_from_tail (f, b)); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | static inline u8 |
| 27 | position_leq (svm_fifo_t * f, u32 a, u32 b) |
| 28 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 29 | return (ooo_segment_distance_from_tail (f, a) |
| 30 | <= ooo_segment_distance_from_tail (f, b)); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | static inline u8 |
| 34 | position_gt (svm_fifo_t * f, u32 a, u32 b) |
| 35 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 36 | return (ooo_segment_distance_from_tail (f, a) |
| 37 | > ooo_segment_distance_from_tail (f, b)); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | static inline u32 |
| 41 | position_diff (svm_fifo_t * f, u32 posa, u32 posb) |
| 42 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 43 | return ooo_segment_distance_from_tail (f, posa) |
| 44 | - ooo_segment_distance_from_tail (f, posb); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | static inline u32 |
| 48 | ooo_segment_end_pos (svm_fifo_t * f, ooo_segment_t * s) |
| 49 | { |
| 50 | return (s->start + s->length) % f->nitems; |
| 51 | } |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 52 | |
| 53 | u8 * |
| 54 | format_ooo_segment (u8 * s, va_list * args) |
| 55 | { |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 56 | svm_fifo_t *f = va_arg (*args, svm_fifo_t *); |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 57 | ooo_segment_t *seg = va_arg (*args, ooo_segment_t *); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 58 | u32 normalized_start = (seg->start + f->nitems - f->tail) % f->nitems; |
| 59 | s = format (s, "[%u, %u], len %u, next %d, prev %d", normalized_start, |
| 60 | (normalized_start + seg->length) % f->nitems, seg->length, |
| 61 | seg->next, seg->prev); |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 62 | return s; |
| 63 | } |
| 64 | |
| 65 | u8 * |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 66 | svm_fifo_dump_trace (u8 * s, svm_fifo_t * f) |
| 67 | { |
| 68 | #if SVM_FIFO_TRACE |
| 69 | svm_fifo_trace_elem_t *seg = 0; |
| 70 | int i = 0; |
| 71 | |
| 72 | if (f->trace) |
| 73 | { |
| 74 | vec_foreach (seg, f->trace) |
| 75 | { |
| 76 | s = format (s, "{%u, %u, %u}, ", seg->offset, seg->len, seg->action); |
| 77 | i++; |
| 78 | if (i % 5 == 0) |
| 79 | s = format (s, "\n"); |
| 80 | } |
| 81 | s = format (s, "\n"); |
| 82 | } |
| 83 | return s; |
| 84 | #else |
| 85 | return 0; |
| 86 | #endif |
| 87 | } |
| 88 | |
| 89 | u8 * |
| 90 | svm_fifo_replay (u8 * s, svm_fifo_t * f, u8 no_read, u8 verbose) |
| 91 | { |
| 92 | int i, trace_len; |
| 93 | u8 *data = 0; |
| 94 | svm_fifo_trace_elem_t *trace; |
| 95 | u32 offset; |
| 96 | svm_fifo_t *dummy_fifo; |
| 97 | |
| 98 | if (!f) |
| 99 | return s; |
| 100 | |
| 101 | #if SVM_FIFO_TRACE |
| 102 | trace = f->trace; |
| 103 | trace_len = vec_len (trace); |
| 104 | #else |
| 105 | trace = 0; |
| 106 | trace_len = 0; |
| 107 | #endif |
| 108 | |
| 109 | dummy_fifo = svm_fifo_create (f->nitems); |
| 110 | memset (f->data, 0xFF, f->nitems); |
| 111 | |
| 112 | vec_validate (data, f->nitems); |
| 113 | for (i = 0; i < vec_len (data); i++) |
| 114 | data[i] = i; |
| 115 | |
| 116 | for (i = 0; i < trace_len; i++) |
| 117 | { |
| 118 | offset = trace[i].offset; |
| 119 | if (trace[i].action == 1) |
| 120 | { |
| 121 | if (verbose) |
| 122 | s = format (s, "adding [%u, %u]:", trace[i].offset, |
| 123 | (trace[i].offset + |
| 124 | trace[i].len) % dummy_fifo->nitems); |
| 125 | svm_fifo_enqueue_with_offset (dummy_fifo, trace[i].offset, |
| 126 | trace[i].len, &data[offset]); |
| 127 | } |
| 128 | else if (trace[i].action == 2) |
| 129 | { |
| 130 | if (verbose) |
| 131 | s = format (s, "adding [%u, %u]:", 0, trace[i].len); |
| 132 | svm_fifo_enqueue_nowait (dummy_fifo, trace[i].len, &data[offset]); |
| 133 | } |
| 134 | else if (!no_read) |
| 135 | { |
| 136 | if (verbose) |
| 137 | s = format (s, "read: %u", trace[i].len); |
| 138 | svm_fifo_dequeue_drop (dummy_fifo, trace[i].len); |
| 139 | } |
| 140 | if (verbose) |
| 141 | s = format (s, "%U", format_svm_fifo, dummy_fifo, 1); |
| 142 | } |
| 143 | |
| 144 | s = format (s, "result: %U", format_svm_fifo, dummy_fifo, 1); |
| 145 | |
| 146 | return s; |
| 147 | } |
| 148 | |
| 149 | u8 * |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 150 | format_ooo_list (u8 * s, va_list * args) |
| 151 | { |
| 152 | svm_fifo_t *f = va_arg (*args, svm_fifo_t *); |
| 153 | u32 ooo_segment_index = f->ooos_list_head; |
| 154 | ooo_segment_t *seg; |
| 155 | |
| 156 | while (ooo_segment_index != OOO_SEGMENT_INVALID_INDEX) |
| 157 | { |
| 158 | seg = pool_elt_at_index (f->ooo_segments, ooo_segment_index); |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 159 | s = format (s, " %U\n", format_ooo_segment, f, seg); |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 160 | ooo_segment_index = seg->next; |
| 161 | } |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 162 | |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 163 | return s; |
| 164 | } |
| 165 | |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 166 | u8 * |
| 167 | format_svm_fifo (u8 * s, va_list * args) |
| 168 | { |
| 169 | svm_fifo_t *f = va_arg (*args, svm_fifo_t *); |
| 170 | int verbose = va_arg (*args, int); |
| 171 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 172 | if (!s) |
| 173 | return s; |
| 174 | |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 175 | s = format (s, "cursize %u nitems %u has_event %d\n", |
| 176 | f->cursize, f->nitems, f->has_event); |
Florin Coras | b2371c2 | 2018-05-31 17:14:10 -0700 | [diff] [blame] | 177 | s = format (s, " head %d tail %d segment manager %u\n", f->head, f->tail, |
| 178 | f->segment_manager); |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 179 | |
| 180 | if (verbose > 1) |
| 181 | s = format |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 182 | (s, " vpp session %d thread %d app session %d thread %d\n", |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 183 | f->master_session_index, f->master_thread_index, |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 184 | f->client_session_index, f->client_thread_index); |
| 185 | |
| 186 | if (verbose) |
| 187 | { |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 188 | s = format (s, " ooo pool %d active elts newest %u\n", |
| 189 | pool_elts (f->ooo_segments), f->ooos_newest); |
Florin Coras | bb292f4 | 2017-05-19 09:49:19 -0700 | [diff] [blame] | 190 | if (svm_fifo_has_ooo_data (f)) |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 191 | s = format (s, " %U", format_ooo_list, f, verbose); |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 192 | } |
| 193 | return s; |
| 194 | } |
| 195 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 196 | /** create an svm fifo, in the current heap. Fails vs blow up the process */ |
| 197 | svm_fifo_t * |
| 198 | svm_fifo_create (u32 data_size_in_bytes) |
| 199 | { |
| 200 | svm_fifo_t *f; |
Dave Barach | 818eb54 | 2017-08-02 13:56:13 -0400 | [diff] [blame] | 201 | u32 rounded_data_size; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 202 | |
Dave Barach | 818eb54 | 2017-08-02 13:56:13 -0400 | [diff] [blame] | 203 | /* always round fifo data size to the next highest power-of-two */ |
| 204 | rounded_data_size = (1 << (max_log2 (data_size_in_bytes))); |
| 205 | f = clib_mem_alloc_aligned_or_null (sizeof (*f) + rounded_data_size, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 206 | CLIB_CACHE_LINE_BYTES); |
| 207 | if (f == 0) |
| 208 | return 0; |
| 209 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 210 | memset (f, 0, sizeof (*f)); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 211 | f->nitems = data_size_in_bytes; |
| 212 | f->ooos_list_head = OOO_SEGMENT_INVALID_INDEX; |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 213 | f->refcnt = 1; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 214 | return (f); |
| 215 | } |
| 216 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 217 | void |
| 218 | svm_fifo_free (svm_fifo_t * f) |
| 219 | { |
Dave Barach | 52851e6 | 2017-08-07 09:35:25 -0400 | [diff] [blame] | 220 | ASSERT (f->refcnt > 0); |
| 221 | |
| 222 | if (--f->refcnt == 0) |
| 223 | { |
| 224 | pool_free (f->ooo_segments); |
| 225 | clib_mem_free (f); |
| 226 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 227 | } |
| 228 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 229 | always_inline ooo_segment_t * |
| 230 | ooo_segment_new (svm_fifo_t * f, u32 start, u32 length) |
| 231 | { |
| 232 | ooo_segment_t *s; |
| 233 | |
| 234 | pool_get (f->ooo_segments, s); |
| 235 | |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 236 | s->start = start; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 237 | s->length = length; |
| 238 | |
| 239 | s->prev = s->next = OOO_SEGMENT_INVALID_INDEX; |
| 240 | |
| 241 | return s; |
| 242 | } |
| 243 | |
| 244 | always_inline void |
| 245 | ooo_segment_del (svm_fifo_t * f, u32 index) |
| 246 | { |
| 247 | ooo_segment_t *cur, *prev = 0, *next = 0; |
| 248 | cur = pool_elt_at_index (f->ooo_segments, index); |
| 249 | |
| 250 | if (cur->next != OOO_SEGMENT_INVALID_INDEX) |
| 251 | { |
| 252 | next = pool_elt_at_index (f->ooo_segments, cur->next); |
| 253 | next->prev = cur->prev; |
| 254 | } |
| 255 | |
| 256 | if (cur->prev != OOO_SEGMENT_INVALID_INDEX) |
| 257 | { |
| 258 | prev = pool_elt_at_index (f->ooo_segments, cur->prev); |
| 259 | prev->next = cur->next; |
| 260 | } |
| 261 | else |
| 262 | { |
| 263 | f->ooos_list_head = cur->next; |
| 264 | } |
| 265 | |
| 266 | pool_put (f->ooo_segments, cur); |
| 267 | } |
| 268 | |
| 269 | /** |
| 270 | * Add segment to fifo's out-of-order segment list. Takes care of merging |
| 271 | * adjacent segments and removing overlapping ones. |
| 272 | */ |
| 273 | static void |
| 274 | ooo_segment_add (svm_fifo_t * f, u32 offset, u32 length) |
| 275 | { |
| 276 | ooo_segment_t *s, *new_s, *prev, *next, *it; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 277 | u32 new_index, s_end_pos, s_index; |
| 278 | u32 normalized_position, normalized_end_position; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 279 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 280 | ASSERT (offset + length <= ooo_segment_distance_from_tail (f, f->head)); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 281 | normalized_position = (f->tail + offset) % f->nitems; |
| 282 | normalized_end_position = (f->tail + offset + length) % f->nitems; |
| 283 | |
| 284 | f->ooos_newest = OOO_SEGMENT_INVALID_INDEX; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 285 | |
| 286 | if (f->ooos_list_head == OOO_SEGMENT_INVALID_INDEX) |
| 287 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 288 | s = ooo_segment_new (f, normalized_position, length); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 289 | f->ooos_list_head = s - f->ooo_segments; |
| 290 | f->ooos_newest = f->ooos_list_head; |
| 291 | return; |
| 292 | } |
| 293 | |
| 294 | /* Find first segment that starts after new segment */ |
| 295 | s = pool_elt_at_index (f->ooo_segments, f->ooos_list_head); |
| 296 | while (s->next != OOO_SEGMENT_INVALID_INDEX |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 297 | && position_lt (f, s->start, normalized_position)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 298 | s = pool_elt_at_index (f->ooo_segments, s->next); |
| 299 | |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 300 | /* If we have a previous and we overlap it, use it as starting point */ |
| 301 | prev = ooo_segment_get_prev (f, s); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 302 | if (prev |
| 303 | && position_leq (f, normalized_position, ooo_segment_end_pos (f, prev))) |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 304 | { |
| 305 | s = prev; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 306 | s_end_pos = ooo_segment_end_pos (f, s); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 307 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 308 | /* Since we have previous, normalized start position cannot be smaller |
| 309 | * than prev->start. Check tail */ |
| 310 | ASSERT (position_lt (f, s->start, normalized_position)); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 311 | goto check_tail; |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 312 | } |
| 313 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 314 | s_index = s - f->ooo_segments; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 315 | s_end_pos = ooo_segment_end_pos (f, s); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 316 | |
| 317 | /* No overlap, add before current segment */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 318 | if (position_lt (f, normalized_end_position, s->start)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 319 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 320 | new_s = ooo_segment_new (f, normalized_position, length); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 321 | new_index = new_s - f->ooo_segments; |
| 322 | |
| 323 | /* Pool might've moved, get segment again */ |
| 324 | s = pool_elt_at_index (f->ooo_segments, s_index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 325 | if (s->prev != OOO_SEGMENT_INVALID_INDEX) |
| 326 | { |
| 327 | new_s->prev = s->prev; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 328 | prev = pool_elt_at_index (f->ooo_segments, new_s->prev); |
| 329 | prev->next = new_index; |
| 330 | } |
| 331 | else |
| 332 | { |
| 333 | /* New head */ |
| 334 | f->ooos_list_head = new_index; |
| 335 | } |
| 336 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 337 | new_s->next = s_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 338 | s->prev = new_index; |
| 339 | f->ooos_newest = new_index; |
| 340 | return; |
| 341 | } |
| 342 | /* No overlap, add after current segment */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 343 | else if (position_gt (f, normalized_position, s_end_pos)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 344 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 345 | new_s = ooo_segment_new (f, normalized_position, length); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 346 | new_index = new_s - f->ooo_segments; |
| 347 | |
| 348 | /* Pool might've moved, get segment again */ |
| 349 | s = pool_elt_at_index (f->ooo_segments, s_index); |
| 350 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 351 | /* Needs to be last */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 352 | ASSERT (s->next == OOO_SEGMENT_INVALID_INDEX); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 353 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 354 | new_s->prev = s_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 355 | s->next = new_index; |
| 356 | f->ooos_newest = new_index; |
| 357 | |
| 358 | return; |
| 359 | } |
| 360 | |
| 361 | /* |
| 362 | * Merge needed |
| 363 | */ |
| 364 | |
| 365 | /* Merge at head */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 366 | if (position_lt (f, normalized_position, s->start)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 367 | { |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 368 | s->start = normalized_position; |
| 369 | s->length = position_diff (f, s_end_pos, s->start); |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 370 | f->ooos_newest = s - f->ooo_segments; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 371 | } |
| 372 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 373 | check_tail: |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 374 | |
| 375 | /* Overlapping tail */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 376 | if (position_gt (f, normalized_end_position, s_end_pos)) |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 377 | { |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 378 | s->length = position_diff (f, normalized_end_position, s->start); |
| 379 | |
| 380 | /* Remove the completely overlapped segments in the tail */ |
| 381 | it = ooo_segment_next (f, s); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 382 | while (it && position_leq (f, ooo_segment_end_pos (f, it), |
| 383 | normalized_end_position)) |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 384 | { |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 385 | next = ooo_segment_next (f, it); |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 386 | ooo_segment_del (f, it - f->ooo_segments); |
| 387 | it = next; |
| 388 | } |
| 389 | |
| 390 | /* If partial overlap with last, merge */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 391 | if (it && position_leq (f, it->start, normalized_end_position)) |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 392 | { |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 393 | s->length = position_diff (f, ooo_segment_end_pos (f, it), |
| 394 | s->start); |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 395 | ooo_segment_del (f, it - f->ooo_segments); |
| 396 | } |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 397 | f->ooos_newest = s - f->ooo_segments; |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 398 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 399 | } |
| 400 | |
| 401 | /** |
| 402 | * Removes segments that can now be enqueued because the fifo's tail has |
| 403 | * advanced. Returns the number of bytes added to tail. |
| 404 | */ |
| 405 | static int |
| 406 | ooo_segment_try_collect (svm_fifo_t * f, u32 n_bytes_enqueued) |
| 407 | { |
| 408 | ooo_segment_t *s; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 409 | u32 index, bytes = 0; |
| 410 | i32 diff; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 411 | |
| 412 | s = pool_elt_at_index (f->ooo_segments, f->ooos_list_head); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 413 | diff = ooo_segment_distance_to_tail (f, s->start); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 414 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 415 | ASSERT (diff != n_bytes_enqueued); |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 416 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 417 | if (diff > n_bytes_enqueued) |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 418 | return 0; |
| 419 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 420 | /* If last tail update overlaps one/multiple ooo segments, remove them */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 421 | while (0 <= diff && diff < n_bytes_enqueued) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 422 | { |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 423 | index = s - f->ooo_segments; |
| 424 | |
| 425 | /* Segment end is beyond the tail. Advance tail and remove segment */ |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 426 | if (s->length > diff) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 427 | { |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 428 | bytes = s->length - diff; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 429 | f->tail += bytes; |
| 430 | f->tail %= f->nitems; |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 431 | ooo_segment_del (f, index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 432 | break; |
| 433 | } |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 434 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 435 | /* If we have next go on */ |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 436 | if (s->next != OOO_SEGMENT_INVALID_INDEX) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 437 | { |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 438 | s = pool_elt_at_index (f->ooo_segments, s->next); |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 439 | diff = ooo_segment_distance_to_tail (f, s->start); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 440 | ooo_segment_del (f, index); |
| 441 | } |
| 442 | /* End of search */ |
| 443 | else |
| 444 | { |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 445 | ooo_segment_del (f, index); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 446 | break; |
| 447 | } |
| 448 | } |
| 449 | |
Chris Luke | ab7b8d9 | 2017-09-07 07:40:13 -0400 | [diff] [blame] | 450 | ASSERT (bytes <= f->nitems); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 451 | return bytes; |
| 452 | } |
| 453 | |
| 454 | static int |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 455 | svm_fifo_enqueue_internal (svm_fifo_t * f, u32 max_bytes, |
| 456 | const u8 * copy_from_here) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 457 | { |
| 458 | u32 total_copy_bytes, first_copy_bytes, second_copy_bytes; |
| 459 | u32 cursize, nitems; |
| 460 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 461 | /* read cursize, which can only increase while we're working */ |
| 462 | cursize = svm_fifo_max_dequeue (f); |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 463 | f->ooos_newest = OOO_SEGMENT_INVALID_INDEX; |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 464 | |
| 465 | if (PREDICT_FALSE (cursize == f->nitems)) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 466 | return SVM_FIFO_FULL; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 467 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 468 | nitems = f->nitems; |
| 469 | |
| 470 | /* Number of bytes we're going to copy */ |
| 471 | total_copy_bytes = (nitems - cursize) < max_bytes ? |
| 472 | (nitems - cursize) : max_bytes; |
| 473 | |
| 474 | if (PREDICT_TRUE (copy_from_here != 0)) |
| 475 | { |
| 476 | /* Number of bytes in first copy segment */ |
| 477 | first_copy_bytes = ((nitems - f->tail) < total_copy_bytes) |
| 478 | ? (nitems - f->tail) : total_copy_bytes; |
| 479 | |
| 480 | clib_memcpy (&f->data[f->tail], copy_from_here, first_copy_bytes); |
| 481 | f->tail += first_copy_bytes; |
| 482 | f->tail = (f->tail == nitems) ? 0 : f->tail; |
| 483 | |
| 484 | /* Number of bytes in second copy segment, if any */ |
| 485 | second_copy_bytes = total_copy_bytes - first_copy_bytes; |
| 486 | if (second_copy_bytes) |
| 487 | { |
| 488 | clib_memcpy (&f->data[f->tail], copy_from_here + first_copy_bytes, |
| 489 | second_copy_bytes); |
| 490 | f->tail += second_copy_bytes; |
| 491 | f->tail = (f->tail == nitems) ? 0 : f->tail; |
| 492 | } |
| 493 | } |
| 494 | else |
| 495 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 496 | ASSERT (0); |
| 497 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 498 | /* Account for a zero-copy enqueue done elsewhere */ |
| 499 | ASSERT (max_bytes <= (nitems - cursize)); |
| 500 | f->tail += max_bytes; |
| 501 | f->tail = f->tail % nitems; |
| 502 | total_copy_bytes = max_bytes; |
| 503 | } |
| 504 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 505 | svm_fifo_trace_add (f, f->head, total_copy_bytes, 2); |
| 506 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 507 | /* Any out-of-order segments to collect? */ |
| 508 | if (PREDICT_FALSE (f->ooos_list_head != OOO_SEGMENT_INVALID_INDEX)) |
| 509 | total_copy_bytes += ooo_segment_try_collect (f, total_copy_bytes); |
| 510 | |
| 511 | /* Atomically increase the queue length */ |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 512 | ASSERT (cursize + total_copy_bytes <= nitems); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 513 | __sync_fetch_and_add (&f->cursize, total_copy_bytes); |
| 514 | |
| 515 | return (total_copy_bytes); |
| 516 | } |
| 517 | |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 518 | #define SVM_ENQUEUE_CLONE_TEMPLATE(arch, fn, tgt) \ |
| 519 | uword \ |
| 520 | __attribute__ ((flatten)) \ |
| 521 | __attribute__ ((target (tgt))) \ |
| 522 | CLIB_CPU_OPTIMIZED \ |
| 523 | fn ## _ ## arch ( svm_fifo_t * f, u32 max_bytes, u8 * copy_from_here) \ |
| 524 | { return fn (f, max_bytes, copy_from_here);} |
| 525 | |
| 526 | static int |
| 527 | svm_fifo_enqueue_nowait_ma (svm_fifo_t * f, u32 max_bytes, |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 528 | const u8 * copy_from_here) |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 529 | { |
| 530 | return svm_fifo_enqueue_internal (f, max_bytes, copy_from_here); |
| 531 | } |
| 532 | |
| 533 | foreach_march_variant (SVM_ENQUEUE_CLONE_TEMPLATE, |
| 534 | svm_fifo_enqueue_nowait_ma); |
| 535 | CLIB_MULTIARCH_SELECT_FN (svm_fifo_enqueue_nowait_ma); |
| 536 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 537 | int |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 538 | svm_fifo_enqueue_nowait (svm_fifo_t * f, u32 max_bytes, |
| 539 | const u8 * copy_from_here) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 540 | { |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 541 | #if CLIB_DEBUG > 0 |
| 542 | return svm_fifo_enqueue_nowait_ma (f, max_bytes, copy_from_here); |
| 543 | #else |
Florin Coras | 371ca50 | 2018-02-21 12:07:41 -0800 | [diff] [blame] | 544 | static int (*fp) (svm_fifo_t *, u32, const u8 *); |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 545 | |
| 546 | if (PREDICT_FALSE (fp == 0)) |
| 547 | fp = (void *) svm_fifo_enqueue_nowait_ma_multiarch_select (); |
| 548 | |
| 549 | return (*fp) (f, max_bytes, copy_from_here); |
| 550 | #endif |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 551 | } |
| 552 | |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 553 | /** |
| 554 | * Enqueue a future segment. |
| 555 | * |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 556 | * Two choices: either copies the entire segment, or copies nothing |
| 557 | * Returns 0 of the entire segment was copied |
| 558 | * Returns -1 if none of the segment was copied due to lack of space |
| 559 | */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 560 | static int |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 561 | svm_fifo_enqueue_with_offset_internal (svm_fifo_t * f, |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 562 | u32 offset, |
| 563 | u32 required_bytes, |
| 564 | u8 * copy_from_here) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 565 | { |
| 566 | u32 total_copy_bytes, first_copy_bytes, second_copy_bytes; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 567 | u32 cursize, nitems, normalized_offset; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 568 | |
| 569 | f->ooos_newest = OOO_SEGMENT_INVALID_INDEX; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 570 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 571 | /* read cursize, which can only increase while we're working */ |
| 572 | cursize = svm_fifo_max_dequeue (f); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 573 | nitems = f->nitems; |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 574 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 575 | ASSERT (required_bytes < nitems); |
| 576 | |
Florin Coras | f03a59a | 2017-06-09 21:07:32 -0700 | [diff] [blame] | 577 | normalized_offset = (f->tail + offset) % nitems; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 578 | |
| 579 | /* Will this request fit? */ |
Florin Coras | 1f152cd | 2017-08-18 19:28:03 -0700 | [diff] [blame] | 580 | if ((required_bytes + offset) > (nitems - cursize)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 581 | return -1; |
| 582 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 583 | svm_fifo_trace_add (f, offset, required_bytes, 1); |
| 584 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 585 | ooo_segment_add (f, offset, required_bytes); |
| 586 | |
| 587 | /* Number of bytes we're going to copy */ |
| 588 | total_copy_bytes = required_bytes; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 589 | |
| 590 | /* Number of bytes in first copy segment */ |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 591 | first_copy_bytes = ((nitems - normalized_offset) < total_copy_bytes) |
| 592 | ? (nitems - normalized_offset) : total_copy_bytes; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 593 | |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 594 | clib_memcpy (&f->data[normalized_offset], copy_from_here, first_copy_bytes); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 595 | |
| 596 | /* Number of bytes in second copy segment, if any */ |
| 597 | second_copy_bytes = total_copy_bytes - first_copy_bytes; |
| 598 | if (second_copy_bytes) |
| 599 | { |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 600 | normalized_offset += first_copy_bytes; |
| 601 | normalized_offset %= nitems; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 602 | |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 603 | ASSERT (normalized_offset == 0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 604 | |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 605 | clib_memcpy (&f->data[normalized_offset], |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 606 | copy_from_here + first_copy_bytes, second_copy_bytes); |
| 607 | } |
| 608 | |
| 609 | return (0); |
| 610 | } |
| 611 | |
| 612 | |
| 613 | int |
| 614 | svm_fifo_enqueue_with_offset (svm_fifo_t * f, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 615 | u32 offset, |
| 616 | u32 required_bytes, u8 * copy_from_here) |
| 617 | { |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 618 | return svm_fifo_enqueue_with_offset_internal (f, offset, required_bytes, |
| 619 | copy_from_here); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 620 | } |
| 621 | |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 622 | void |
| 623 | svm_fifo_overwrite_head (svm_fifo_t * f, u8 * data, u32 len) |
| 624 | { |
| 625 | u32 first_chunk; |
Florin Coras | 8e43d04 | 2018-05-04 15:46:57 -0700 | [diff] [blame] | 626 | first_chunk = f->nitems - f->head; |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 627 | ASSERT (len <= f->nitems); |
Florin Coras | 8e43d04 | 2018-05-04 15:46:57 -0700 | [diff] [blame] | 628 | if (len <= first_chunk) |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 629 | clib_memcpy (&f->data[f->head], data, len); |
| 630 | else |
| 631 | { |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 632 | clib_memcpy (&f->data[f->head], data, first_chunk); |
Florin Coras | 8e43d04 | 2018-05-04 15:46:57 -0700 | [diff] [blame] | 633 | clib_memcpy (&f->data[0], data + first_chunk, len - first_chunk); |
Florin Coras | 7fb0fe1 | 2018-04-09 09:24:52 -0700 | [diff] [blame] | 634 | } |
| 635 | } |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 636 | |
| 637 | static int |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 638 | svm_fifo_dequeue_internal (svm_fifo_t * f, u32 max_bytes, u8 * copy_here) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 639 | { |
| 640 | u32 total_copy_bytes, first_copy_bytes, second_copy_bytes; |
| 641 | u32 cursize, nitems; |
| 642 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 643 | /* read cursize, which can only increase while we're working */ |
| 644 | cursize = svm_fifo_max_dequeue (f); |
| 645 | if (PREDICT_FALSE (cursize == 0)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 646 | return -2; /* nothing in the fifo */ |
| 647 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 648 | nitems = f->nitems; |
| 649 | |
| 650 | /* Number of bytes we're going to copy */ |
| 651 | total_copy_bytes = (cursize < max_bytes) ? cursize : max_bytes; |
| 652 | |
| 653 | if (PREDICT_TRUE (copy_here != 0)) |
| 654 | { |
| 655 | /* Number of bytes in first copy segment */ |
| 656 | first_copy_bytes = ((nitems - f->head) < total_copy_bytes) |
| 657 | ? (nitems - f->head) : total_copy_bytes; |
| 658 | clib_memcpy (copy_here, &f->data[f->head], first_copy_bytes); |
| 659 | f->head += first_copy_bytes; |
| 660 | f->head = (f->head == nitems) ? 0 : f->head; |
| 661 | |
| 662 | /* Number of bytes in second copy segment, if any */ |
| 663 | second_copy_bytes = total_copy_bytes - first_copy_bytes; |
| 664 | if (second_copy_bytes) |
| 665 | { |
| 666 | clib_memcpy (copy_here + first_copy_bytes, |
| 667 | &f->data[f->head], second_copy_bytes); |
| 668 | f->head += second_copy_bytes; |
| 669 | f->head = (f->head == nitems) ? 0 : f->head; |
| 670 | } |
| 671 | } |
| 672 | else |
| 673 | { |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 674 | ASSERT (0); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 675 | /* Account for a zero-copy dequeue done elsewhere */ |
| 676 | ASSERT (max_bytes <= cursize); |
| 677 | f->head += max_bytes; |
| 678 | f->head = f->head % nitems; |
| 679 | cursize -= max_bytes; |
| 680 | total_copy_bytes = max_bytes; |
| 681 | } |
| 682 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 683 | ASSERT (f->head <= nitems); |
| 684 | ASSERT (cursize >= total_copy_bytes); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 685 | __sync_fetch_and_sub (&f->cursize, total_copy_bytes); |
| 686 | |
| 687 | return (total_copy_bytes); |
| 688 | } |
| 689 | |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 690 | static int |
| 691 | svm_fifo_dequeue_nowait_ma (svm_fifo_t * f, u32 max_bytes, u8 * copy_here) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 692 | { |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 693 | return svm_fifo_dequeue_internal (f, max_bytes, copy_here); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 694 | } |
| 695 | |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 696 | #define SVM_FIFO_DEQUEUE_CLONE_TEMPLATE(arch, fn, tgt) \ |
| 697 | uword \ |
| 698 | __attribute__ ((flatten)) \ |
| 699 | __attribute__ ((target (tgt))) \ |
| 700 | CLIB_CPU_OPTIMIZED \ |
| 701 | fn ## _ ## arch ( svm_fifo_t * f, u32 max_bytes, \ |
| 702 | u8 * copy_here) \ |
| 703 | { return fn (f, max_bytes, copy_here);} |
| 704 | |
| 705 | foreach_march_variant (SVM_FIFO_DEQUEUE_CLONE_TEMPLATE, |
| 706 | svm_fifo_dequeue_nowait_ma); |
| 707 | CLIB_MULTIARCH_SELECT_FN (svm_fifo_dequeue_nowait_ma); |
| 708 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 709 | int |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 710 | svm_fifo_dequeue_nowait (svm_fifo_t * f, u32 max_bytes, u8 * copy_here) |
| 711 | { |
| 712 | #if CLIB_DEBUG > 0 |
| 713 | return svm_fifo_dequeue_nowait_ma (f, max_bytes, copy_here); |
| 714 | #else |
| 715 | static int (*fp) (svm_fifo_t *, u32, u8 *); |
| 716 | |
| 717 | if (PREDICT_FALSE (fp == 0)) |
| 718 | fp = (void *) svm_fifo_dequeue_nowait_ma_multiarch_select (); |
| 719 | |
| 720 | return (*fp) (f, max_bytes, copy_here); |
| 721 | #endif |
| 722 | } |
| 723 | |
| 724 | static int |
| 725 | svm_fifo_peek_ma (svm_fifo_t * f, u32 relative_offset, u32 max_bytes, |
| 726 | u8 * copy_here) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 727 | { |
| 728 | u32 total_copy_bytes, first_copy_bytes, second_copy_bytes; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 729 | u32 cursize, nitems, real_head; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 730 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 731 | /* read cursize, which can only increase while we're working */ |
| 732 | cursize = svm_fifo_max_dequeue (f); |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 733 | if (PREDICT_FALSE (cursize < relative_offset)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 734 | return -2; /* nothing in the fifo */ |
| 735 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 736 | nitems = f->nitems; |
Florin Coras | b59a705 | 2017-04-18 22:07:29 -0700 | [diff] [blame] | 737 | real_head = f->head + relative_offset; |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 738 | real_head = real_head >= nitems ? real_head - nitems : real_head; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 739 | |
| 740 | /* Number of bytes we're going to copy */ |
Florin Coras | 93992a9 | 2017-05-24 18:03:56 -0700 | [diff] [blame] | 741 | total_copy_bytes = (cursize - relative_offset < max_bytes) ? |
| 742 | cursize - relative_offset : max_bytes; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 743 | |
| 744 | if (PREDICT_TRUE (copy_here != 0)) |
| 745 | { |
| 746 | /* Number of bytes in first copy segment */ |
| 747 | first_copy_bytes = |
Florin Coras | 6792ec0 | 2017-03-13 03:49:51 -0700 | [diff] [blame] | 748 | ((nitems - real_head) < total_copy_bytes) ? |
| 749 | (nitems - real_head) : total_copy_bytes; |
| 750 | clib_memcpy (copy_here, &f->data[real_head], first_copy_bytes); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 751 | |
| 752 | /* Number of bytes in second copy segment, if any */ |
| 753 | second_copy_bytes = total_copy_bytes - first_copy_bytes; |
| 754 | if (second_copy_bytes) |
| 755 | { |
| 756 | clib_memcpy (copy_here + first_copy_bytes, &f->data[0], |
| 757 | second_copy_bytes); |
| 758 | } |
| 759 | } |
| 760 | return total_copy_bytes; |
| 761 | } |
| 762 | |
Florin Coras | f6359c8 | 2017-06-19 12:26:09 -0400 | [diff] [blame] | 763 | #define SVM_FIFO_PEEK_CLONE_TEMPLATE(arch, fn, tgt) \ |
| 764 | uword \ |
| 765 | __attribute__ ((flatten)) \ |
| 766 | __attribute__ ((target (tgt))) \ |
| 767 | CLIB_CPU_OPTIMIZED \ |
| 768 | fn ## _ ## arch ( svm_fifo_t * f, u32 relative_offset, u32 max_bytes, \ |
| 769 | u8 * copy_here) \ |
| 770 | { return fn (f, relative_offset, max_bytes, copy_here);} |
| 771 | |
| 772 | foreach_march_variant (SVM_FIFO_PEEK_CLONE_TEMPLATE, svm_fifo_peek_ma); |
| 773 | CLIB_MULTIARCH_SELECT_FN (svm_fifo_peek_ma); |
| 774 | |
| 775 | int |
| 776 | svm_fifo_peek (svm_fifo_t * f, u32 relative_offset, u32 max_bytes, |
| 777 | u8 * copy_here) |
| 778 | { |
| 779 | #if CLIB_DEBUG > 0 |
| 780 | return svm_fifo_peek_ma (f, relative_offset, max_bytes, copy_here); |
| 781 | #else |
| 782 | static int (*fp) (svm_fifo_t *, u32, u32, u8 *); |
| 783 | |
| 784 | if (PREDICT_FALSE (fp == 0)) |
| 785 | fp = (void *) svm_fifo_peek_ma_multiarch_select (); |
| 786 | |
| 787 | return (*fp) (f, relative_offset, max_bytes, copy_here); |
| 788 | #endif |
| 789 | } |
| 790 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 791 | int |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 792 | svm_fifo_dequeue_drop (svm_fifo_t * f, u32 max_bytes) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 793 | { |
| 794 | u32 total_drop_bytes, first_drop_bytes, second_drop_bytes; |
| 795 | u32 cursize, nitems; |
| 796 | |
Florin Coras | 3e350af | 2017-03-30 02:54:28 -0700 | [diff] [blame] | 797 | /* read cursize, which can only increase while we're working */ |
| 798 | cursize = svm_fifo_max_dequeue (f); |
| 799 | if (PREDICT_FALSE (cursize == 0)) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 800 | return -2; /* nothing in the fifo */ |
| 801 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 802 | nitems = f->nitems; |
| 803 | |
| 804 | /* Number of bytes we're going to drop */ |
| 805 | total_drop_bytes = (cursize < max_bytes) ? cursize : max_bytes; |
| 806 | |
Florin Coras | 3eb5062 | 2017-07-13 01:24:57 -0400 | [diff] [blame] | 807 | svm_fifo_trace_add (f, f->tail, total_drop_bytes, 3); |
| 808 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 809 | /* Number of bytes in first copy segment */ |
| 810 | first_drop_bytes = |
| 811 | ((nitems - f->head) < total_drop_bytes) ? |
| 812 | (nitems - f->head) : total_drop_bytes; |
| 813 | f->head += first_drop_bytes; |
| 814 | f->head = (f->head == nitems) ? 0 : f->head; |
| 815 | |
| 816 | /* Number of bytes in second drop segment, if any */ |
| 817 | second_drop_bytes = total_drop_bytes - first_drop_bytes; |
| 818 | if (second_drop_bytes) |
| 819 | { |
| 820 | f->head += second_drop_bytes; |
| 821 | f->head = (f->head == nitems) ? 0 : f->head; |
| 822 | } |
| 823 | |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 824 | ASSERT (f->head <= nitems); |
| 825 | ASSERT (cursize >= total_drop_bytes); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 826 | __sync_fetch_and_sub (&f->cursize, total_drop_bytes); |
| 827 | |
| 828 | return total_drop_bytes; |
| 829 | } |
| 830 | |
Florin Coras | 25579b4 | 2018-06-06 17:55:02 -0700 | [diff] [blame] | 831 | void |
| 832 | svm_fifo_dequeue_drop_all (svm_fifo_t * f) |
| 833 | { |
| 834 | f->head = f->tail; |
| 835 | __sync_fetch_and_sub (&f->cursize, f->cursize); |
| 836 | } |
| 837 | |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame^] | 838 | int |
| 839 | svm_fifo_segments (svm_fifo_t * f, svm_fifo_segment_t * fs) |
| 840 | { |
| 841 | u32 cursize, nitems; |
| 842 | |
| 843 | /* read cursize, which can only increase while we're working */ |
| 844 | cursize = svm_fifo_max_dequeue (f); |
| 845 | if (PREDICT_FALSE (cursize == 0)) |
| 846 | return -2; |
| 847 | |
| 848 | nitems = f->nitems; |
| 849 | |
| 850 | fs[0].len = ((nitems - f->head) < cursize) ? (nitems - f->head) : cursize; |
| 851 | fs[0].data = f->data + f->head; |
| 852 | |
| 853 | if (fs[0].len < cursize) |
| 854 | { |
| 855 | fs[1].len = cursize - fs[0].len; |
| 856 | fs[1].data = f->data; |
| 857 | } |
| 858 | else |
| 859 | { |
| 860 | fs[1].len = 0; |
| 861 | fs[1].data = 0; |
| 862 | } |
| 863 | return cursize; |
| 864 | } |
| 865 | |
| 866 | void |
| 867 | svm_fifo_segments_free (svm_fifo_t * f, svm_fifo_segment_t * fs) |
| 868 | { |
| 869 | u32 total_drop_bytes; |
| 870 | |
| 871 | ASSERT (fs[0].data == f->data + f->head); |
| 872 | if (fs[1].len) |
| 873 | { |
| 874 | f->head = fs[1].len; |
| 875 | total_drop_bytes = fs[0].len + fs[1].len; |
| 876 | } |
| 877 | else |
| 878 | { |
| 879 | f->head = (f->head + fs[0].len) % f->nitems; |
| 880 | total_drop_bytes = fs[0].len; |
| 881 | } |
| 882 | __sync_fetch_and_sub (&f->cursize, total_drop_bytes); |
| 883 | } |
| 884 | |
Dave Barach | 1f75cfd | 2017-04-14 16:46:44 -0400 | [diff] [blame] | 885 | u32 |
| 886 | svm_fifo_number_ooo_segments (svm_fifo_t * f) |
| 887 | { |
| 888 | return pool_elts (f->ooo_segments); |
| 889 | } |
| 890 | |
| 891 | ooo_segment_t * |
| 892 | svm_fifo_first_ooo_segment (svm_fifo_t * f) |
| 893 | { |
| 894 | return pool_elt_at_index (f->ooo_segments, f->ooos_list_head); |
| 895 | } |
| 896 | |
Florin Coras | c28764f | 2017-04-26 00:08:42 -0700 | [diff] [blame] | 897 | /** |
| 898 | * Set fifo pointers to requested offset |
| 899 | */ |
| 900 | void |
| 901 | svm_fifo_init_pointers (svm_fifo_t * f, u32 pointer) |
| 902 | { |
| 903 | f->head = f->tail = pointer % f->nitems; |
| 904 | } |
| 905 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 906 | /* |
| 907 | * fd.io coding-style-patch-verification: ON |
| 908 | * |
| 909 | * Local Variables: |
| 910 | * eval: (c-set-style "gnu") |
| 911 | * End: |
| 912 | */ |