svm: minimal initial fifo
[vpp.git] / src / svm / svm_fifo.c
1 /*
2  * Copyright (c) 2016-2019 Cisco and/or its affiliates.
3  * Copyright (c) 2019 Arm Limited
4  * Copyright (c) 2010-2017 Intel Corporation and/or its affiliates.
5  * Copyright (c) 2007-2009 Kip Macy kmacy@freebsd.org
6  * Inspired from DPDK rte_ring.h (SPSC only) (derived from freebsd bufring.h).
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at:
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 #include <svm/svm_fifo.h>
21 #include <svm/fifo_segment.h>
22 #include <vppinfra/cpu.h>
23
24 CLIB_MARCH_FN (svm_fifo_copy_to_chunk, void, svm_fifo_t * f,
25                svm_fifo_chunk_t * c, u32 tail_idx, const u8 * src, u32 len,
26                svm_fifo_chunk_t ** last)
27 {
28   u32 n_chunk;
29
30   ASSERT (f_pos_geq (tail_idx, c->start_byte)
31           && f_pos_lt (tail_idx, c->start_byte + c->length));
32
33   tail_idx -= c->start_byte;
34   n_chunk = c->length - tail_idx;
35   if (n_chunk <= len)
36     {
37       u32 to_copy = len;
38       clib_memcpy_fast (&c->data[tail_idx], src, n_chunk);
39       c = c->next;
40       while ((to_copy -= n_chunk))
41         {
42           n_chunk = clib_min (c->length, to_copy);
43           clib_memcpy_fast (&c->data[0], src + (len - to_copy), n_chunk);
44           c = c->length <= to_copy ? c->next : c;
45         }
46       if (*last)
47         *last = c;
48     }
49   else
50     {
51       clib_memcpy_fast (&c->data[tail_idx], src, len);
52     }
53 }
54
55 CLIB_MARCH_FN (svm_fifo_copy_from_chunk, void, svm_fifo_t * f,
56                svm_fifo_chunk_t * c, u32 head_idx, u8 * dst, u32 len,
57                svm_fifo_chunk_t ** last)
58 {
59   u32 n_chunk;
60
61   ASSERT (f_pos_geq (head_idx, c->start_byte)
62           && f_pos_lt (head_idx, c->start_byte + c->length));
63
64   head_idx -= c->start_byte;
65   n_chunk = c->length - head_idx;
66   if (n_chunk <= len)
67     {
68       u32 to_copy = len;
69       clib_memcpy_fast (dst, &c->data[head_idx], n_chunk);
70       c = c->next;
71       while ((to_copy -= n_chunk))
72         {
73           n_chunk = clib_min (c->length, to_copy);
74           clib_memcpy_fast (dst + (len - to_copy), &c->data[0], n_chunk);
75           c = c->length <= to_copy ? c->next : c;
76         }
77       if (*last)
78         *last = c;
79     }
80   else
81     {
82       clib_memcpy_fast (dst, &c->data[head_idx], len);
83     }
84 }
85
86 #ifndef CLIB_MARCH_VARIANT
87
88 static inline void
89 svm_fifo_copy_to_chunk (svm_fifo_t * f, svm_fifo_chunk_t * c, u32 tail_idx,
90                         const u8 * src, u32 len, svm_fifo_chunk_t ** last)
91 {
92   CLIB_MARCH_FN_SELECT (svm_fifo_copy_to_chunk) (f, c, tail_idx, src, len,
93                                                  last);
94 }
95
96 static inline void
97 svm_fifo_copy_from_chunk (svm_fifo_t * f, svm_fifo_chunk_t * c, u32 head_idx,
98                           u8 * dst, u32 len, svm_fifo_chunk_t ** last)
99 {
100   CLIB_MARCH_FN_SELECT (svm_fifo_copy_from_chunk) (f, c, head_idx, dst, len,
101                                                    last);
102 }
103
104 static inline u32
105 ooo_segment_end_pos (ooo_segment_t * s)
106 {
107   return (s->start + s->length);
108 }
109
110 void
111 svm_fifo_free_ooo_data (svm_fifo_t * f)
112 {
113   pool_free (f->ooo_segments);
114 }
115
116 static inline ooo_segment_t *
117 ooo_segment_prev (svm_fifo_t * f, ooo_segment_t * s)
118 {
119   if (s->prev == OOO_SEGMENT_INVALID_INDEX)
120     return 0;
121   return pool_elt_at_index (f->ooo_segments, s->prev);
122 }
123
124 static inline ooo_segment_t *
125 ooo_segment_next (svm_fifo_t * f, ooo_segment_t * s)
126 {
127   if (s->next == OOO_SEGMENT_INVALID_INDEX)
128     return 0;
129   return pool_elt_at_index (f->ooo_segments, s->next);
130 }
131
132 static inline ooo_segment_t *
133 ooo_segment_alloc (svm_fifo_t * f, u32 start, u32 length)
134 {
135   ooo_segment_t *s;
136
137   pool_get (f->ooo_segments, s);
138
139   s->start = start;
140   s->length = length;
141   s->prev = s->next = OOO_SEGMENT_INVALID_INDEX;
142
143   return s;
144 }
145
146 static inline void
147 ooo_segment_free (svm_fifo_t * f, u32 index)
148 {
149   ooo_segment_t *cur, *prev = 0, *next = 0;
150   cur = pool_elt_at_index (f->ooo_segments, index);
151
152   if (cur->next != OOO_SEGMENT_INVALID_INDEX)
153     {
154       next = pool_elt_at_index (f->ooo_segments, cur->next);
155       next->prev = cur->prev;
156     }
157
158   if (cur->prev != OOO_SEGMENT_INVALID_INDEX)
159     {
160       prev = pool_elt_at_index (f->ooo_segments, cur->prev);
161       prev->next = cur->next;
162     }
163   else
164     {
165       f->ooos_list_head = cur->next;
166     }
167
168   pool_put (f->ooo_segments, cur);
169 }
170
171 /**
172  * Add segment to fifo's out-of-order segment list. Takes care of merging
173  * adjacent segments and removing overlapping ones.
174  */
175 static void
176 ooo_segment_add (svm_fifo_t * f, u32 offset, u32 head, u32 tail, u32 length)
177 {
178   ooo_segment_t *s, *new_s, *prev, *next, *it;
179   u32 new_index, s_end_pos, s_index;
180   u32 offset_pos, offset_end_pos;
181
182   ASSERT (offset + length <= f_free_count (f, head, tail));
183
184   offset_pos = tail + offset;
185   offset_end_pos = tail + offset + length;
186
187   f->ooos_newest = OOO_SEGMENT_INVALID_INDEX;
188
189   if (f->ooos_list_head == OOO_SEGMENT_INVALID_INDEX)
190     {
191       s = ooo_segment_alloc (f, offset_pos, length);
192       f->ooos_list_head = s - f->ooo_segments;
193       f->ooos_newest = f->ooos_list_head;
194       return;
195     }
196
197   /* Find first segment that starts after new segment */
198   s = pool_elt_at_index (f->ooo_segments, f->ooos_list_head);
199   while (s->next != OOO_SEGMENT_INVALID_INDEX
200          && f_pos_lt (s->start, offset_pos))
201     s = pool_elt_at_index (f->ooo_segments, s->next);
202
203   /* If we have a previous and we overlap it, use it as starting point */
204   prev = ooo_segment_prev (f, s);
205   if (prev && f_pos_leq (offset_pos, ooo_segment_end_pos (prev)))
206     {
207       s = prev;
208       s_end_pos = ooo_segment_end_pos (s);
209
210       /* Since we have previous, offset start position cannot be smaller
211        * than prev->start. Check tail */
212       ASSERT (f_pos_lt (s->start, offset_pos));
213       goto check_tail;
214     }
215
216   s_index = s - f->ooo_segments;
217   s_end_pos = ooo_segment_end_pos (s);
218
219   /* No overlap, add before current segment */
220   if (f_pos_lt (offset_end_pos, s->start))
221     {
222       new_s = ooo_segment_alloc (f, offset_pos, length);
223       new_index = new_s - f->ooo_segments;
224
225       /* Pool might've moved, get segment again */
226       s = pool_elt_at_index (f->ooo_segments, s_index);
227       if (s->prev != OOO_SEGMENT_INVALID_INDEX)
228         {
229           new_s->prev = s->prev;
230           prev = pool_elt_at_index (f->ooo_segments, new_s->prev);
231           prev->next = new_index;
232         }
233       else
234         {
235           /* New head */
236           f->ooos_list_head = new_index;
237         }
238
239       new_s->next = s_index;
240       s->prev = new_index;
241       f->ooos_newest = new_index;
242       return;
243     }
244   /* No overlap, add after current segment */
245   else if (f_pos_gt (offset_pos, s_end_pos))
246     {
247       new_s = ooo_segment_alloc (f, offset_pos, length);
248       new_index = new_s - f->ooo_segments;
249
250       /* Pool might've moved, get segment again */
251       s = pool_elt_at_index (f->ooo_segments, s_index);
252
253       /* Needs to be last */
254       ASSERT (s->next == OOO_SEGMENT_INVALID_INDEX);
255
256       new_s->prev = s_index;
257       s->next = new_index;
258       f->ooos_newest = new_index;
259
260       return;
261     }
262
263   /*
264    * Merge needed
265    */
266
267   /* Merge at head */
268   if (f_pos_lt (offset_pos, s->start))
269     {
270       s->start = offset_pos;
271       s->length = s_end_pos - s->start;
272       f->ooos_newest = s - f->ooo_segments;
273     }
274
275 check_tail:
276
277   /* Overlapping tail */
278   if (f_pos_gt (offset_end_pos, s_end_pos))
279     {
280       s->length = offset_end_pos - s->start;
281
282       /* Remove the completely overlapped segments in the tail */
283       it = ooo_segment_next (f, s);
284       while (it && f_pos_leq (ooo_segment_end_pos (it), offset_end_pos))
285         {
286           next = ooo_segment_next (f, it);
287           ooo_segment_free (f, it - f->ooo_segments);
288           it = next;
289         }
290
291       /* If partial overlap with last, merge */
292       if (it && f_pos_leq (it->start, offset_end_pos))
293         {
294           s->length = ooo_segment_end_pos (it) - s->start;
295           ooo_segment_free (f, it - f->ooo_segments);
296         }
297       f->ooos_newest = s - f->ooo_segments;
298     }
299 }
300
301 /**
302  * Removes segments that can now be enqueued because the fifo's tail has
303  * advanced. Returns the number of bytes added to tail.
304  */
305 static int
306 ooo_segment_try_collect (svm_fifo_t * f, u32 n_bytes_enqueued, u32 * tail)
307 {
308   u32 s_index, bytes = 0;
309   ooo_segment_t *s;
310   i32 diff;
311
312   s = pool_elt_at_index (f->ooo_segments, f->ooos_list_head);
313   diff = *tail - s->start;
314
315   ASSERT (diff != n_bytes_enqueued);
316
317   if (diff > n_bytes_enqueued)
318     return 0;
319
320   /* If last tail update overlaps one/multiple ooo segments, remove them */
321   while (0 <= diff && diff < n_bytes_enqueued)
322     {
323       s_index = s - f->ooo_segments;
324
325       /* Segment end is beyond the tail. Advance tail and remove segment */
326       if (s->length > diff)
327         {
328           bytes = s->length - diff;
329           *tail = *tail + bytes;
330           ooo_segment_free (f, s_index);
331           break;
332         }
333
334       /* If we have next go on */
335       if (s->next != OOO_SEGMENT_INVALID_INDEX)
336         {
337           s = pool_elt_at_index (f->ooo_segments, s->next);
338           diff = *tail - s->start;
339           ooo_segment_free (f, s_index);
340         }
341       /* End of search */
342       else
343         {
344           ooo_segment_free (f, s_index);
345           break;
346         }
347     }
348
349   ASSERT (bytes <= f->size);
350   return bytes;
351 }
352
353 __clib_unused static ooo_segment_t *
354 ooo_segment_last (svm_fifo_t * f)
355 {
356   ooo_segment_t *s;
357
358   if (f->ooos_list_head == OOO_SEGMENT_INVALID_INDEX)
359     return 0;
360
361   s = svm_fifo_first_ooo_segment (f);
362   while (s->next != OOO_SEGMENT_INVALID_INDEX)
363     s = pool_elt_at_index (f->ooo_segments, s->next);
364   return s;
365 }
366
367 void
368 svm_fifo_init (svm_fifo_t * f, u32 size)
369 {
370   svm_fifo_chunk_t *c, *prev;
371   u32 min_alloc;
372
373   f->size = size;
374   f->ooos_list_head = OOO_SEGMENT_INVALID_INDEX;
375   f->segment_index = SVM_FIFO_INVALID_INDEX;
376   f->refcnt = 1;
377   f->head = f->tail = f->flags = 0;
378   f->head_chunk = f->tail_chunk = f->start_chunk;
379   f->ooo_deq = f->ooo_enq = 0;
380
381   min_alloc = size > 32 << 10 ? size >> 3 : 4096;
382   min_alloc = clib_min (min_alloc, 64 << 10);
383   f->min_alloc = min_alloc;
384
385   /*
386    * Initialize chunks
387    */
388   f->start_chunk->start_byte = 0;
389   prev = f->start_chunk;
390   c = prev->next;
391
392   while (c)
393     {
394       c->start_byte = prev->start_byte + prev->length;
395       prev = c;
396       c = c->next;
397     }
398 }
399
400 void
401 svm_fifo_init_ooo_lookup (svm_fifo_t * f, u8 ooo_type)
402 {
403   if (ooo_type == 0)
404     {
405       ASSERT (!rb_tree_is_init (&f->ooo_enq_lookup));
406       rb_tree_init (&f->ooo_enq_lookup);
407     }
408   else
409     {
410       ASSERT (!rb_tree_is_init (&f->ooo_deq_lookup));
411       rb_tree_init (&f->ooo_deq_lookup);
412     }
413 }
414
415 /**
416  * Creates a fifo in the current heap. Fails vs blow up the process
417  */
418 svm_fifo_t *
419 svm_fifo_alloc (u32 data_size_in_bytes)
420 {
421   u32 rounded_data_size;
422   svm_fifo_chunk_t *c;
423   svm_fifo_t *f;
424
425   f = clib_mem_alloc_aligned_or_null (sizeof (*f), CLIB_CACHE_LINE_BYTES);
426   if (f == 0)
427     return 0;
428
429   clib_memset (f, 0, sizeof (*f));
430
431   /* always round fifo data size to the next highest power-of-two */
432   rounded_data_size = (1 << (max_log2 (data_size_in_bytes)));
433   c = clib_mem_alloc_aligned_or_null (sizeof (*c) + rounded_data_size,
434                                       CLIB_CACHE_LINE_BYTES);
435   if (!c)
436     {
437       clib_mem_free (f);
438       return 0;
439     }
440
441   clib_memset (c, 0, sizeof (*c));
442   c->start_byte = 0;
443   c->length = data_size_in_bytes;
444   c->enq_rb_index = RBTREE_TNIL_INDEX;
445   c->deq_rb_index = RBTREE_TNIL_INDEX;
446   f->start_chunk = f->end_chunk = c;
447
448   return f;
449 }
450
451 /**
452  * Creates a fifo chunk in the current heap
453  */
454 svm_fifo_chunk_t *
455 svm_fifo_chunk_alloc (u32 size)
456 {
457   svm_fifo_chunk_t *c;
458   u32 rounded_size;
459
460   /* round chunk size to the next highest power-of-two */
461   rounded_size = (1 << (max_log2 (size)));
462   c = clib_mem_alloc_aligned_or_null (sizeof (*c) + rounded_size,
463                                       CLIB_CACHE_LINE_BYTES);
464   if (c == 0)
465     return 0;
466
467   clib_memset (c, 0, sizeof (*c));
468   c->length = rounded_size;
469   return c;
470 }
471
472 /**
473  * Find chunk for given byte position
474  *
475  * @param f     fifo
476  * @param pos   normalized position in fifo
477  *
478  * @return chunk that includes given position or 0
479  */
480 static svm_fifo_chunk_t *
481 svm_fifo_find_chunk (svm_fifo_t * f, u32 pos)
482 {
483   svm_fifo_chunk_t *c;
484
485   c = f->start_chunk;
486   while (c && !f_chunk_includes_pos (c, pos))
487     c = c->next;
488
489   return c;
490 }
491
492 static svm_fifo_chunk_t *
493 svm_fifo_find_next_chunk (svm_fifo_t * f, svm_fifo_chunk_t * start, u32 pos)
494 {
495   svm_fifo_chunk_t *c;
496
497   ASSERT (start != 0);
498
499   c = start;
500   while (c && !f_chunk_includes_pos (c, pos))
501     c = c->next;
502
503   return c;
504 }
505
506 u32
507 svm_fifo_max_read_chunk (svm_fifo_t * f)
508 {
509   u32 head, tail, end_chunk;
510
511   f_load_head_tail_cons (f, &head, &tail);
512   ASSERT (!f->head_chunk || f_chunk_includes_pos (f->head_chunk, head));
513
514   if (!f->head_chunk)
515     {
516       f->head_chunk = svm_fifo_find_chunk (f, head);
517       if (PREDICT_FALSE (!f->head_chunk))
518         return 0;
519     }
520
521   end_chunk = f_chunk_end (f->head_chunk);
522
523   return f_pos_lt (end_chunk, tail) ? end_chunk - head : tail - head;
524 }
525
526 u32
527 svm_fifo_max_write_chunk (svm_fifo_t * f)
528 {
529   u32 head, tail;
530
531   f_load_head_tail_prod (f, &head, &tail);
532   ASSERT (!f->tail_chunk || f_chunk_includes_pos (f->tail_chunk, tail));
533
534   return f->tail_chunk ? f_chunk_end (f->tail_chunk) - tail : 0;
535 }
536
537 static rb_node_t *
538 f_find_node_rbtree (rb_tree_t * rt, u32 pos)
539 {
540   rb_node_t *cur, *prev;
541
542   cur = rb_node (rt, rt->root);
543   if (PREDICT_FALSE (rb_node_is_tnil (rt, cur)))
544     return 0;
545
546   while (pos != cur->key)
547     {
548       prev = cur;
549       if (f_pos_lt (pos, cur->key))
550         {
551           cur = rb_node_left (rt, cur);
552           if (rb_node_is_tnil (rt, cur))
553             {
554               cur = rb_tree_predecessor (rt, prev);
555               break;
556             }
557         }
558       else
559         {
560           cur = rb_node_right (rt, cur);
561           if (rb_node_is_tnil (rt, cur))
562             {
563               cur = prev;
564               break;
565             }
566         }
567     }
568
569   if (rb_node_is_tnil (rt, cur))
570     return 0;
571
572   return cur;
573 }
574
575 static svm_fifo_chunk_t *
576 f_find_chunk_rbtree (rb_tree_t * rt, u32 pos)
577 {
578   svm_fifo_chunk_t *c;
579   rb_node_t *n;
580
581   if (!rb_tree_is_init (rt))
582     return 0;
583
584   n = f_find_node_rbtree (rt, pos);
585   if (!n)
586     return 0;
587   c = uword_to_pointer (n->opaque, svm_fifo_chunk_t *);
588   if (f_chunk_includes_pos (c, pos))
589     return c;
590
591   return 0;
592 }
593
594 static void
595 f_update_ooo_enq (svm_fifo_t * f, u32 start_pos, u32 end_pos)
596 {
597   rb_tree_t *rt = &f->ooo_enq_lookup;
598   svm_fifo_chunk_t *c;
599   rb_node_t *cur;
600
601   /* Use linear search if rbtree is not initialized */
602   if (PREDICT_FALSE (!rb_tree_is_init (rt)))
603     {
604       f->ooo_enq = svm_fifo_find_next_chunk (f, f->tail_chunk, start_pos);
605       return;
606     }
607
608   if (rt->root == RBTREE_TNIL_INDEX)
609     {
610       c = f->tail_chunk;
611       ASSERT (c->enq_rb_index == RBTREE_TNIL_INDEX);
612       c->enq_rb_index = rb_tree_add_custom (rt, c->start_byte,
613                                             pointer_to_uword (c), f_pos_lt);
614     }
615   else
616     {
617       cur = f_find_node_rbtree (rt, start_pos);
618       c = uword_to_pointer (cur->opaque, svm_fifo_chunk_t *);
619       ASSERT (f_pos_leq (c->start_byte, start_pos));
620     }
621
622   if (f_chunk_includes_pos (c, start_pos))
623     f->ooo_enq = c;
624
625   if (f_chunk_includes_pos (c, end_pos))
626     return;
627
628   do
629     {
630       c = c->next;
631       if (!c || c->enq_rb_index != RBTREE_TNIL_INDEX)
632         break;
633
634       c->enq_rb_index = rb_tree_add_custom (rt, c->start_byte,
635                                             pointer_to_uword (c), f_pos_lt);
636
637       if (f_chunk_includes_pos (c, start_pos))
638         f->ooo_enq = c;
639     }
640   while (!f_chunk_includes_pos (c, end_pos));
641 }
642
643 static void
644 f_update_ooo_deq (svm_fifo_t * f, u32 start_pos, u32 end_pos)
645 {
646   rb_tree_t *rt = &f->ooo_deq_lookup;
647   rb_node_t *cur;
648   svm_fifo_chunk_t *c;
649
650   /* Use linear search if rbtree is not initialized  */
651   if (PREDICT_FALSE (!rb_tree_is_init (rt)))
652     {
653       f->ooo_deq = svm_fifo_find_chunk (f, start_pos);
654       return;
655     }
656
657   if (rt->root == RBTREE_TNIL_INDEX)
658     {
659       c = f->start_chunk;
660       ASSERT (c->deq_rb_index == RBTREE_TNIL_INDEX);
661       c->deq_rb_index = rb_tree_add_custom (rt, c->start_byte,
662                                             pointer_to_uword (c), f_pos_lt);
663     }
664   else
665     {
666       cur = f_find_node_rbtree (rt, start_pos);
667       c = uword_to_pointer (cur->opaque, svm_fifo_chunk_t *);
668       ASSERT (f_pos_leq (c->start_byte, start_pos));
669     }
670
671   if (f_chunk_includes_pos (c, start_pos))
672     f->ooo_deq = c;
673
674   if (f_chunk_includes_pos (c, end_pos))
675     return;
676
677   do
678     {
679       c = c->next;
680       if (!c || c->deq_rb_index != RBTREE_TNIL_INDEX)
681         break;
682
683       c->deq_rb_index = rb_tree_add_custom (rt, c->start_byte,
684                                             pointer_to_uword (c), f_pos_lt);
685
686       if (f_chunk_includes_pos (c, start_pos))
687         f->ooo_deq = c;
688     }
689   while (!f_chunk_includes_pos (c, end_pos));
690 }
691
692 static svm_fifo_chunk_t *
693 f_lookup_clear_enq_chunks (svm_fifo_t * f, svm_fifo_chunk_t * start,
694                            u32 end_pos)
695 {
696   rb_tree_t *rt = &f->ooo_enq_lookup;
697   svm_fifo_chunk_t *c;
698   rb_node_t *n;
699
700   c = start;
701   while (c && !f_chunk_includes_pos (c, end_pos))
702     {
703       if (c->enq_rb_index != RBTREE_TNIL_INDEX)
704         {
705           n = rb_node (rt, c->enq_rb_index);
706           rb_tree_del_node (rt, n);
707           c->enq_rb_index = RBTREE_TNIL_INDEX;
708         }
709
710       c = c->next;
711     }
712
713   /* No ooo segments left, so make sure the current chunk
714    * is not tracked in the enq rbtree */
715   if (f->ooos_list_head == OOO_SEGMENT_INVALID_INDEX
716       && c && c->enq_rb_index != RBTREE_TNIL_INDEX)
717     {
718       n = rb_node (rt, c->enq_rb_index);
719       rb_tree_del_node (rt, n);
720       c->enq_rb_index = RBTREE_TNIL_INDEX;
721     }
722
723   return c;
724 }
725
726 static svm_fifo_chunk_t *
727 f_lookup_clear_deq_chunks (svm_fifo_t * f, svm_fifo_chunk_t * start,
728                            u32 end_pos)
729 {
730   rb_tree_t *rt = &f->ooo_deq_lookup;
731   svm_fifo_chunk_t *c;
732   rb_node_t *n;
733
734   c = start;
735   while (c && !f_chunk_includes_pos (c, end_pos))
736     {
737       if (c->deq_rb_index != RBTREE_TNIL_INDEX)
738         {
739           n = rb_node (rt, c->deq_rb_index);
740           rb_tree_del_node (rt, n);
741           c->deq_rb_index = RBTREE_TNIL_INDEX;
742         }
743
744       c = c->next;
745     }
746
747   return c;
748 }
749
750 void
751 svm_fifo_add_chunk (svm_fifo_t * f, svm_fifo_chunk_t * c)
752 {
753   svm_fifo_chunk_t *cur, *prev;
754
755   cur = c;
756   prev = f->end_chunk;
757
758   while (cur)
759     {
760       cur->start_byte = prev->start_byte + prev->length;
761       cur->enq_rb_index = RBTREE_TNIL_INDEX;
762       cur->deq_rb_index = RBTREE_TNIL_INDEX;
763
764       prev = cur;
765       cur = cur->next;
766     }
767
768   prev->next = 0;
769   f->end_chunk->next = c;
770   f->end_chunk = prev;
771
772   if (!f->tail_chunk)
773     f->tail_chunk = c;
774
775   return;
776 }
777
778 void
779 svm_fifo_free_chunk_lookup (svm_fifo_t * f)
780 {
781   rb_tree_free_nodes (&f->ooo_enq_lookup);
782   rb_tree_free_nodes (&f->ooo_deq_lookup);
783 }
784
785 void
786 svm_fifo_free (svm_fifo_t * f)
787 {
788   ASSERT (f->refcnt > 0);
789
790   if (--f->refcnt == 0)
791     {
792       /* ooo data is not allocated on segment heap */
793       svm_fifo_free_chunk_lookup (f);
794       clib_mem_free (f);
795     }
796 }
797
798 void
799 svm_fifo_overwrite_head (svm_fifo_t * f, u8 * src, u32 len)
800 {
801   u32 n_chunk;
802   u32 head, tail, head_idx;
803   svm_fifo_chunk_t *c;
804
805   ASSERT (len <= f->size);
806
807   f_load_head_tail_cons (f, &head, &tail);
808
809   if (!f->head_chunk)
810     f->head_chunk = svm_fifo_find_chunk (f, head);
811
812   c = f->head_chunk;
813   head_idx = head - c->start_byte;
814   n_chunk = c->length - head_idx;
815   if (len <= n_chunk)
816     clib_memcpy_fast (&c->data[head_idx], src, len);
817   else
818     {
819       ASSERT (len - n_chunk <= c->next->length);
820       clib_memcpy_fast (&c->data[head_idx], src, n_chunk);
821       clib_memcpy_fast (&c->next->data[0], src + n_chunk, len - n_chunk);
822     }
823 }
824
825 static int
826 f_try_grow (svm_fifo_t * f, u32 head, u32 tail, u32 len)
827 {
828   svm_fifo_chunk_t *c;
829   u32 alloc_size, free_alloced;
830
831   free_alloced = f_chunk_end (f->end_chunk) - tail;
832   ASSERT (free_alloced < len);
833
834   alloc_size = clib_min (f->min_alloc, f->size - (tail - head));
835   alloc_size = clib_max (alloc_size, len - free_alloced);
836
837   c = fsh_alloc_chunk (f->fs_hdr, f->slice_index, alloc_size);
838   if (PREDICT_FALSE (!c))
839     return -1;
840
841   svm_fifo_add_chunk (f, c);
842   return 0;
843 }
844
845 int
846 svm_fifo_enqueue (svm_fifo_t * f, u32 len, const u8 * src)
847 {
848   u32 tail, head, free_count;
849   svm_fifo_chunk_t *old_tail_c;
850
851   f->ooos_newest = OOO_SEGMENT_INVALID_INDEX;
852
853   f_load_head_tail_prod (f, &head, &tail);
854
855   /* free space in fifo can only increase during enqueue: SPSC */
856   free_count = f_free_count (f, head, tail);
857
858   if (PREDICT_FALSE (free_count == 0))
859     return SVM_FIFO_EFULL;
860
861   /* number of bytes we're going to copy */
862   len = clib_min (free_count, len);
863
864   if (f_pos_gt (tail + len, f_chunk_end (f->end_chunk)))
865     {
866       if (PREDICT_FALSE (f_try_grow (f, head, tail, len)))
867         {
868           len = f_chunk_end (f->end_chunk) - tail;
869           if (!len)
870             return SVM_FIFO_EGROW;
871         }
872     }
873
874   old_tail_c = f->tail_chunk;
875
876   svm_fifo_copy_to_chunk (f, f->tail_chunk, tail, src, len, &f->tail_chunk);
877   tail = tail + len;
878
879   svm_fifo_trace_add (f, head, len, 2);
880
881   /* collect out-of-order segments */
882   if (PREDICT_FALSE (f->ooos_list_head != OOO_SEGMENT_INVALID_INDEX))
883     {
884       len += ooo_segment_try_collect (f, len, &tail);
885       /* Tail chunk might've changed even if nothing was collected */
886       f->tail_chunk = f_lookup_clear_enq_chunks (f, old_tail_c, tail);
887       f->ooo_enq = 0;
888     }
889
890   /* store-rel: producer owned index (paired with load-acq in consumer) */
891   clib_atomic_store_rel_n (&f->tail, tail);
892
893   return len;
894 }
895
896 /**
897  * Enqueue a future segment.
898  *
899  * Two choices: either copies the entire segment, or copies nothing
900  * Returns 0 of the entire segment was copied
901  * Returns -1 if none of the segment was copied due to lack of space
902  */
903 int
904 svm_fifo_enqueue_with_offset (svm_fifo_t * f, u32 offset, u32 len, u8 * src)
905 {
906   u32 tail, head, free_count, enq_pos;
907
908   f_load_head_tail_prod (f, &head, &tail);
909
910   /* free space in fifo can only increase during enqueue: SPSC */
911   free_count = f_free_count (f, head, tail);
912   f->ooos_newest = OOO_SEGMENT_INVALID_INDEX;
913
914   /* will this request fit? */
915   if ((len + offset) > free_count)
916     return SVM_FIFO_EFULL;
917
918   enq_pos = tail + offset;
919
920   if (f_pos_gt (enq_pos + len, f_chunk_end (f->end_chunk)))
921     {
922       if (PREDICT_FALSE (f_try_grow (f, head, tail, offset + len)))
923         return SVM_FIFO_EGROW;
924     }
925
926   svm_fifo_trace_add (f, offset, len, 1);
927   ooo_segment_add (f, offset, head, tail, len);
928
929   if (!f->ooo_enq || !f_chunk_includes_pos (f->ooo_enq, enq_pos))
930     f_update_ooo_enq (f, enq_pos, enq_pos + len);
931
932   svm_fifo_copy_to_chunk (f, f->ooo_enq, enq_pos, src, len, &f->ooo_enq);
933
934   return 0;
935 }
936
937 /**
938  * Advance tail
939  */
940 void
941 svm_fifo_enqueue_nocopy (svm_fifo_t * f, u32 len)
942 {
943   u32 tail;
944
945   ASSERT (len <= svm_fifo_max_enqueue_prod (f));
946   /* load-relaxed: producer owned index */
947   tail = f->tail;
948   tail = tail + len;
949
950   if (rb_tree_is_init (&f->ooo_enq_lookup))
951     {
952       f->tail_chunk = f_lookup_clear_enq_chunks (f, f->tail_chunk, tail);
953       f->ooo_enq = 0;
954     }
955   else
956     {
957       f->tail_chunk = svm_fifo_find_next_chunk (f, f->tail_chunk, tail);
958     }
959
960   /* store-rel: producer owned index (paired with load-acq in consumer) */
961   clib_atomic_store_rel_n (&f->tail, tail);
962 }
963
964 always_inline svm_fifo_chunk_t *
965 f_unlink_chunks (svm_fifo_t * f, u32 end_pos, u8 maybe_ooo)
966 {
967   svm_fifo_chunk_t *start, *prev = 0, *c;
968   rb_tree_t *rt;
969   rb_node_t *n;
970
971   ASSERT (!f_chunk_includes_pos (f->start_chunk, end_pos));
972
973   if (maybe_ooo)
974     rt = &f->ooo_deq_lookup;
975
976   c = f->start_chunk;
977
978   do
979     {
980       if (maybe_ooo && c->deq_rb_index != RBTREE_TNIL_INDEX)
981         {
982           n = rb_node (rt, c->deq_rb_index);
983           ASSERT (n == f_find_node_rbtree (rt, c->start_byte));
984           rb_tree_del_node (rt, n);
985           c->deq_rb_index = RBTREE_TNIL_INDEX;
986         }
987       if (!c->next)
988         break;
989       prev = c;
990       c = c->next;
991     }
992   while (!f_chunk_includes_pos (c, end_pos));
993
994   if (maybe_ooo)
995     {
996       if (f->ooo_deq && f_pos_lt (f->ooo_deq->start_byte, f_chunk_end (c)))
997         f->ooo_deq = 0;
998     }
999   else
1000     {
1001       if (PREDICT_FALSE (f->ooo_deq != 0))
1002         f->ooo_deq = 0;
1003     }
1004
1005   /* Avoid unlinking the last chunk */
1006   if (!prev)
1007     return 0;
1008
1009   prev->next = 0;
1010   start = f->start_chunk;
1011   f->start_chunk = c;
1012
1013   return start;
1014 }
1015
1016 int
1017 svm_fifo_dequeue (svm_fifo_t * f, u32 len, u8 * dst)
1018 {
1019   u32 tail, head, cursize;
1020
1021   f_load_head_tail_cons (f, &head, &tail);
1022
1023   /* current size of fifo can only increase during dequeue: SPSC */
1024   cursize = f_cursize (f, head, tail);
1025
1026   if (PREDICT_FALSE (cursize == 0))
1027     return SVM_FIFO_EEMPTY;
1028
1029   len = clib_min (cursize, len);
1030
1031   if (!f->head_chunk)
1032     f->head_chunk = svm_fifo_find_chunk (f, head);
1033
1034   svm_fifo_copy_from_chunk (f, f->head_chunk, head, dst, len, &f->head_chunk);
1035   head = head + len;
1036
1037   if (f_pos_geq (head, f_chunk_end (f->start_chunk)))
1038     fsh_collect_chunks (f->fs_hdr, f->slice_index,
1039                         f_unlink_chunks (f, head, 0));
1040
1041   /* store-rel: consumer owned index (paired with load-acq in producer) */
1042   clib_atomic_store_rel_n (&f->head, head);
1043
1044   return len;
1045 }
1046
1047 int
1048 svm_fifo_peek (svm_fifo_t * f, u32 offset, u32 len, u8 * dst)
1049 {
1050   u32 tail, head, cursize, head_idx;
1051
1052   f_load_head_tail_cons (f, &head, &tail);
1053
1054   /* current size of fifo can only increase during peek: SPSC */
1055   cursize = f_cursize (f, head, tail);
1056
1057   if (PREDICT_FALSE (cursize < offset))
1058     return SVM_FIFO_EEMPTY;
1059
1060   len = clib_min (cursize - offset, len);
1061   head_idx = head + offset;
1062
1063   if (!f->ooo_deq || !f_chunk_includes_pos (f->ooo_deq, head_idx))
1064     f_update_ooo_deq (f, head_idx, head_idx + len);
1065
1066   svm_fifo_copy_from_chunk (f, f->ooo_deq, head_idx, dst, len, &f->ooo_deq);
1067   return len;
1068 }
1069
1070 int
1071 svm_fifo_dequeue_drop (svm_fifo_t * f, u32 len)
1072 {
1073   u32 total_drop_bytes, tail, head, cursize;
1074
1075   f_load_head_tail_cons (f, &head, &tail);
1076
1077   /* number of bytes available */
1078   cursize = f_cursize (f, head, tail);
1079   if (PREDICT_FALSE (cursize == 0))
1080     return SVM_FIFO_EEMPTY;
1081
1082   /* number of bytes we're going to drop */
1083   total_drop_bytes = clib_min (cursize, len);
1084
1085   svm_fifo_trace_add (f, tail, total_drop_bytes, 3);
1086
1087   /* move head */
1088   head = head + total_drop_bytes;
1089
1090   if (f_pos_geq (head, f_chunk_end (f->start_chunk)))
1091     {
1092       fsh_collect_chunks (f->fs_hdr, f->slice_index,
1093                           f_unlink_chunks (f, head, 1));
1094       f->head_chunk =
1095         f_chunk_includes_pos (f->start_chunk, head) ? f->start_chunk : 0;
1096     }
1097
1098   /* store-rel: consumer owned index (paired with load-acq in producer) */
1099   clib_atomic_store_rel_n (&f->head, head);
1100
1101   return total_drop_bytes;
1102 }
1103
1104 /**
1105  * Drop all data from fifo
1106  *
1107  * Should be called only from vpp side because of lookup cleanup
1108  */
1109 void
1110 svm_fifo_dequeue_drop_all (svm_fifo_t * f)
1111 {
1112   u32 head, tail;
1113
1114   f_load_head_tail_all_acq (f, &head, &tail);
1115
1116   if (!f->head_chunk || !f_chunk_includes_pos (f->head_chunk, head))
1117     f->head_chunk = svm_fifo_find_chunk (f, head);
1118
1119   f->head_chunk = f_lookup_clear_deq_chunks (f, f->head_chunk, tail);
1120
1121   if (f_pos_geq (tail, f_chunk_end (f->start_chunk)))
1122     fsh_collect_chunks (f->fs_hdr, f->slice_index,
1123                         f_unlink_chunks (f, tail, 0));
1124
1125   /* store-rel: consumer owned index (paired with load-acq in producer) */
1126   clib_atomic_store_rel_n (&f->head, tail);
1127 }
1128
1129 int
1130 svm_fifo_fill_chunk_list (svm_fifo_t * f)
1131 {
1132   u32 head, tail;
1133
1134   f_load_head_tail_prod (f, &head, &tail);
1135
1136   if (f_chunk_end (f->end_chunk) - head >= f->size)
1137     return 0;
1138
1139   if (f_try_grow (f, head, tail, f->size - (tail - head)))
1140     return SVM_FIFO_EGROW;
1141
1142   return 0;
1143 }
1144
1145 int
1146 svm_fifo_segments (svm_fifo_t * f, svm_fifo_seg_t * fs)
1147 {
1148   u32 cursize, head, tail, head_idx;
1149
1150   f_load_head_tail_cons (f, &head, &tail);
1151
1152   /* consumer function, cursize can only increase while we're working */
1153   cursize = f_cursize (f, head, tail);
1154
1155   if (PREDICT_FALSE (cursize == 0))
1156     return SVM_FIFO_EEMPTY;
1157
1158   head_idx = head;
1159
1160   if (tail < head)
1161     {
1162       fs[0].len = f->size - head_idx;
1163       fs[0].data = f->head_chunk->data + head_idx;
1164       fs[1].len = cursize - fs[0].len;
1165       fs[1].data = f->head_chunk->data;
1166     }
1167   else
1168     {
1169       fs[0].len = cursize;
1170       fs[0].data = f->head_chunk->data + head_idx;
1171       fs[1].len = 0;
1172       fs[1].data = 0;
1173     }
1174   return cursize;
1175 }
1176
1177 void
1178 svm_fifo_segments_free (svm_fifo_t * f, svm_fifo_seg_t * fs)
1179 {
1180   u32 head;
1181
1182   /* consumer owned index */
1183   head = f->head;
1184
1185   ASSERT (fs[0].data == f->head_chunk->data + head);
1186   head = (head + fs[0].len + fs[1].len);
1187   /* store-rel: consumer owned index (paired with load-acq in producer) */
1188   clib_atomic_store_rel_n (&f->head, head);
1189 }
1190
1191 /**
1192  * Clones fifo
1193  *
1194  * Assumptions:
1195  * - no prod and cons are accessing either dest or src fifo
1196  * - fifo is not multi chunk
1197  */
1198 void
1199 svm_fifo_clone (svm_fifo_t * df, svm_fifo_t * sf)
1200 {
1201   u32 head, tail;
1202
1203   /* Support only single chunk clones for now */
1204   ASSERT (svm_fifo_n_chunks (sf) == 1);
1205
1206   clib_memcpy_fast (df->head_chunk->data, sf->head_chunk->data, sf->size);
1207
1208   f_load_head_tail_all_acq (sf, &head, &tail);
1209   clib_atomic_store_rel_n (&df->head, head);
1210   clib_atomic_store_rel_n (&df->tail, tail);
1211 }
1212
1213 u32
1214 svm_fifo_n_ooo_segments (svm_fifo_t * f)
1215 {
1216   return pool_elts (f->ooo_segments);
1217 }
1218
1219 ooo_segment_t *
1220 svm_fifo_first_ooo_segment (svm_fifo_t * f)
1221 {
1222   return pool_elt_at_index (f->ooo_segments, f->ooos_list_head);
1223 }
1224
1225 /**
1226  * Set fifo pointers to requested offset
1227  */
1228 void
1229 svm_fifo_init_pointers (svm_fifo_t * f, u32 head, u32 tail)
1230 {
1231   svm_fifo_chunk_t *c;
1232
1233   clib_atomic_store_rel_n (&f->head, head);
1234   clib_atomic_store_rel_n (&f->tail, tail);
1235
1236   c = svm_fifo_find_chunk (f, head);
1237   ASSERT (c != 0);
1238   f->head_chunk = f->ooo_deq = c;
1239   c = svm_fifo_find_chunk (f, tail);
1240   ASSERT (c != 0);
1241   f->tail_chunk = f->ooo_enq = c;
1242 }
1243
1244 void
1245 svm_fifo_add_subscriber (svm_fifo_t * f, u8 subscriber)
1246 {
1247   if (f->n_subscribers >= SVM_FIFO_MAX_EVT_SUBSCRIBERS)
1248     return;
1249   f->subscribers[f->n_subscribers++] = subscriber;
1250 }
1251
1252 void
1253 svm_fifo_del_subscriber (svm_fifo_t * f, u8 subscriber)
1254 {
1255   int i;
1256
1257   for (i = 0; i < f->n_subscribers; i++)
1258     {
1259       if (f->subscribers[i] != subscriber)
1260         continue;
1261       f->subscribers[i] = f->subscribers[f->n_subscribers - 1];
1262       f->n_subscribers--;
1263       break;
1264     }
1265 }
1266
1267 u8
1268 svm_fifo_is_sane (svm_fifo_t * f)
1269 {
1270   svm_fifo_chunk_t *tmp;
1271
1272   if (f->head_chunk && !f_chunk_includes_pos (f->head_chunk, f->head))
1273     return 0;
1274   if (f->tail_chunk && !f_chunk_includes_pos (f->tail_chunk, f->tail))
1275     return 0;
1276   if (f->ooo_deq)
1277     {
1278       if (rb_tree_is_init (&f->ooo_deq_lookup))
1279         {
1280           if (f_pos_lt (f->ooo_deq->start_byte, f->start_chunk->start_byte)
1281               || f_pos_gt (f->ooo_deq->start_byte,
1282                            f_chunk_end (f->end_chunk)))
1283             return 0;
1284
1285           tmp = f_find_chunk_rbtree (&f->ooo_deq_lookup,
1286                                      f->ooo_deq->start_byte);
1287         }
1288       else
1289         tmp = svm_fifo_find_chunk (f, f->ooo_deq->start_byte);
1290       if (tmp != f->ooo_deq)
1291         return 0;
1292     }
1293   if (f->ooo_enq)
1294     {
1295       if (rb_tree_is_init (&f->ooo_enq_lookup))
1296         {
1297           if (f_pos_lt (f->ooo_enq->start_byte, f->start_chunk->start_byte)
1298               || f_pos_gt (f->ooo_enq->start_byte,
1299                            f_chunk_end (f->end_chunk)))
1300             return 0;
1301
1302           tmp = f_find_chunk_rbtree (&f->ooo_enq_lookup,
1303                                      f->ooo_enq->start_byte);
1304         }
1305       else
1306         {
1307           tmp = svm_fifo_find_next_chunk (f, f->tail_chunk,
1308                                           f->ooo_enq->start_byte);
1309         }
1310       if (tmp != f->ooo_enq)
1311         return 0;
1312     }
1313
1314   if (f->start_chunk->next)
1315     {
1316       svm_fifo_chunk_t *c, *prev = 0, *tmp;
1317       u32 chunks_bytes = 0;
1318
1319       c = f->start_chunk;
1320       do
1321         {
1322           tmp = svm_fifo_find_chunk (f, c->start_byte);
1323           if (tmp != c)
1324             return 0;
1325           if (prev && (prev->start_byte + prev->length != c->start_byte))
1326             return 0;
1327
1328           if (c->enq_rb_index != RBTREE_TNIL_INDEX)
1329             {
1330               tmp = f_find_chunk_rbtree (&f->ooo_enq_lookup, c->start_byte);
1331               if (tmp)
1332                 {
1333                   if (tmp != c)
1334                     return 0;
1335                 }
1336             }
1337           if (c->deq_rb_index != RBTREE_TNIL_INDEX)
1338             {
1339               tmp = f_find_chunk_rbtree (&f->ooo_deq_lookup, c->start_byte);
1340               if (tmp)
1341                 {
1342                   if (tmp != c)
1343                     return 0;
1344                 }
1345             }
1346
1347           chunks_bytes += c->length;
1348           prev = c;
1349           c = c->next;
1350         }
1351       while (c);
1352
1353       if (chunks_bytes < f->tail - f->head)
1354         return 0;
1355     }
1356
1357   return 1;
1358 }
1359
1360 u32
1361 svm_fifo_n_chunks (svm_fifo_t * f)
1362 {
1363   svm_fifo_chunk_t *c;
1364   int n_chunks = 0;
1365
1366   c = f->start_chunk;
1367   while (c)
1368     {
1369       n_chunks++;
1370       c = c->next;
1371     }
1372
1373   return n_chunks;
1374 }
1375
1376 u8 *
1377 format_ooo_segment (u8 * s, va_list * args)
1378 {
1379   svm_fifo_t __clib_unused *f = va_arg (*args, svm_fifo_t *);
1380   ooo_segment_t *seg = va_arg (*args, ooo_segment_t *);
1381   s = format (s, "[%u, %u], len %u, next %d, prev %d", seg->start,
1382               seg->start + seg->length, seg->length, seg->next, seg->prev);
1383   return s;
1384 }
1385
1386 u8 *
1387 svm_fifo_dump_trace (u8 * s, svm_fifo_t * f)
1388 {
1389 #if SVM_FIFO_TRACE
1390   svm_fifo_trace_elem_t *seg = 0;
1391   int i = 0;
1392
1393   if (f->trace)
1394     {
1395       vec_foreach (seg, f->trace)
1396       {
1397         s = format (s, "{%u, %u, %u}, ", seg->offset, seg->len, seg->action);
1398         i++;
1399         if (i % 5 == 0)
1400           s = format (s, "\n");
1401       }
1402       s = format (s, "\n");
1403     }
1404   return s;
1405 #else
1406   return 0;
1407 #endif
1408 }
1409
1410 u8 *
1411 svm_fifo_replay (u8 * s, svm_fifo_t * f, u8 no_read, u8 verbose)
1412 {
1413   int i, trace_len;
1414   u8 *data = 0;
1415   svm_fifo_trace_elem_t *trace;
1416   u32 offset;
1417   svm_fifo_t *dummy_fifo;
1418
1419   if (!f)
1420     return s;
1421
1422 #if SVM_FIFO_TRACE
1423   trace = f->trace;
1424   trace_len = vec_len (trace);
1425 #else
1426   trace = 0;
1427   trace_len = 0;
1428 #endif
1429
1430   dummy_fifo = svm_fifo_alloc (f->size);
1431   svm_fifo_init (f, f->size);
1432   clib_memset (f->head_chunk->data, 0xFF, f->size);
1433   vec_validate (data, f->size);
1434   for (i = 0; i < vec_len (data); i++)
1435     data[i] = i;
1436
1437   for (i = 0; i < trace_len; i++)
1438     {
1439       offset = trace[i].offset;
1440       if (trace[i].action == 1)
1441         {
1442           if (verbose)
1443             s = format (s, "adding [%u, %u]:", trace[i].offset,
1444                         (trace[i].offset + trace[i].len));
1445           svm_fifo_enqueue_with_offset (dummy_fifo, trace[i].offset,
1446                                         trace[i].len, &data[offset]);
1447         }
1448       else if (trace[i].action == 2)
1449         {
1450           if (verbose)
1451             s = format (s, "adding [%u, %u]:", 0, trace[i].len);
1452           svm_fifo_enqueue (dummy_fifo, trace[i].len, &data[offset]);
1453         }
1454       else if (!no_read)
1455         {
1456           if (verbose)
1457             s = format (s, "read: %u", trace[i].len);
1458           svm_fifo_dequeue_drop (dummy_fifo, trace[i].len);
1459         }
1460       if (verbose)
1461         s = format (s, "%U", format_svm_fifo, dummy_fifo, 1);
1462     }
1463
1464   s = format (s, "result: %U", format_svm_fifo, dummy_fifo, 1);
1465
1466   return s;
1467 }
1468
1469 u8 *
1470 format_ooo_list (u8 * s, va_list * args)
1471 {
1472   svm_fifo_t *f = va_arg (*args, svm_fifo_t *);
1473   u32 indent = va_arg (*args, u32);
1474   u32 ooo_segment_index = f->ooos_list_head;
1475   ooo_segment_t *seg;
1476
1477   while (ooo_segment_index != OOO_SEGMENT_INVALID_INDEX)
1478     {
1479       seg = pool_elt_at_index (f->ooo_segments, ooo_segment_index);
1480       s = format (s, "%U%U\n", format_white_space, indent, format_ooo_segment,
1481                   f, seg);
1482       ooo_segment_index = seg->next;
1483     }
1484
1485   return s;
1486 }
1487
1488 u8 *
1489 format_svm_fifo (u8 * s, va_list * args)
1490 {
1491   svm_fifo_t *f = va_arg (*args, svm_fifo_t *);
1492   int verbose = va_arg (*args, int);
1493   u32 indent;
1494
1495   if (!s)
1496     return s;
1497
1498   indent = format_get_indent (s);
1499   s = format (s, "cursize %u nitems %u has_event %d min_alloc %u\n",
1500               svm_fifo_max_dequeue (f), f->size, f->has_event, f->min_alloc);
1501   s = format (s, "%Uhead %u tail %u segment manager %u\n", format_white_space,
1502               indent, f->head, f->tail, f->segment_manager);
1503
1504   if (verbose > 1)
1505     s = format (s, "%Uvpp session %d thread %d app session %d thread %d\n",
1506                 format_white_space, indent, f->master_session_index,
1507                 f->master_thread_index, f->client_session_index,
1508                 f->client_thread_index);
1509
1510   if (verbose)
1511     {
1512       s = format (s, "%Uooo pool %d active elts newest %u\n",
1513                   format_white_space, indent, pool_elts (f->ooo_segments),
1514                   f->ooos_newest);
1515       if (svm_fifo_has_ooo_data (f))
1516         s = format (s, " %U", format_ooo_list, f, indent, verbose);
1517     }
1518   return s;
1519 }
1520
1521 #endif
1522 /*
1523  * fd.io coding-style-patch-verification: ON
1524  *
1525  * Local Variables:
1526  * eval: (c-set-style "gnu")
1527  * End:
1528  */