008cca4f3502376335b4e0c6cf882786c916136d
[vpp.git] / src / svm / fifo_segment.c
1 /*
2  * Copyright (c) 2016-2019 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
16 #include <svm/fifo_segment.h>
17 #include <vppinfra/mem.h>
18
19 static inline void *
20 fsh_alloc_aligned (fifo_segment_header_t *fsh, uword size, uword align)
21 {
22   uword cur_pos, cur_pos_align, new_pos;
23
24   cur_pos = clib_atomic_load_relax_n (&fsh->byte_index);
25   cur_pos_align = round_pow2_u64 (cur_pos, align);
26   size = round_pow2_u64 (size, align);
27   new_pos = cur_pos_align + size;
28
29   if (new_pos >= fsh->max_byte_index)
30     return 0;
31
32   while (!clib_atomic_cmp_and_swap_acq_relax (&fsh->byte_index, &cur_pos,
33                                               &new_pos, 1 /* weak */))
34     {
35       cur_pos_align = round_pow2_u64 (cur_pos, align);
36       new_pos = cur_pos_align + size;
37       if (new_pos >= fsh->max_byte_index)
38         return 0;
39     }
40   return uword_to_pointer ((u8 *) fsh + cur_pos_align, void *);
41 }
42
43 static inline void *
44 fsh_alloc (fifo_segment_header_t *fsh, uword size)
45 {
46   return fsh_alloc_aligned (fsh, size, 8);
47 }
48
49 static inline fifo_segment_slice_t *
50 fsh_slice_get (fifo_segment_header_t * fsh, u32 slice_index)
51 {
52   return &fsh->slices[slice_index];
53 }
54
55 static char *fifo_segment_mem_status_strings[] = {
56 #define _(sym,str) str,
57   foreach_segment_mem_status
58 #undef _
59 };
60
61 static inline uword
62 fsh_n_free_bytes (fifo_segment_header_t * fsh)
63 {
64   uword cur_pos = clib_atomic_load_relax_n (&fsh->byte_index);
65   ASSERT (fsh->max_byte_index > cur_pos);
66   return fsh->max_byte_index - cur_pos;
67 }
68
69 static inline void
70 fsh_cached_bytes_add (fifo_segment_header_t * fsh, uword size)
71 {
72   clib_atomic_fetch_add_rel (&fsh->n_cached_bytes, size);
73 }
74
75 static inline void
76 fsh_cached_bytes_sub (fifo_segment_header_t * fsh, uword size)
77 {
78   clib_atomic_fetch_sub_rel (&fsh->n_cached_bytes, size);
79 }
80
81 static inline uword
82 fsh_n_cached_bytes (fifo_segment_header_t * fsh)
83 {
84   uword n_cached = clib_atomic_load_relax_n (&fsh->n_cached_bytes);
85   return n_cached;
86 }
87
88 static inline void
89 fsh_active_fifos_update (fifo_segment_header_t * fsh, int inc)
90 {
91   clib_atomic_fetch_add_rel (&fsh->n_active_fifos, inc);
92 }
93
94 static inline u32
95 fsh_n_active_fifos (fifo_segment_header_t * fsh)
96 {
97   return clib_atomic_load_relax_n (&fsh->n_active_fifos);
98 }
99
100 static inline uword
101 fsh_virtual_mem (fifo_segment_header_t * fsh)
102 {
103   fifo_segment_slice_t *fss;
104   uword total_vm = 0;
105   int i;
106
107   for (i = 0; i < fsh->n_slices; i++)
108     {
109       fss = fsh_slice_get (fsh, i);
110       total_vm += clib_atomic_load_relax_n (&fss->virtual_mem);
111     }
112   return total_vm;
113 }
114
115 void
116 fsh_virtual_mem_update (fifo_segment_header_t * fsh, u32 slice_index,
117                         int n_bytes)
118 {
119   fifo_segment_slice_t *fss = fsh_slice_get (fsh, slice_index);
120   fss->virtual_mem += n_bytes;
121 }
122
123 static inline void
124 fss_chunk_freelist_lock (fifo_segment_slice_t *fss)
125 {
126   u32 free = 0;
127   while (!clib_atomic_cmp_and_swap_acq_relax_n (&fss->chunk_lock, &free, 1, 0))
128     {
129       /* atomic load limits number of compare_exchange executions */
130       while (clib_atomic_load_relax_n (&fss->chunk_lock))
131         CLIB_PAUSE ();
132       /* on failure, compare_exchange writes (*p)->lock into free */
133       free = 0;
134     }
135 }
136
137 static inline void
138 fss_chunk_freelist_unlock (fifo_segment_slice_t *fss)
139 {
140   /* Make sure all reads/writes are complete before releasing the lock */
141   clib_atomic_release (&fss->chunk_lock);
142 }
143
144 static inline int
145 fss_chunk_fl_index_is_valid (fifo_segment_slice_t * fss, u32 fl_index)
146 {
147   return (fl_index < FS_CHUNK_VEC_LEN);
148 }
149
150 static void
151 fss_chunk_free_list_push (fifo_segment_header_t *fsh,
152                           fifo_segment_slice_t *fss, u32 fl_index,
153                           svm_fifo_chunk_t *c)
154 {
155   fss_chunk_freelist_lock (fss);
156   c->next = fss->free_chunks[fl_index];
157   fss->free_chunks[fl_index] = fs_chunk_sptr (fsh, c);
158   fss_chunk_freelist_unlock (fss);
159 }
160
161 static void
162 fss_chunk_free_list_push_list (fifo_segment_header_t *fsh,
163                                fifo_segment_slice_t *fss, u32 fl_index,
164                                svm_fifo_chunk_t *head, svm_fifo_chunk_t *tail)
165 {
166   fss_chunk_freelist_lock (fss);
167   tail->next = fss->free_chunks[fl_index];
168   fss->free_chunks[fl_index] = fs_chunk_sptr (fsh, head);
169   fss_chunk_freelist_unlock (fss);
170 }
171
172 static svm_fifo_chunk_t *
173 fss_chunk_free_list_pop (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss,
174                          u32 fl_index)
175 {
176   svm_fifo_chunk_t *c;
177
178   ASSERT (fss_chunk_fl_index_is_valid (fss, fl_index));
179
180   fss_chunk_freelist_lock (fss);
181
182   if (!fss->free_chunks[fl_index])
183     {
184       fss_chunk_freelist_unlock (fss);
185       return 0;
186     }
187
188   c = fs_chunk_ptr (fsh, fss->free_chunks[fl_index]);
189   fss->free_chunks[fl_index] = c->next;
190
191   fss_chunk_freelist_unlock (fss);
192
193   return c;
194 }
195
196 static inline void
197 fss_fifo_add_active_list (fifo_segment_slice_t * fss, svm_fifo_t * f)
198 {
199   if (fss->fifos)
200     {
201       fss->fifos->prev = f;
202       f->next = fss->fifos;
203     }
204   fss->fifos = f;
205 }
206
207 static inline void
208 fss_fifo_del_active_list (fifo_segment_slice_t * fss, svm_fifo_t * f)
209 {
210   if (f->flags & SVM_FIFO_F_LL_TRACKED)
211     {
212       if (f->prev)
213         f->prev->next = f->next;
214       else
215         fss->fifos = f->next;
216       if (f->next)
217         f->next->prev = f->prev;
218     }
219 }
220
221 static inline uword
222 fss_fl_chunk_bytes (fifo_segment_slice_t * fss)
223 {
224   return clib_atomic_load_relax_n (&fss->n_fl_chunk_bytes);
225 }
226
227 static inline void
228 fss_fl_chunk_bytes_add (fifo_segment_slice_t * fss, uword size)
229 {
230   clib_atomic_fetch_add_relax (&fss->n_fl_chunk_bytes, size);
231 }
232
233 static inline void
234 fss_fl_chunk_bytes_sub (fifo_segment_slice_t * fss, uword size)
235 {
236   clib_atomic_fetch_sub_relax (&fss->n_fl_chunk_bytes, size);
237 }
238
239 /**
240  * Initialize fifo segment shared header
241  */
242 int
243 fifo_segment_init (fifo_segment_t * fs)
244 {
245   u32 align = 8, offset = 2 * 4096, slices_sz, i;
246   uword max_fifo, seg_start, seg_sz;
247   fifo_segment_header_t *fsh;
248   ssvm_shared_header_t *sh;
249   void *seg_data;
250
251   /* TODO remove ssvm heap entirely */
252   sh = fs->ssvm.sh;
253
254   seg_data = (u8 *) sh + offset;
255   seg_sz = sh->ssvm_size - offset;
256
257   fs->n_slices = clib_max (fs->n_slices, 1);
258   slices_sz = sizeof (fifo_segment_slice_t) * fs->n_slices;
259
260   seg_start = round_pow2_u64 (pointer_to_uword (seg_data), align);
261   fsh = uword_to_pointer (seg_start, void *);
262   memset (fsh, 0, sizeof (*fsh) + slices_sz);
263
264   fsh->byte_index = sizeof (*fsh) + slices_sz;
265   fsh->max_byte_index = seg_sz;
266   fsh->n_slices = fs->n_slices;
267   max_fifo = clib_min ((seg_sz - slices_sz) / 2, FIFO_SEGMENT_MAX_FIFO_SIZE);
268   fsh->max_log2_fifo_size = min_log2 (max_fifo);
269   fsh->n_cached_bytes = 0;
270   fsh->n_reserved_bytes = fsh->byte_index;
271   ASSERT (fsh->max_byte_index <= sh->ssvm_size - offset);
272
273   fs->max_byte_index = fsh->max_byte_index;
274   fs->h = sh->opaque[0] = fsh;
275
276   vec_validate (fs->slices, fs->n_slices - 1);
277   for (i = 0; i < fs->n_slices; i++)
278     fs->slices[i].fifos =
279       clib_mem_bulk_init (sizeof (svm_fifo_t), CLIB_CACHE_LINE_BYTES, 32);
280
281   sh->ready = 1;
282   return (0);
283 }
284
285 /**
286  * Create a fifo segment and initialize as master
287  */
288 int
289 fifo_segment_create (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
290 {
291   fifo_segment_t *fs;
292   uword baseva;
293   int rv;
294
295   /* Allocate a fresh segment */
296   pool_get_zero (sm->segments, fs);
297
298   baseva = a->segment_type == SSVM_SEGMENT_PRIVATE ? ~0ULL : sm->next_baseva;
299   fs->ssvm.ssvm_size = a->segment_size;
300   fs->ssvm.is_server = 1;
301   fs->ssvm.my_pid = getpid ();
302   fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
303   fs->ssvm.requested_va = baseva;
304
305   if ((rv = ssvm_server_init (&fs->ssvm, a->segment_type)))
306     {
307       pool_put (sm->segments, fs);
308       return (rv);
309     }
310
311   /* Note: requested_va updated due to seg base addr randomization */
312   sm->next_baseva = fs->ssvm.sh->ssvm_va + fs->ssvm.ssvm_size;
313
314   fifo_segment_init (fs);
315   vec_add1 (a->new_segment_indices, fs - sm->segments);
316   return (0);
317 }
318
319 /**
320  * Attach as slave to a fifo segment
321  */
322 int
323 fifo_segment_attach (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
324 {
325   fifo_segment_header_t *fsh;
326   fifo_segment_t *fs;
327   int rv;
328
329   pool_get_zero (sm->segments, fs);
330
331   fs->ssvm.ssvm_size = a->segment_size;
332   fs->ssvm.my_pid = getpid ();
333   fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
334   fs->ssvm.requested_va = sm->next_baseva;
335   if (a->segment_type == SSVM_SEGMENT_MEMFD)
336     fs->ssvm.fd = a->memfd_fd;
337   else
338     fs->ssvm.attach_timeout = sm->timeout_in_seconds;
339
340   if ((rv = ssvm_client_init (&fs->ssvm, a->segment_type)))
341     {
342       _vec_len (fs) = vec_len (fs) - 1;
343       return (rv);
344     }
345
346   /* Fish the segment header */
347   fsh = fs->h = fs->ssvm.sh->opaque[0];
348
349   /* Probably a segment without fifos */
350   if (!fsh)
351     goto done;
352
353   fs->max_byte_index = fsh->max_byte_index;
354   vec_validate (fs->slices, 0);
355   fs->slices[0].fifos =
356     clib_mem_bulk_init (sizeof (svm_fifo_t), CLIB_CACHE_LINE_BYTES, 32);
357
358 done:
359   vec_add1 (a->new_segment_indices, fs - sm->segments);
360   return (0);
361 }
362
363 void
364 fifo_segment_delete (fifo_segment_main_t * sm, fifo_segment_t * s)
365 {
366   fifo_segment_cleanup (s);
367   ssvm_delete (&s->ssvm);
368   clib_memset (s, 0xfe, sizeof (*s));
369   pool_put (sm->segments, s);
370 }
371
372 u32
373 fifo_segment_index (fifo_segment_main_t * sm, fifo_segment_t * s)
374 {
375   return s - sm->segments;
376 }
377
378 fifo_segment_t *
379 fifo_segment_get_segment (fifo_segment_main_t * sm, u32 segment_index)
380 {
381   return pool_elt_at_index (sm->segments, segment_index);
382 }
383
384 void
385 fifo_segment_info (fifo_segment_t * seg, char **address, size_t * size)
386 {
387   *address = (char *) seg->ssvm.sh->ssvm_va;
388   *size = seg->ssvm.ssvm_size;
389 }
390
391 void
392 fifo_segment_main_init (fifo_segment_main_t * sm, u64 baseva,
393                         u32 timeout_in_seconds)
394 {
395   sm->next_baseva = baseva;
396   sm->timeout_in_seconds = timeout_in_seconds;
397 }
398
399 static inline u32
400 fs_freelist_for_size (u32 size)
401 {
402   if (PREDICT_FALSE (size < FIFO_SEGMENT_MIN_FIFO_SIZE))
403     return 0;
404   return clib_min (max_log2 (size) - FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE,
405                    FS_CHUNK_VEC_LEN - 1);
406 }
407
408 static inline u32
409 fs_freelist_index_to_size (u32 fl_index)
410 {
411   return 1 << (fl_index + FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE);
412 }
413
414 static inline int
415 fs_chunk_size_is_valid (fifo_segment_header_t * fsh, u32 size)
416 {
417   /*
418    * 4K minimum. It's not likely that anything good will happen
419    * with a smaller FIFO.
420    */
421   return size >= FIFO_SEGMENT_MIN_FIFO_SIZE &&
422          size <= (1ULL << fsh->max_log2_fifo_size);
423 }
424
425 svm_fifo_chunk_t *
426 fs_try_alloc_multi_chunk (fifo_segment_header_t * fsh,
427                           fifo_segment_slice_t * fss, u32 data_bytes)
428 {
429   u32 fl_index, fl_size, n_alloc = 0, req_bytes = data_bytes;
430   svm_fifo_chunk_t *c, *first = 0, *next;
431
432   fl_index = fs_freelist_for_size (req_bytes);
433   if (fl_index > 0)
434     fl_index -= 1;
435
436   fl_size = fs_freelist_index_to_size (fl_index);
437
438   while (req_bytes)
439     {
440       c = fss_chunk_free_list_pop (fsh, fss, fl_index);
441       if (c)
442         {
443           c->next = fs_chunk_sptr (fsh, first);
444           first = c;
445           n_alloc += fl_size;
446           req_bytes -= clib_min (fl_size, req_bytes);
447         }
448       else
449         {
450           /* Failed to allocate with smaller chunks */
451           if (fl_index == 0)
452             {
453               /* Free all chunks if any allocated */
454               c = first;
455               while (c)
456                 {
457                   fl_index = fs_freelist_for_size (c->length);
458                   next = fs_chunk_ptr (fsh, c->next);
459                   fss_chunk_free_list_push (fsh, fss, fl_index, c);
460                   c = next;
461                 }
462               n_alloc = 0;
463               first = 0;
464               /* As last attempt, try allocating a chunk larger than
465                * the requested size, if possible */
466               fl_index = fs_freelist_for_size (data_bytes) + 1;
467               if (!fss_chunk_fl_index_is_valid (fss, fl_index))
468                 return 0;
469               first = fss_chunk_free_list_pop (fsh, fss, fl_index);
470               if (first)
471                 {
472                   first->next = 0;
473                   n_alloc = fs_freelist_index_to_size (fl_index);
474                   goto done;
475                 }
476               return 0;
477             }
478           fl_index -= 1;
479           fl_size = fl_size >> 1;
480         }
481     }
482
483 done:
484   fss_fl_chunk_bytes_sub (fss, n_alloc);
485   fsh_cached_bytes_sub (fsh, n_alloc);
486   return first;
487 }
488
489 static int
490 fsh_try_alloc_fifo_hdr_batch (fifo_segment_header_t * fsh,
491                               fifo_segment_slice_t * fss, u32 batch_size)
492 {
493   svm_fifo_shared_t *f;
494   uword size;
495   u8 *fmem;
496   int i;
497
498   ASSERT (batch_size != 0);
499
500   size = (uword) sizeof (*f) * batch_size;
501
502   fmem = fsh_alloc_aligned (fsh, size, CLIB_CACHE_LINE_BYTES);
503   if (fmem == 0)
504     return -1;
505
506   /* Carve fifo hdr space */
507   for (i = 0; i < batch_size; i++)
508     {
509       f = (svm_fifo_shared_t *) fmem;
510       memset (f, 0, sizeof (*f));
511       f->next = fss->free_fifos;
512       fss->free_fifos = f;
513       fmem += sizeof (*f);
514     }
515
516   return 0;
517 }
518
519 static int
520 fsh_try_alloc_chunk_batch (fifo_segment_header_t * fsh,
521                            fifo_segment_slice_t * fss,
522                            u32 fl_index, u32 batch_size)
523 {
524   svm_fifo_chunk_t *c, *head = 0, *tail;
525   uword size, total_chunk_bytes;
526   u32 rounded_data_size;
527   u8 *cmem;
528   int i;
529
530   ASSERT (batch_size != 0);
531
532   rounded_data_size = fs_freelist_index_to_size (fl_index);
533   total_chunk_bytes = (uword) batch_size *rounded_data_size;
534   size = (uword) (sizeof (*c) + rounded_data_size) * batch_size;
535
536   cmem = fsh_alloc_aligned (fsh, size, 8 /* chunk hdr is 24B */);
537   if (cmem == 0)
538     return -1;
539
540   /* Carve fifo + chunk space */
541   tail = c = (svm_fifo_chunk_t *) cmem;
542   for (i = 0; i < batch_size; i++)
543     {
544       c->start_byte = 0;
545       c->length = rounded_data_size;
546       c->next = fs_chunk_sptr (fsh, head);
547       head = c;
548       cmem += sizeof (*c) + rounded_data_size;
549       c = (svm_fifo_chunk_t *) cmem;
550     }
551
552   fss_chunk_free_list_push_list (fsh, fss, fl_index, head, tail);
553   fss->num_chunks[fl_index] += batch_size;
554   fss_fl_chunk_bytes_add (fss, total_chunk_bytes);
555   fsh_cached_bytes_add (fsh, total_chunk_bytes);
556
557   return 0;
558 }
559
560 static int
561 fs_try_alloc_fifo_batch (fifo_segment_header_t * fsh,
562                          fifo_segment_slice_t * fss,
563                          u32 fl_index, u32 batch_size)
564 {
565   if (fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size))
566     return 0;
567   return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
568 }
569
570 static svm_fifo_shared_t *
571 fsh_try_alloc_fifo_hdr (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
572 {
573   svm_fifo_shared_t *f;
574
575   if (!fss->free_fifos)
576     {
577       if (fsh_try_alloc_fifo_hdr_batch (fsh, fss,
578                                         FIFO_SEGMENT_ALLOC_BATCH_SIZE))
579         return 0;
580     }
581
582   f = fss->free_fifos;
583   fss->free_fifos = f->next;
584   memset (f, 0, sizeof (*f));
585   return f;
586 }
587
588 static svm_fifo_chunk_t *
589 fsh_try_alloc_chunk (fifo_segment_header_t * fsh,
590                      fifo_segment_slice_t * fss, u32 data_bytes)
591 {
592   svm_fifo_chunk_t *c;
593   u32 fl_index;
594
595   fl_index = fs_freelist_for_size (data_bytes);
596
597 free_list:
598   c = fss_chunk_free_list_pop (fsh, fss, fl_index);
599   if (c)
600     {
601       c->next = 0;
602       fss_fl_chunk_bytes_sub (fss, fs_freelist_index_to_size (fl_index));
603       fsh_cached_bytes_sub (fsh, fs_freelist_index_to_size (fl_index));
604     }
605   else
606     {
607       u32 chunk_size, batch = FIFO_SEGMENT_ALLOC_BATCH_SIZE;
608       uword n_free;
609
610       chunk_size = fs_freelist_index_to_size (fl_index);
611       n_free = fsh_n_free_bytes (fsh);
612
613       if (chunk_size <= n_free)
614         {
615           batch = chunk_size * batch <= n_free ? batch : 1;
616           if (!fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch))
617             goto free_list;
618         }
619       /* Failed to allocate larger chunk, try to allocate multi-chunk
620        * that is close to what was actually requested */
621       if (data_bytes <= fss_fl_chunk_bytes (fss))
622         {
623           c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
624           if (c)
625             goto done;
626           batch = n_free / FIFO_SEGMENT_MIN_FIFO_SIZE;
627           if (!batch || fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
628             goto done;
629         }
630       if (data_bytes <= fss_fl_chunk_bytes (fss) + n_free)
631         {
632           u32 min_size = FIFO_SEGMENT_MIN_FIFO_SIZE;
633
634           batch = (data_bytes - fss_fl_chunk_bytes (fss)) / min_size;
635           batch = clib_min (batch + 1, n_free / min_size);
636           if (fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
637             goto done;
638           c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
639         }
640     }
641
642 done:
643
644   return c;
645 }
646
647 /**
648  * Try to allocate new fifo
649  *
650  * Tries the following steps in order:
651  * - grab fifo and chunk from freelists
652  * - batch fifo and chunk allocation
653  * - single fifo allocation
654  * - grab multiple fifo chunks from freelists
655  */
656 static svm_fifo_shared_t *
657 fs_try_alloc_fifo (fifo_segment_header_t *fsh, u32 slice_index, u32 data_bytes)
658 {
659   fifo_segment_slice_t *fss;
660   u32 fl_index, min_size;
661   svm_fifo_chunk_t *c;
662   svm_fifo_shared_t *sf = 0;
663
664   fss = fsh_slice_get (fsh, slice_index);
665   min_size = clib_max ((fsh->pct_first_alloc * data_bytes) / 100, 4096);
666   fl_index = fs_freelist_for_size (min_size);
667
668   if (!fss_chunk_fl_index_is_valid (fss, fl_index))
669     return 0;
670
671   sf = fsh_try_alloc_fifo_hdr (fsh, fss);
672   if (!sf)
673     return 0;
674
675   c = fsh_try_alloc_chunk (fsh, fss, min_size);
676   if (!c)
677     {
678       sf->next = fss->free_fifos;
679       fss->free_fifos = sf;
680       return 0;
681     }
682
683   sf->start_chunk = fs_chunk_sptr (fsh, c);
684   while (c->next)
685     c = fs_chunk_ptr (fsh, c->next);
686   sf->end_chunk = fs_chunk_sptr (fsh, c);
687   sf->size = data_bytes;
688   sf->slice_index = slice_index;
689
690   return sf;
691 }
692
693 svm_fifo_chunk_t *
694 fsh_alloc_chunk (fifo_segment_header_t * fsh, u32 slice_index, u32 chunk_size)
695 {
696   fifo_segment_slice_t *fss;
697   svm_fifo_chunk_t *c;
698
699   fss = fsh_slice_get (fsh, slice_index);
700   c = fsh_try_alloc_chunk (fsh, fss, chunk_size);
701
702   return c;
703 }
704
705 static void
706 fsh_slice_collect_chunks (fifo_segment_header_t * fsh,
707                           fifo_segment_slice_t * fss, svm_fifo_chunk_t * c)
708 {
709   u32 n_collect = 0, fl_index;
710   svm_fifo_chunk_t *next;
711
712   while (c)
713     {
714       CLIB_MEM_UNPOISON (c, sizeof (*c));
715       next = fs_chunk_ptr (fsh, c->next);
716       fl_index = fs_freelist_for_size (c->length);
717       fss_chunk_free_list_push (fsh, fss, fl_index, c);
718       n_collect += fs_freelist_index_to_size (fl_index);
719       c = next;
720     }
721
722   fss_fl_chunk_bytes_add (fss, n_collect);
723   fsh_cached_bytes_add (fsh, n_collect);
724 }
725
726 void
727 fsh_collect_chunks (fifo_segment_header_t * fsh, u32 slice_index,
728                     svm_fifo_chunk_t * c)
729 {
730   fifo_segment_slice_t *fss;
731   fss = fsh_slice_get (fsh, slice_index);
732   fsh_slice_collect_chunks (fsh, fss, c);
733 }
734
735 svm_fifo_t *
736 fs_fifo_alloc (fifo_segment_t *fs, u32 slice_index)
737 {
738   fifo_slice_private_t *pfss = &fs->slices[slice_index];
739   svm_fifo_t *f;
740
741   f = clib_mem_bulk_alloc (pfss->fifos);
742   clib_memset (f, 0, sizeof (*f));
743   return f;
744 }
745
746 void
747 fs_fifo_free (fifo_segment_t *fs, svm_fifo_t *f)
748 {
749   u32 slice_index = f->shr->slice_index;
750   fifo_slice_private_t *pfss;
751
752   pfss = &fs->slices[slice_index];
753   clib_mem_bulk_free (pfss->fifos, f);
754 }
755
756 void
757 fifo_segment_cleanup (fifo_segment_t *fs)
758 {
759   int slice_index;
760
761   for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
762     clib_mem_bulk_destroy (fs->slices[slice_index].fifos);
763 }
764
765 /**
766  * Allocate fifo in fifo segment
767  */
768 svm_fifo_t *
769 fifo_segment_alloc_fifo_w_slice (fifo_segment_t * fs, u32 slice_index,
770                                  u32 data_bytes, fifo_segment_ftype_t ftype)
771 {
772   fifo_segment_header_t *fsh = fs->h;
773   fifo_segment_slice_t *fss;
774   svm_fifo_shared_t *sf;
775   svm_fifo_t *f = 0;
776
777   ASSERT (slice_index < fs->n_slices);
778
779   if (PREDICT_FALSE (data_bytes > 1 << fsh->max_log2_fifo_size))
780     return 0;
781
782   sf = fs_try_alloc_fifo (fsh, slice_index, data_bytes);
783   if (!sf)
784     goto done;
785
786   f = fs_fifo_alloc (fs, slice_index);
787   f->fs_hdr = fsh;
788   f->shr = sf;
789
790   svm_fifo_init (f, data_bytes);
791
792   fss = fsh_slice_get (fsh, slice_index);
793
794   /* If rx fifo type add to active fifos list. When cleaning up segment,
795    * we need a list of active sessions that should be disconnected. Since
796    * both rx and tx fifos keep pointers to the session, it's enough to track
797    * only one. */
798   if (ftype == FIFO_SEGMENT_RX_FIFO)
799     {
800       fss_fifo_add_active_list (fss, f);
801       f->flags |= SVM_FIFO_F_LL_TRACKED;
802     }
803
804   fsh_active_fifos_update (fsh, 1);
805   fss->virtual_mem += svm_fifo_size (f);
806
807 done:
808   return (f);
809 }
810
811 svm_fifo_t *
812 fifo_segment_alloc_fifo_w_shared (fifo_segment_t *fs, svm_fifo_shared_t *sf)
813 {
814   svm_fifo_t *f = fs_fifo_alloc (fs, 0);
815   f->fs_hdr = fs->h;
816   f->shr = sf;
817
818   f->ooos_list_head = OOO_SEGMENT_INVALID_INDEX;
819   f->segment_index = SVM_FIFO_INVALID_INDEX;
820   f->refcnt = 1;
821   return f;
822 }
823
824 /**
825  * Free fifo allocated in fifo segment
826  */
827 void
828 fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f)
829 {
830   fifo_segment_header_t *fsh = fs->h;
831   fifo_segment_slice_t *fss;
832   svm_fifo_shared_t *sf;
833
834   ASSERT (f->refcnt > 0);
835
836   if (--f->refcnt > 0)
837     return;
838
839   /*
840    * Cleanup shared state
841    */
842
843   sf = f->shr;
844   fss = fsh_slice_get (fsh, sf->slice_index);
845
846   /* Free fifo chunks */
847   fsh_slice_collect_chunks (fsh, fss, fs_chunk_ptr (fsh, f->shr->start_chunk));
848
849   sf->start_chunk = sf->end_chunk = 0;
850   sf->head_chunk = sf->tail_chunk = 0;
851
852   /* Add to free list */
853   sf->next = fss->free_fifos;
854   fss->free_fifos = sf;
855
856   fss->virtual_mem -= svm_fifo_size (f);
857
858   /*
859    *  Cleanup private state
860    */
861
862   /* Remove from active list. Only rx fifos are tracked */
863   if (f->flags & SVM_FIFO_F_LL_TRACKED)
864     {
865       fss_fifo_del_active_list (fss, f);
866       f->flags &= ~SVM_FIFO_F_LL_TRACKED;
867     }
868
869   svm_fifo_free_chunk_lookup (f);
870   svm_fifo_free_ooo_data (f);
871
872   if (CLIB_DEBUG)
873     {
874       sf->master_session_index = ~0;
875       f->master_thread_index = ~0;
876     }
877
878   f->ooo_enq = f->ooo_deq = 0;
879   f->prev = 0;
880
881   fs_fifo_free (fs, f);
882
883   fsh_active_fifos_update (fsh, -1);
884 }
885
886 void
887 fifo_segment_detach_fifo (fifo_segment_t * fs, svm_fifo_t * f)
888 {
889   fifo_segment_slice_t *fss;
890   svm_fifo_chunk_t *c;
891   u32 fl_index;
892
893   ASSERT (f->refcnt == 1);
894
895   fss = fsh_slice_get (fs->h, f->shr->slice_index);
896   fss->virtual_mem -= svm_fifo_size (f);
897   if (f->flags & SVM_FIFO_F_LL_TRACKED)
898     fss_fifo_del_active_list (fss, f);
899
900   c = fs_chunk_ptr (fs->h, f->shr->start_chunk);
901   while (c)
902     {
903       fl_index = fs_freelist_for_size (c->length);
904       clib_atomic_fetch_sub_rel (&fss->num_chunks[fl_index], 1);
905       c = fs_chunk_ptr (fs->h, c->next);
906     }
907 }
908
909 void
910 fifo_segment_attach_fifo (fifo_segment_t * fs, svm_fifo_t * f,
911                           u32 slice_index)
912 {
913   fifo_segment_slice_t *fss;
914   svm_fifo_chunk_t *c;
915   u32 fl_index;
916
917   f->shr->slice_index = slice_index;
918   fss = fsh_slice_get (fs->h, f->shr->slice_index);
919   fss->virtual_mem += svm_fifo_size (f);
920   if (f->flags & SVM_FIFO_F_LL_TRACKED)
921     fss_fifo_add_active_list (fss, f);
922
923   c = fs_chunk_ptr (fs->h, f->shr->start_chunk);
924   while (c)
925     {
926       fl_index = fs_freelist_for_size (c->length);
927       clib_atomic_fetch_add_rel (&fss->num_chunks[fl_index], 1);
928       c = fs_chunk_ptr (fs->h, c->next);
929     }
930 }
931
932 int
933 fifo_segment_prealloc_fifo_hdrs (fifo_segment_t * fs, u32 slice_index,
934                                  u32 batch_size)
935 {
936   fifo_segment_header_t *fsh = fs->h;
937   fifo_segment_slice_t *fss;
938
939   fss = fsh_slice_get (fsh, slice_index);
940   return fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size);
941 }
942
943 int
944 fifo_segment_prealloc_fifo_chunks (fifo_segment_t * fs, u32 slice_index,
945                                    u32 chunk_size, u32 batch_size)
946 {
947   fifo_segment_header_t *fsh = fs->h;
948   fifo_segment_slice_t *fss;
949   u32 fl_index;
950
951   if (!fs_chunk_size_is_valid (fsh, chunk_size))
952     {
953       clib_warning ("chunk size out of range %d", chunk_size);
954       return -1;
955     }
956
957   fl_index = fs_freelist_for_size (chunk_size);
958   fss = fsh_slice_get (fsh, slice_index);
959
960   return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
961 }
962
963 /**
964  * Pre-allocates fifo pairs in fifo segment
965  */
966 void
967 fifo_segment_preallocate_fifo_pairs (fifo_segment_t * fs,
968                                      u32 rx_fifo_size, u32 tx_fifo_size,
969                                      u32 * n_fifo_pairs)
970 {
971   u32 rx_rounded_data_size, tx_rounded_data_size, pair_size, pairs_to_alloc;
972   u32 hdrs, pairs_per_slice, alloc_now;
973   fifo_segment_header_t *fsh = fs->h;
974   int rx_fl_index, tx_fl_index, i;
975   fifo_segment_slice_t *fss;
976   uword space_available;
977
978   /* Parameter check */
979   if (rx_fifo_size == 0 || tx_fifo_size == 0 || *n_fifo_pairs == 0)
980     return;
981
982   if (!fs_chunk_size_is_valid (fsh, rx_fifo_size))
983     {
984       clib_warning ("rx fifo_size out of range %d", rx_fifo_size);
985       return;
986     }
987
988   if (!fs_chunk_size_is_valid (fsh, tx_fifo_size))
989     {
990       clib_warning ("tx fifo_size out of range %d", tx_fifo_size);
991       return;
992     }
993
994   rx_rounded_data_size = (1 << (max_log2 (rx_fifo_size)));
995   rx_fl_index = fs_freelist_for_size (rx_fifo_size);
996   tx_rounded_data_size = (1 << (max_log2 (tx_fifo_size)));
997   tx_fl_index = fs_freelist_for_size (tx_fifo_size);
998
999   hdrs = sizeof (svm_fifo_t) + sizeof (svm_fifo_chunk_t);
1000
1001   /* Calculate space requirements */
1002   pair_size = 2 * hdrs + rx_rounded_data_size + tx_rounded_data_size;
1003   space_available = fsh_n_free_bytes (fsh);
1004   pairs_to_alloc = space_available / pair_size;
1005   pairs_to_alloc = clib_min (pairs_to_alloc, *n_fifo_pairs);
1006   pairs_per_slice = pairs_to_alloc / fs->n_slices;
1007   pairs_per_slice += pairs_to_alloc % fs->n_slices ? 1 : 0;
1008
1009   if (!pairs_per_slice)
1010     return;
1011
1012   for (i = 0; i < fs->n_slices; i++)
1013     {
1014       alloc_now = clib_min (pairs_per_slice, *n_fifo_pairs);
1015       if (0 == alloc_now)
1016         break;
1017
1018       fss = fsh_slice_get (fsh, i);
1019       if (fs_try_alloc_fifo_batch (fsh, fss, rx_fl_index, alloc_now))
1020         clib_warning ("rx prealloc failed: pairs %u", alloc_now);
1021       if (fs_try_alloc_fifo_batch (fsh, fss, tx_fl_index, alloc_now))
1022         clib_warning ("tx prealloc failed: pairs %u", alloc_now);
1023
1024       /* Account for the pairs allocated */
1025       *n_fifo_pairs -= alloc_now;
1026     }
1027 }
1028
1029 /**
1030  * Get number of active fifos
1031  */
1032 u32
1033 fifo_segment_num_fifos (fifo_segment_t * fs)
1034 {
1035   return fsh_n_active_fifos (fs->h);
1036 }
1037
1038 static u32
1039 fs_slice_num_free_fifos (fifo_segment_slice_t * fss)
1040 {
1041   svm_fifo_shared_t *f;
1042   u32 count = 0;
1043
1044   f = fss->free_fifos;
1045   if (f == 0)
1046     return 0;
1047
1048   while (f)
1049     {
1050       f = f->next;
1051       count++;
1052     }
1053   return count;
1054 }
1055
1056 u32
1057 fifo_segment_num_free_fifos (fifo_segment_t * fs)
1058 {
1059   fifo_segment_header_t *fsh = fs->h;
1060   fifo_segment_slice_t *fss;
1061   int slice_index;
1062   u32 count = 0;
1063
1064   for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1065     {
1066       fss = fsh_slice_get (fsh, slice_index);
1067       count += fs_slice_num_free_fifos (fss);
1068     }
1069   return count;
1070 }
1071
1072 static u32
1073 fs_slice_num_free_chunks (fifo_segment_header_t *fsh,
1074                           fifo_segment_slice_t *fss, u32 size)
1075 {
1076   u32 count = 0, rounded_size, fl_index;
1077   svm_fifo_chunk_t *c;
1078   int i;
1079
1080   /* Count all free chunks? */
1081   if (size == ~0)
1082     {
1083       for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
1084         {
1085           c = fs_chunk_ptr (fsh, fss->free_chunks[i]);
1086           if (c == 0)
1087             continue;
1088
1089           while (c)
1090             {
1091               c = fs_chunk_ptr (fsh, c->next);
1092               count++;
1093             }
1094         }
1095       return count;
1096     }
1097
1098   rounded_size = (1 << (max_log2 (size)));
1099   fl_index = fs_freelist_for_size (rounded_size);
1100
1101   if (fl_index >= FS_CHUNK_VEC_LEN)
1102     return 0;
1103
1104   c = fs_chunk_ptr (fsh, fss->free_chunks[fl_index]);
1105   if (c == 0)
1106     return 0;
1107
1108   while (c)
1109     {
1110       c = fs_chunk_ptr (fsh, c->next);
1111       count++;
1112     }
1113   return count;
1114 }
1115
1116 u32
1117 fifo_segment_num_free_chunks (fifo_segment_t * fs, u32 size)
1118 {
1119   fifo_segment_header_t *fsh = fs->h;
1120   fifo_segment_slice_t *fss;
1121   int slice_index;
1122   u32 count = 0;
1123
1124   for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1125     {
1126       fss = fsh_slice_get (fsh, slice_index);
1127       count += fs_slice_num_free_chunks (fsh, fss, size);
1128     }
1129   return count;
1130 }
1131
1132 uword
1133 fifo_segment_size (fifo_segment_t * fs)
1134 {
1135   return fs->h->max_byte_index - fs->h->n_reserved_bytes;
1136 }
1137
1138 u8
1139 fsh_has_reached_mem_limit (fifo_segment_header_t * fsh)
1140 {
1141   return (fsh->flags & FIFO_SEGMENT_F_MEM_LIMIT) ? 1 : 0;
1142 }
1143
1144 void
1145 fsh_reset_mem_limit (fifo_segment_header_t * fsh)
1146 {
1147   fsh->flags &= ~FIFO_SEGMENT_F_MEM_LIMIT;
1148 }
1149
1150 void *
1151 fifo_segment_alloc (fifo_segment_t *fs, uword size)
1152 {
1153   void *rv = fsh_alloc (fs->h, size);
1154   /* Mark externally allocated bytes as reserved. This helps
1155    * @ref fifo_segment_size report bytes used only for fifos */
1156   fs->h->n_reserved_bytes += size;
1157   return rv;
1158 }
1159
1160 uword
1161 fifo_segment_free_bytes (fifo_segment_t * fs)
1162 {
1163   return fsh_n_free_bytes (fs->h);
1164 }
1165
1166 uword
1167 fifo_segment_cached_bytes (fifo_segment_t * fs)
1168 {
1169   return fsh_n_cached_bytes (fs->h);
1170 }
1171
1172 uword
1173 fifo_segment_available_bytes (fifo_segment_t * fs)
1174 {
1175   return fsh_n_free_bytes (fs->h) + fsh_n_cached_bytes (fs->h);
1176 }
1177
1178 uword
1179 fifo_segment_fl_chunk_bytes (fifo_segment_t * fs)
1180 {
1181   fifo_segment_header_t *fsh = fs->h;
1182   fifo_segment_slice_t *fss;
1183   uword n_bytes = 0;
1184   int slice_index;
1185
1186   for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1187     {
1188       fss = fsh_slice_get (fsh, slice_index);
1189       n_bytes += fss_fl_chunk_bytes (fss);
1190     }
1191
1192   return n_bytes;
1193 }
1194
1195 u8
1196 fifo_segment_has_fifos (fifo_segment_t * fs)
1197 {
1198   return (fsh_n_active_fifos (fs->h) != 0);
1199 }
1200
1201 svm_fifo_t *
1202 fifo_segment_get_slice_fifo_list (fifo_segment_t * fs, u32 slice_index)
1203 {
1204   fifo_segment_header_t *fsh = fs->h;
1205   fifo_segment_slice_t *fss;
1206
1207   fss = fsh_slice_get (fsh, slice_index);
1208   return fss->fifos;
1209 }
1210
1211 u8
1212 fifo_segment_get_mem_usage (fifo_segment_t * fs)
1213 {
1214   uword size, in_use;
1215
1216   size = fifo_segment_size (fs);
1217   in_use =
1218     size - fifo_segment_free_bytes (fs) - fifo_segment_cached_bytes (fs);
1219   return (in_use * 100) / size;
1220 }
1221
1222 fifo_segment_mem_status_t
1223 fifo_segment_determine_status (fifo_segment_header_t * fsh, u8 usage)
1224 {
1225   if (!fsh->high_watermark || !fsh->low_watermark)
1226     return MEMORY_PRESSURE_NO_PRESSURE;
1227
1228   /* once the no-memory is detected, the status continues
1229    * until memory usage gets below the high watermark
1230    */
1231   if (fsh_has_reached_mem_limit (fsh))
1232     {
1233       if (usage >= fsh->high_watermark)
1234         return MEMORY_PRESSURE_NO_MEMORY;
1235       else
1236         fsh_reset_mem_limit (fsh);
1237     }
1238
1239   if (usage >= fsh->high_watermark)
1240     return MEMORY_PRESSURE_HIGH_PRESSURE;
1241
1242   else if (usage >= fsh->low_watermark)
1243     return MEMORY_PRESSURE_LOW_PRESSURE;
1244
1245   return MEMORY_PRESSURE_NO_PRESSURE;
1246 }
1247
1248 fifo_segment_mem_status_t
1249 fifo_segment_get_mem_status (fifo_segment_t * fs)
1250 {
1251   fifo_segment_header_t *fsh = fs->h;
1252   u8 usage = fifo_segment_get_mem_usage (fs);
1253
1254   return fifo_segment_determine_status (fsh, usage);
1255 }
1256
1257 u8 *
1258 format_fifo_segment_type (u8 * s, va_list * args)
1259 {
1260   fifo_segment_t *sp;
1261   sp = va_arg (*args, fifo_segment_t *);
1262   ssvm_segment_type_t st = ssvm_type (&sp->ssvm);
1263
1264   if (st == SSVM_SEGMENT_PRIVATE)
1265     s = format (s, "%s", "private");
1266   else if (st == SSVM_SEGMENT_MEMFD)
1267     s = format (s, "%s", "memfd");
1268   else if (st == SSVM_SEGMENT_SHM)
1269     s = format (s, "%s", "shm");
1270   else
1271     s = format (s, "%s", "unknown");
1272   return s;
1273 }
1274
1275 /**
1276  * Segment format function
1277  */
1278 u8 *
1279 format_fifo_segment (u8 * s, va_list * args)
1280 {
1281   u32 count, indent, active_fifos, free_fifos;
1282   fifo_segment_t *fs = va_arg (*args, fifo_segment_t *);
1283   int verbose __attribute__ ((unused)) = va_arg (*args, int);
1284   uword est_chunk_bytes, est_free_seg_bytes, free_chunks;
1285   uword chunk_bytes = 0, free_seg_bytes, chunk_size;
1286   uword tracked_cached_bytes;
1287   uword fifo_hdr = 0, reserved;
1288   fifo_segment_header_t *fsh;
1289   fifo_segment_slice_t *fss;
1290   svm_fifo_chunk_t *c;
1291   u32 slice_index;
1292   char *address;
1293   size_t size;
1294   int i;
1295   uword allocated, in_use, virt;
1296   f64 usage;
1297   fifo_segment_mem_status_t mem_st;
1298
1299   indent = format_get_indent (s) + 2;
1300
1301   if (fs == 0)
1302     {
1303       s = format (s, "%-20s%10s%15s%15s%15s%15s", "Name", "Type",
1304                   "HeapSize (M)", "ActiveFifos", "FreeFifos", "Address");
1305       return s;
1306     }
1307
1308   fifo_segment_info (fs, &address, &size);
1309   active_fifos = fifo_segment_num_fifos (fs);
1310   free_fifos = fifo_segment_num_free_fifos (fs);
1311
1312   s = format (s, "%-20v%10U%15llu%15u%15u%15llx", ssvm_name (&fs->ssvm),
1313               format_fifo_segment_type, fs, size >> 20ULL, active_fifos,
1314               free_fifos, address);
1315
1316   if (!verbose)
1317     return s;
1318
1319   fsh = fs->h;
1320
1321   free_chunks = fifo_segment_num_free_chunks (fs, ~0);
1322   if (free_chunks)
1323     s =
1324       format (s, "\n\n%UFree/Allocated chunks by size:\n", format_white_space,
1325               indent + 2);
1326   else
1327     s = format (s, "\n");
1328
1329   for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1330     {
1331       fss = fsh_slice_get (fsh, slice_index);
1332       for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
1333         {
1334           c = fs_chunk_ptr (fsh, fss->free_chunks[i]);
1335           if (c == 0 && fss->num_chunks[i] == 0)
1336             continue;
1337           count = 0;
1338           while (c)
1339             {
1340               c = fs_chunk_ptr (fsh, c->next);
1341               count++;
1342             }
1343
1344           chunk_size = fs_freelist_index_to_size (i);
1345           s = format (s, "%U%-5u kB: %u/%u\n", format_white_space, indent + 2,
1346                       chunk_size >> 10, count, fss->num_chunks[i]);
1347
1348           chunk_bytes += count * chunk_size;
1349         }
1350     }
1351
1352   fifo_hdr = free_fifos * sizeof (svm_fifo_t);
1353   est_chunk_bytes = fifo_segment_fl_chunk_bytes (fs);
1354   est_free_seg_bytes = fifo_segment_free_bytes (fs);
1355   free_seg_bytes = fifo_segment_free_bytes (fs);
1356   tracked_cached_bytes = fifo_segment_cached_bytes (fs);
1357   allocated = fifo_segment_size (fs);
1358   in_use = fifo_segment_size (fs) - est_free_seg_bytes - tracked_cached_bytes;
1359   usage = (100.0 * in_use) / allocated;
1360   mem_st = fifo_segment_get_mem_status (fs);
1361   virt = fsh_virtual_mem (fsh);
1362   reserved = fsh->n_reserved_bytes;
1363
1364   s = format (s, "\n%Useg free bytes: %U (%lu) estimated: %U (%lu) reserved:"
1365               " %U (%lu)\n", format_white_space, indent + 2,
1366               format_memory_size, free_seg_bytes, free_seg_bytes,
1367               format_memory_size, est_free_seg_bytes, est_free_seg_bytes,
1368               format_memory_size, reserved, reserved);
1369   s = format (s, "%Uchunk free bytes: %U (%lu) estimated: %U (%lu) tracked:"
1370               " %U (%lu)\n", format_white_space, indent + 2,
1371               format_memory_size, chunk_bytes, chunk_bytes,
1372               format_memory_size, est_chunk_bytes, est_chunk_bytes,
1373               format_memory_size, tracked_cached_bytes, tracked_cached_bytes);
1374   s = format (s, "%Ufifo active: %u hdr free bytes: %U (%u) \n",
1375               format_white_space, indent + 2, fsh->n_active_fifos,
1376               format_memory_size, fifo_hdr, fifo_hdr);
1377   s = format (s, "%Usegment usage: %.2f%% (%U / %U) virt: %U status: %s\n",
1378               format_white_space, indent + 2, usage, format_memory_size,
1379               in_use, format_memory_size, allocated, format_memory_size, virt,
1380               fifo_segment_mem_status_strings[mem_st]);
1381   s = format (s, "\n");
1382
1383   return s;
1384 }
1385
1386 /*
1387  * fd.io coding-style-patch-verification: ON
1388  *
1389  * Local Variables:
1390  * eval: (c-set-style "gnu")
1391  * End:
1392  */