blob: d5f62913082175887f0d3a29ae5086cd5669033e [file] [log] [blame]
Florin Coras88001c62019-04-24 14:44:46 -07001/*
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>
Florin Corasc547e912020-12-08 17:50:45 -080017#include <vppinfra/mem.h>
Florin Coras88001c62019-04-24 14:44:46 -070018
Florin Coras213b1bb2020-12-07 14:33:58 -080019static inline void *
20fsh_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
43static inline void *
44fsh_alloc (fifo_segment_header_t *fsh, uword size)
45{
46 return fsh_alloc_aligned (fsh, size, 8);
47}
48
Florin Coras06d47752020-03-06 02:23:58 +000049static inline fifo_segment_slice_t *
50fsh_slice_get (fifo_segment_header_t * fsh, u32 slice_index)
51{
52 return &fsh->slices[slice_index];
53}
54
Florin Coras1f952d32020-12-09 19:43:21 -080055static inline fifo_slice_private_t *
56fs_slice_private_get (fifo_segment_t *fs, u32 slice_index)
57{
58 ASSERT (slice_index < fs->n_slices);
59 return &fs->slices[slice_index];
60}
61
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000062static char *fifo_segment_mem_status_strings[] = {
63#define _(sym,str) str,
64 foreach_segment_mem_status
65#undef _
66};
67
Florin Coras62ddc032019-12-08 18:30:42 -080068static inline uword
69fsh_n_free_bytes (fifo_segment_header_t * fsh)
70{
Florin Coras213b1bb2020-12-07 14:33:58 -080071 uword cur_pos = clib_atomic_load_relax_n (&fsh->byte_index);
72 ASSERT (fsh->max_byte_index > cur_pos);
73 return fsh->max_byte_index - cur_pos;
Florin Coras8122cc22019-12-18 13:06:41 -080074}
75
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000076static inline void
Florin Coras79b3f8c2020-11-20 07:34:53 -080077fsh_cached_bytes_add (fifo_segment_header_t * fsh, uword size)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000078{
79 clib_atomic_fetch_add_rel (&fsh->n_cached_bytes, size);
80}
81
82static inline void
Florin Coras79b3f8c2020-11-20 07:34:53 -080083fsh_cached_bytes_sub (fifo_segment_header_t * fsh, uword size)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000084{
85 clib_atomic_fetch_sub_rel (&fsh->n_cached_bytes, size);
86}
87
88static inline uword
89fsh_n_cached_bytes (fifo_segment_header_t * fsh)
90{
91 uword n_cached = clib_atomic_load_relax_n (&fsh->n_cached_bytes);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000092 return n_cached;
93}
94
Florin Coras06d47752020-03-06 02:23:58 +000095static inline void
96fsh_active_fifos_update (fifo_segment_header_t * fsh, int inc)
97{
98 clib_atomic_fetch_add_rel (&fsh->n_active_fifos, inc);
99}
100
Florin Coras7a90e502020-04-09 04:46:14 +0000101static inline u32
102fsh_n_active_fifos (fifo_segment_header_t * fsh)
103{
104 return clib_atomic_load_relax_n (&fsh->n_active_fifos);
105}
106
Florin Coras06d47752020-03-06 02:23:58 +0000107static inline uword
Florin Corasafbb33a2021-08-10 16:56:34 -0700108fs_virtual_mem (fifo_segment_t *fs)
Florin Coras06d47752020-03-06 02:23:58 +0000109{
Florin Corasafbb33a2021-08-10 16:56:34 -0700110 fifo_segment_header_t *fsh = fs->h;
Florin Coras06d47752020-03-06 02:23:58 +0000111 fifo_segment_slice_t *fss;
112 uword total_vm = 0;
113 int i;
114
Florin Corasafbb33a2021-08-10 16:56:34 -0700115 for (i = 0; i < fs->n_slices; i++)
Florin Coras06d47752020-03-06 02:23:58 +0000116 {
117 fss = fsh_slice_get (fsh, i);
118 total_vm += clib_atomic_load_relax_n (&fss->virtual_mem);
119 }
120 return total_vm;
121}
122
123void
124fsh_virtual_mem_update (fifo_segment_header_t * fsh, u32 slice_index,
125 int n_bytes)
126{
127 fifo_segment_slice_t *fss = fsh_slice_get (fsh, slice_index);
128 fss->virtual_mem += n_bytes;
129}
130
Florin Coras473c8462020-11-16 18:11:51 -0800131static inline int
Florin Coras014dba32021-03-31 19:36:49 -0700132fss_chunk_fl_index_is_valid (fifo_segment_slice_t *fss, u32 fl_index)
Florin Coras473c8462020-11-16 18:11:51 -0800133{
Florin Coras4b8011e2020-12-07 19:38:23 -0800134 return (fl_index < FS_CHUNK_VEC_LEN);
Florin Coras473c8462020-11-16 18:11:51 -0800135}
136
Florin Coras014dba32021-03-31 19:36:49 -0700137#define FS_CL_HEAD_MASK 0xFFFFFFFFFFFF
138#define FS_CL_HEAD_TMASK 0xFFFF000000000000
139#define FS_CL_HEAD_TINC (1ULL << 48)
140
141static svm_fifo_chunk_t *
142fss_chunk_free_list_head (fifo_segment_header_t *fsh,
143 fifo_segment_slice_t *fss, u32 fl_index)
144{
145 fs_sptr_t headsp = clib_atomic_load_relax_n (&fss->free_chunks[fl_index]);
146 return fs_chunk_ptr (fsh, headsp & FS_CL_HEAD_MASK);
147}
148
Florin Coras473c8462020-11-16 18:11:51 -0800149static void
Florin Corasaf588822020-12-09 12:51:13 -0800150fss_chunk_free_list_push (fifo_segment_header_t *fsh,
151 fifo_segment_slice_t *fss, u32 fl_index,
152 svm_fifo_chunk_t *c)
Florin Coras473c8462020-11-16 18:11:51 -0800153{
Florin Coras014dba32021-03-31 19:36:49 -0700154 fs_sptr_t old_head, new_head, csp;
155
156 csp = fs_chunk_sptr (fsh, c);
157 ASSERT (csp <= FS_CL_HEAD_MASK);
Dave Wallace5c520912021-05-27 19:44:50 -0400158 old_head = clib_atomic_load_acq_n (&fss->free_chunks[fl_index]);
Florin Coras014dba32021-03-31 19:36:49 -0700159
160 do
161 {
162 c->next = old_head & FS_CL_HEAD_MASK;
163 new_head = csp + ((old_head + FS_CL_HEAD_TINC) & FS_CL_HEAD_TMASK);
164 }
Florin Coras324d1612021-06-02 11:17:29 -0700165 while (!__atomic_compare_exchange (&fss->free_chunks[fl_index], &old_head,
166 &new_head, 0 /* weak */, __ATOMIC_RELEASE,
167 __ATOMIC_ACQUIRE));
Florin Coras473c8462020-11-16 18:11:51 -0800168}
169
170static void
Florin Corasaf588822020-12-09 12:51:13 -0800171fss_chunk_free_list_push_list (fifo_segment_header_t *fsh,
172 fifo_segment_slice_t *fss, u32 fl_index,
173 svm_fifo_chunk_t *head, svm_fifo_chunk_t *tail)
Florin Coras473c8462020-11-16 18:11:51 -0800174{
Florin Coras014dba32021-03-31 19:36:49 -0700175 fs_sptr_t old_head, new_head, headsp;
176
177 headsp = fs_chunk_sptr (fsh, head);
178 ASSERT (headsp <= FS_CL_HEAD_MASK);
Dave Wallace5c520912021-05-27 19:44:50 -0400179 old_head = clib_atomic_load_acq_n (&fss->free_chunks[fl_index]);
Florin Coras014dba32021-03-31 19:36:49 -0700180
181 do
182 {
183 tail->next = old_head & FS_CL_HEAD_MASK;
184 new_head = headsp + ((old_head + FS_CL_HEAD_TINC) & FS_CL_HEAD_TMASK);
185 }
Florin Coras324d1612021-06-02 11:17:29 -0700186 while (!__atomic_compare_exchange (&fss->free_chunks[fl_index], &old_head,
187 &new_head, 0 /* weak */, __ATOMIC_RELEASE,
188 __ATOMIC_ACQUIRE));
Florin Coras473c8462020-11-16 18:11:51 -0800189}
190
191static svm_fifo_chunk_t *
Florin Corasaf588822020-12-09 12:51:13 -0800192fss_chunk_free_list_pop (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss,
193 u32 fl_index)
Florin Coras473c8462020-11-16 18:11:51 -0800194{
Florin Coras014dba32021-03-31 19:36:49 -0700195 fs_sptr_t old_head, new_head;
Florin Coras473c8462020-11-16 18:11:51 -0800196 svm_fifo_chunk_t *c;
197
198 ASSERT (fss_chunk_fl_index_is_valid (fss, fl_index));
199
Dave Wallace5c520912021-05-27 19:44:50 -0400200 old_head = clib_atomic_load_acq_n (&fss->free_chunks[fl_index]);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800201
Florin Coras014dba32021-03-31 19:36:49 -0700202 /* Lock-free stacks are affected by ABA if a side allocates a chunk and
203 * shortly thereafter frees it. To circumvent that, reuse the upper bits
204 * of the head of the list shared pointer, i.e., offset to where the chunk
205 * is, as a tag. The tag is incremented with each push/pop operation and
206 * therefore collisions can only happen if an element is popped and pushed
207 * exactly after a complete wrap of the tag (16 bits). It's unlikely either
208 * of the sides will be descheduled for that long */
209 do
Florin Corasd01d2ce2020-11-17 18:42:38 -0800210 {
Florin Coras014dba32021-03-31 19:36:49 -0700211 if (!(old_head & FS_CL_HEAD_MASK))
212 return 0;
213 c = fs_chunk_ptr (fsh, old_head & FS_CL_HEAD_MASK);
214 new_head = c->next + ((old_head + FS_CL_HEAD_TINC) & FS_CL_HEAD_TMASK);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800215 }
Florin Coras324d1612021-06-02 11:17:29 -0700216 while (!__atomic_compare_exchange (&fss->free_chunks[fl_index], &old_head,
217 &new_head, 0 /* weak */, __ATOMIC_RELEASE,
218 __ATOMIC_ACQUIRE));
Florin Corasd01d2ce2020-11-17 18:42:38 -0800219
Florin Coras473c8462020-11-16 18:11:51 -0800220 return c;
221}
222
Florin Coras17672aa2020-12-29 16:55:32 -0800223static void
224fss_fifo_free_list_push (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss,
225 svm_fifo_shared_t *sf)
226{
227 sf->next = fss->free_fifos;
228 fss->free_fifos = fs_sptr (fsh, sf);
229}
230
231static void
232fss_fifo_free_list_push_list (fifo_segment_header_t *fsh,
233 fifo_segment_slice_t *fss,
234 svm_fifo_shared_t *head, svm_fifo_shared_t *tail)
235{
236 tail->next = fss->free_fifos;
237 fss->free_fifos = fs_sptr (fsh, head);
238}
239
240svm_fifo_shared_t *
241fss_fifo_free_list_pop (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
242{
243 svm_fifo_shared_t *sf;
244 sf = fs_ptr (fsh, fss->free_fifos);
245 fss->free_fifos = sf->next;
246 return sf;
247}
248
Florin Coras473c8462020-11-16 18:11:51 -0800249static inline void
Florin Coras1f952d32020-12-09 19:43:21 -0800250pfss_fifo_add_active_list (fifo_slice_private_t *pfss, svm_fifo_t *f)
Florin Coras473c8462020-11-16 18:11:51 -0800251{
Florin Coras1f952d32020-12-09 19:43:21 -0800252 if (pfss->active_fifos)
Florin Coras473c8462020-11-16 18:11:51 -0800253 {
Florin Coras1f952d32020-12-09 19:43:21 -0800254 pfss->active_fifos->prev = f;
255 f->next = pfss->active_fifos;
Florin Coras473c8462020-11-16 18:11:51 -0800256 }
Florin Coras1f952d32020-12-09 19:43:21 -0800257 pfss->active_fifos = f;
Florin Coras473c8462020-11-16 18:11:51 -0800258}
259
260static inline void
Florin Coras1f952d32020-12-09 19:43:21 -0800261pfss_fifo_del_active_list (fifo_slice_private_t *pfss, svm_fifo_t *f)
Florin Coras473c8462020-11-16 18:11:51 -0800262{
263 if (f->flags & SVM_FIFO_F_LL_TRACKED)
264 {
265 if (f->prev)
266 f->prev->next = f->next;
267 else
Florin Coras1f952d32020-12-09 19:43:21 -0800268 pfss->active_fifos = f->next;
Florin Coras473c8462020-11-16 18:11:51 -0800269 if (f->next)
270 f->next->prev = f->prev;
271 }
272}
273
Florin Corasd01d2ce2020-11-17 18:42:38 -0800274static inline uword
275fss_fl_chunk_bytes (fifo_segment_slice_t * fss)
276{
277 return clib_atomic_load_relax_n (&fss->n_fl_chunk_bytes);
278}
279
280static inline void
281fss_fl_chunk_bytes_add (fifo_segment_slice_t * fss, uword size)
282{
283 clib_atomic_fetch_add_relax (&fss->n_fl_chunk_bytes, size);
284}
285
286static inline void
287fss_fl_chunk_bytes_sub (fifo_segment_slice_t * fss, uword size)
288{
289 clib_atomic_fetch_sub_relax (&fss->n_fl_chunk_bytes, size);
290}
291
Florin Corasf9d4ab42019-05-11 16:55:53 -0700292/**
Florin Coras88001c62019-04-24 14:44:46 -0700293 * Initialize fifo segment shared header
294 */
295int
296fifo_segment_init (fifo_segment_t * fs)
297{
Filip Tehlar2711ca72021-11-24 10:30:59 +0000298 u32 align = 8, offset = FIFO_SEGMENT_ALLOC_OVERHEAD, slices_sz, i;
Florin Coras4b8011e2020-12-07 19:38:23 -0800299 uword max_fifo, seg_start, seg_sz;
Florin Coras88001c62019-04-24 14:44:46 -0700300 fifo_segment_header_t *fsh;
301 ssvm_shared_header_t *sh;
Florin Coras213b1bb2020-12-07 14:33:58 -0800302 void *seg_data;
Florin Coras88001c62019-04-24 14:44:46 -0700303
Florin Coras213b1bb2020-12-07 14:33:58 -0800304 /* TODO remove ssvm heap entirely */
Florin Coras88001c62019-04-24 14:44:46 -0700305 sh = fs->ssvm.sh;
Florin Coras88001c62019-04-24 14:44:46 -0700306
Florin Coras213b1bb2020-12-07 14:33:58 -0800307 seg_data = (u8 *) sh + offset;
Florin Coras4b8011e2020-12-07 19:38:23 -0800308 seg_sz = sh->ssvm_size - offset;
309
310 fs->n_slices = clib_max (fs->n_slices, 1);
311 slices_sz = sizeof (fifo_segment_slice_t) * fs->n_slices;
Florin Coras213b1bb2020-12-07 14:33:58 -0800312
313 seg_start = round_pow2_u64 (pointer_to_uword (seg_data), align);
314 fsh = uword_to_pointer (seg_start, void *);
Damjan Marion79934e82022-04-05 12:40:31 +0200315 clib_mem_unpoison (fsh, seg_sz);
Florin Coras4b8011e2020-12-07 19:38:23 -0800316 memset (fsh, 0, sizeof (*fsh) + slices_sz);
Florin Coras213b1bb2020-12-07 14:33:58 -0800317
Florin Coras4b8011e2020-12-07 19:38:23 -0800318 fsh->byte_index = sizeof (*fsh) + slices_sz;
319 fsh->max_byte_index = seg_sz;
Florin Coras62ddc032019-12-08 18:30:42 -0800320 fsh->n_slices = fs->n_slices;
Florin Coras4b8011e2020-12-07 19:38:23 -0800321 max_fifo = clib_min ((seg_sz - slices_sz) / 2, FIFO_SEGMENT_MAX_FIFO_SIZE);
322 fsh->max_log2_fifo_size = min_log2 (max_fifo);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000323 fsh->n_cached_bytes = 0;
Florin Coras213b1bb2020-12-07 14:33:58 -0800324 fsh->n_reserved_bytes = fsh->byte_index;
Florin Coras80b74252021-01-27 18:08:25 -0800325 fsh->start_byte_index = fsh->byte_index;
Florin Coras4b8011e2020-12-07 19:38:23 -0800326 ASSERT (fsh->max_byte_index <= sh->ssvm_size - offset);
327
328 fs->max_byte_index = fsh->max_byte_index;
Florin Coras14f066e2020-12-10 18:52:40 -0800329 fs->h = fsh;
330 sh->opaque[0] = (void *) ((u8 *) fsh - (u8 *) fs->ssvm.sh);
331
332 /* Allow random offsets */
333 fs->ssvm.sh->ssvm_va = 0;
Florin Coras4b8011e2020-12-07 19:38:23 -0800334
Florin Corasc547e912020-12-08 17:50:45 -0800335 vec_validate (fs->slices, fs->n_slices - 1);
336 for (i = 0; i < fs->n_slices; i++)
337 fs->slices[i].fifos =
338 clib_mem_bulk_init (sizeof (svm_fifo_t), CLIB_CACHE_LINE_BYTES, 32);
339
Florin Coras88001c62019-04-24 14:44:46 -0700340 sh->ready = 1;
341 return (0);
342}
343
344/**
Florin Coras88001c62019-04-24 14:44:46 -0700345 * Create a fifo segment and initialize as master
346 */
347int
348fifo_segment_create (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
349{
Florin Corasf9d4ab42019-05-11 16:55:53 -0700350 fifo_segment_t *fs;
351 uword baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700352 int rv;
353
Florin Coras88001c62019-04-24 14:44:46 -0700354 /* Allocate a fresh segment */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700355 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700356
Florin Corasf9d4ab42019-05-11 16:55:53 -0700357 baseva = a->segment_type == SSVM_SEGMENT_PRIVATE ? ~0ULL : sm->next_baseva;
358 fs->ssvm.ssvm_size = a->segment_size;
Florin Coras5220a262020-09-29 18:11:24 -0700359 fs->ssvm.is_server = 1;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700360 fs->ssvm.my_pid = getpid ();
361 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
362 fs->ssvm.requested_va = baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700363
Florin Coras5220a262020-09-29 18:11:24 -0700364 if ((rv = ssvm_server_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700365 {
Florin Corasf9d4ab42019-05-11 16:55:53 -0700366 pool_put (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700367 return (rv);
368 }
369
370 /* Note: requested_va updated due to seg base addr randomization */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700371 sm->next_baseva = fs->ssvm.sh->ssvm_va + fs->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700372
Florin Corasf9d4ab42019-05-11 16:55:53 -0700373 fifo_segment_init (fs);
374 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700375 return (0);
376}
377
378/**
379 * Attach as slave to a fifo segment
380 */
381int
382fifo_segment_attach (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
383{
Florin Coras4b8011e2020-12-07 19:38:23 -0800384 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -0800385 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -0700386 int rv;
387
Florin Coras62ddc032019-12-08 18:30:42 -0800388 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700389
Florin Corascdfe8ab2021-12-22 12:54:17 -0800390 fs->fs_index = fs - sm->segments;
391 fs->sm_index = ~0;
Florin Coras62ddc032019-12-08 18:30:42 -0800392 fs->ssvm.ssvm_size = a->segment_size;
393 fs->ssvm.my_pid = getpid ();
394 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
Florin Coras14f066e2020-12-10 18:52:40 -0800395 fs->ssvm.requested_va = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700396 if (a->segment_type == SSVM_SEGMENT_MEMFD)
Florin Coras62ddc032019-12-08 18:30:42 -0800397 fs->ssvm.fd = a->memfd_fd;
Florin Coras88001c62019-04-24 14:44:46 -0700398 else
Florin Coras62ddc032019-12-08 18:30:42 -0800399 fs->ssvm.attach_timeout = sm->timeout_in_seconds;
Florin Coras88001c62019-04-24 14:44:46 -0700400
Florin Coras5220a262020-09-29 18:11:24 -0700401 if ((rv = ssvm_client_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700402 {
Florin Coras14f066e2020-12-10 18:52:40 -0800403 pool_put (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700404 return (rv);
405 }
406
Florin Coras4b8011e2020-12-07 19:38:23 -0800407 /* Probably a segment without fifos */
Florin Coras14f066e2020-12-10 18:52:40 -0800408 if (!fs->ssvm.sh->opaque[0])
Florin Coras4b8011e2020-12-07 19:38:23 -0800409 goto done;
410
Florin Coras14f066e2020-12-10 18:52:40 -0800411 fsh = fs->h = (void *) fs->ssvm.sh + (uword) fs->ssvm.sh->opaque[0];
Florin Coras4b8011e2020-12-07 19:38:23 -0800412 fs->max_byte_index = fsh->max_byte_index;
Florin Corasc547e912020-12-08 17:50:45 -0800413 vec_validate (fs->slices, 0);
414 fs->slices[0].fifos =
415 clib_mem_bulk_init (sizeof (svm_fifo_t), CLIB_CACHE_LINE_BYTES, 32);
Florin Coras4b8011e2020-12-07 19:38:23 -0800416
417done:
Florin Coras62ddc032019-12-08 18:30:42 -0800418 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700419 return (0);
420}
421
422void
423fifo_segment_delete (fifo_segment_main_t * sm, fifo_segment_t * s)
424{
Florin Corasc547e912020-12-08 17:50:45 -0800425 fifo_segment_cleanup (s);
Florin Coras88001c62019-04-24 14:44:46 -0700426 ssvm_delete (&s->ssvm);
427 clib_memset (s, 0xfe, sizeof (*s));
428 pool_put (sm->segments, s);
429}
430
431u32
432fifo_segment_index (fifo_segment_main_t * sm, fifo_segment_t * s)
433{
434 return s - sm->segments;
435}
436
Florin Coras88001c62019-04-24 14:44:46 -0700437fifo_segment_t *
438fifo_segment_get_segment (fifo_segment_main_t * sm, u32 segment_index)
439{
440 return pool_elt_at_index (sm->segments, segment_index);
441}
442
Florin Corascbb5e822021-02-20 10:42:22 -0800443fifo_segment_t *
444fifo_segment_get_segment_if_valid (fifo_segment_main_t *sm, u32 segment_index)
445{
446 if (pool_is_free_index (sm->segments, segment_index))
447 return 0;
448 return pool_elt_at_index (sm->segments, segment_index);
449}
450
Florin Coras88001c62019-04-24 14:44:46 -0700451void
452fifo_segment_info (fifo_segment_t * seg, char **address, size_t * size)
453{
Florin Coras404b8a32019-05-09 12:08:06 -0700454 *address = (char *) seg->ssvm.sh->ssvm_va;
455 *size = seg->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700456}
457
458void
459fifo_segment_main_init (fifo_segment_main_t * sm, u64 baseva,
460 u32 timeout_in_seconds)
461{
462 sm->next_baseva = baseva;
463 sm->timeout_in_seconds = timeout_in_seconds;
464}
465
Florin Corasf9d4ab42019-05-11 16:55:53 -0700466static inline u32
467fs_freelist_for_size (u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700468{
Florin Corasf22f4e52019-12-19 16:10:58 -0800469 if (PREDICT_FALSE (size < FIFO_SEGMENT_MIN_FIFO_SIZE))
470 return 0;
Florin Coras4b8011e2020-12-07 19:38:23 -0800471 return clib_min (max_log2 (size) - FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE,
472 FS_CHUNK_VEC_LEN - 1);
Florin Coras88001c62019-04-24 14:44:46 -0700473}
474
Florin Corasf9d4ab42019-05-11 16:55:53 -0700475static inline u32
476fs_freelist_index_to_size (u32 fl_index)
477{
Florin Coras62ddc032019-12-08 18:30:42 -0800478 return 1 << (fl_index + FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700479}
480
Florin Coras88001c62019-04-24 14:44:46 -0700481static inline int
Florin Coras62ddc032019-12-08 18:30:42 -0800482fs_chunk_size_is_valid (fifo_segment_header_t * fsh, u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700483{
484 /*
485 * 4K minimum. It's not likely that anything good will happen
486 * with a smaller FIFO.
487 */
Florin Coras4b8011e2020-12-07 19:38:23 -0800488 return size >= FIFO_SEGMENT_MIN_FIFO_SIZE &&
489 size <= (1ULL << fsh->max_log2_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -0700490}
491
Florin Coras8e755a12020-02-06 16:59:31 +0000492svm_fifo_chunk_t *
493fs_try_alloc_multi_chunk (fifo_segment_header_t * fsh,
494 fifo_segment_slice_t * fss, u32 data_bytes)
495{
496 u32 fl_index, fl_size, n_alloc = 0, req_bytes = data_bytes;
497 svm_fifo_chunk_t *c, *first = 0, *next;
498
499 fl_index = fs_freelist_for_size (req_bytes);
500 if (fl_index > 0)
501 fl_index -= 1;
502
503 fl_size = fs_freelist_index_to_size (fl_index);
504
505 while (req_bytes)
506 {
Florin Corasaf588822020-12-09 12:51:13 -0800507 c = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras8e755a12020-02-06 16:59:31 +0000508 if (c)
509 {
Florin Corasaf588822020-12-09 12:51:13 -0800510 c->next = fs_chunk_sptr (fsh, first);
Florin Coras8e755a12020-02-06 16:59:31 +0000511 first = c;
512 n_alloc += fl_size;
513 req_bytes -= clib_min (fl_size, req_bytes);
514 }
515 else
516 {
517 /* Failed to allocate with smaller chunks */
518 if (fl_index == 0)
519 {
Florin Coras473c8462020-11-16 18:11:51 -0800520 /* Free all chunks if any allocated */
Florin Coras8e755a12020-02-06 16:59:31 +0000521 c = first;
522 while (c)
523 {
524 fl_index = fs_freelist_for_size (c->length);
Florin Corasaf588822020-12-09 12:51:13 -0800525 next = fs_chunk_ptr (fsh, c->next);
526 fss_chunk_free_list_push (fsh, fss, fl_index, c);
Florin Coras8e755a12020-02-06 16:59:31 +0000527 c = next;
528 }
529 n_alloc = 0;
530 first = 0;
Florin Coras473c8462020-11-16 18:11:51 -0800531 /* As last attempt, try allocating a chunk larger than
532 * the requested size, if possible */
533 fl_index = fs_freelist_for_size (data_bytes) + 1;
534 if (!fss_chunk_fl_index_is_valid (fss, fl_index))
535 return 0;
Florin Corasaf588822020-12-09 12:51:13 -0800536 first = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras473c8462020-11-16 18:11:51 -0800537 if (first)
Florin Coras8e755a12020-02-06 16:59:31 +0000538 {
Florin Coras473c8462020-11-16 18:11:51 -0800539 first->next = 0;
540 n_alloc = fs_freelist_index_to_size (fl_index);
541 goto done;
Florin Coras8e755a12020-02-06 16:59:31 +0000542 }
Florin Coras8e755a12020-02-06 16:59:31 +0000543 return 0;
544 }
545 fl_index -= 1;
546 fl_size = fl_size >> 1;
547 }
548 }
549
Florin Coras473c8462020-11-16 18:11:51 -0800550done:
Florin Corasd01d2ce2020-11-17 18:42:38 -0800551 fss_fl_chunk_bytes_sub (fss, n_alloc);
Florin Coras8e755a12020-02-06 16:59:31 +0000552 fsh_cached_bytes_sub (fsh, n_alloc);
553 return first;
554}
555
Florin Corasf9d4ab42019-05-11 16:55:53 -0700556static int
Florin Coras473c8462020-11-16 18:11:51 -0800557fsh_try_alloc_fifo_hdr_batch (fifo_segment_header_t * fsh,
558 fifo_segment_slice_t * fss, u32 batch_size)
Florin Coras8e755a12020-02-06 16:59:31 +0000559{
Florin Coras17672aa2020-12-29 16:55:32 -0800560 svm_fifo_shared_t *f, *head = 0, *tail;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800561 uword size;
Florin Corascefd5d82019-05-05 13:19:57 -0700562 u8 *fmem;
563 int i;
Florin Coras88001c62019-04-24 14:44:46 -0700564
Benoît Gannef23b1512020-11-25 15:06:01 +0100565 ASSERT (batch_size != 0);
566
Florin Coras473c8462020-11-16 18:11:51 -0800567 size = (uword) sizeof (*f) * batch_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700568
Florin Coras213b1bb2020-12-07 14:33:58 -0800569 fmem = fsh_alloc_aligned (fsh, size, CLIB_CACHE_LINE_BYTES);
Florin Corascefd5d82019-05-05 13:19:57 -0700570 if (fmem == 0)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700571 return -1;
Florin Coras88001c62019-04-24 14:44:46 -0700572
Florin Coras635f5062020-04-28 20:40:57 +0000573 /* Carve fifo hdr space */
Florin Coras17672aa2020-12-29 16:55:32 -0800574 tail = f = (svm_fifo_shared_t *) fmem;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700575 for (i = 0; i < batch_size; i++)
Florin Coras88001c62019-04-24 14:44:46 -0700576 {
Florin Coras17672aa2020-12-29 16:55:32 -0800577 clib_memset (f, 0, sizeof (*f));
578 f->next = fs_sptr (fsh, head);
579 head = f;
Florin Coras635f5062020-04-28 20:40:57 +0000580 fmem += sizeof (*f);
Florin Coras17672aa2020-12-29 16:55:32 -0800581 f = (svm_fifo_shared_t *) fmem;
Florin Coras635f5062020-04-28 20:40:57 +0000582 }
583
Florin Coras17672aa2020-12-29 16:55:32 -0800584 fss_fifo_free_list_push_list (fsh, fss, head, tail);
585
Florin Coras473c8462020-11-16 18:11:51 -0800586 return 0;
587}
588
589static int
590fsh_try_alloc_chunk_batch (fifo_segment_header_t * fsh,
591 fifo_segment_slice_t * fss,
592 u32 fl_index, u32 batch_size)
593{
Florin Coras473c8462020-11-16 18:11:51 -0800594 svm_fifo_chunk_t *c, *head = 0, *tail;
Florin Coras79b3f8c2020-11-20 07:34:53 -0800595 uword size, total_chunk_bytes;
596 u32 rounded_data_size;
Florin Coras473c8462020-11-16 18:11:51 -0800597 u8 *cmem;
598 int i;
599
Benoît Gannef23b1512020-11-25 15:06:01 +0100600 ASSERT (batch_size != 0);
601
Florin Coras473c8462020-11-16 18:11:51 -0800602 rounded_data_size = fs_freelist_index_to_size (fl_index);
Florin Coras79b3f8c2020-11-20 07:34:53 -0800603 total_chunk_bytes = (uword) batch_size *rounded_data_size;
Florin Coras473c8462020-11-16 18:11:51 -0800604 size = (uword) (sizeof (*c) + rounded_data_size) * batch_size;
605
Florin Coras213b1bb2020-12-07 14:33:58 -0800606 cmem = fsh_alloc_aligned (fsh, size, 8 /* chunk hdr is 24B */);
Florin Coras473c8462020-11-16 18:11:51 -0800607 if (cmem == 0)
608 return -1;
609
610 /* Carve fifo + chunk space */
611 tail = c = (svm_fifo_chunk_t *) cmem;
Florin Coras635f5062020-04-28 20:40:57 +0000612 for (i = 0; i < batch_size; i++)
613 {
Florin Corascefd5d82019-05-05 13:19:57 -0700614 c->start_byte = 0;
615 c->length = rounded_data_size;
Florin Corasaf588822020-12-09 12:51:13 -0800616 c->next = fs_chunk_sptr (fsh, head);
Florin Coras473c8462020-11-16 18:11:51 -0800617 head = c;
618 cmem += sizeof (*c) + rounded_data_size;
619 c = (svm_fifo_chunk_t *) cmem;
Florin Coras88001c62019-04-24 14:44:46 -0700620 }
Florin Corascefd5d82019-05-05 13:19:57 -0700621
Florin Corasaf588822020-12-09 12:51:13 -0800622 fss_chunk_free_list_push_list (fsh, fss, fl_index, head, tail);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +0000623 fss->num_chunks[fl_index] += batch_size;
Florin Coras79b3f8c2020-11-20 07:34:53 -0800624 fss_fl_chunk_bytes_add (fss, total_chunk_bytes);
625 fsh_cached_bytes_add (fsh, total_chunk_bytes);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700626
627 return 0;
628}
629
Florin Coras473c8462020-11-16 18:11:51 -0800630static int
631fs_try_alloc_fifo_batch (fifo_segment_header_t * fsh,
632 fifo_segment_slice_t * fss,
633 u32 fl_index, u32 batch_size)
634{
635 if (fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size))
636 return 0;
637 return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
638}
639
Florin Corasc547e912020-12-08 17:50:45 -0800640static svm_fifo_shared_t *
641fsh_try_alloc_fifo_hdr (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
Florin Coras473c8462020-11-16 18:11:51 -0800642{
Florin Coras17672aa2020-12-29 16:55:32 -0800643 svm_fifo_shared_t *sf;
Florin Coras473c8462020-11-16 18:11:51 -0800644
645 if (!fss->free_fifos)
646 {
647 if (fsh_try_alloc_fifo_hdr_batch (fsh, fss,
648 FIFO_SEGMENT_ALLOC_BATCH_SIZE))
649 return 0;
650 }
651
Florin Coras17672aa2020-12-29 16:55:32 -0800652 sf = fss_fifo_free_list_pop (fsh, fss);
653 clib_memset (sf, 0, sizeof (*sf));
654
655 return sf;
Florin Coras473c8462020-11-16 18:11:51 -0800656}
657
658static svm_fifo_chunk_t *
659fsh_try_alloc_chunk (fifo_segment_header_t * fsh,
660 fifo_segment_slice_t * fss, u32 data_bytes)
661{
662 svm_fifo_chunk_t *c;
663 u32 fl_index;
664
665 fl_index = fs_freelist_for_size (data_bytes);
666
667free_list:
Florin Corasaf588822020-12-09 12:51:13 -0800668 c = fss_chunk_free_list_pop (fsh, fss, fl_index);
Florin Coras473c8462020-11-16 18:11:51 -0800669 if (c)
670 {
671 c->next = 0;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800672 fss_fl_chunk_bytes_sub (fss, fs_freelist_index_to_size (fl_index));
Florin Coras473c8462020-11-16 18:11:51 -0800673 fsh_cached_bytes_sub (fsh, fs_freelist_index_to_size (fl_index));
674 }
675 else
676 {
677 u32 chunk_size, batch = FIFO_SEGMENT_ALLOC_BATCH_SIZE;
678 uword n_free;
679
680 chunk_size = fs_freelist_index_to_size (fl_index);
681 n_free = fsh_n_free_bytes (fsh);
682
683 if (chunk_size <= n_free)
684 {
685 batch = chunk_size * batch <= n_free ? batch : 1;
686 if (!fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch))
687 goto free_list;
688 }
689 /* Failed to allocate larger chunk, try to allocate multi-chunk
690 * that is close to what was actually requested */
Florin Corasd01d2ce2020-11-17 18:42:38 -0800691 if (data_bytes <= fss_fl_chunk_bytes (fss))
Florin Coras473c8462020-11-16 18:11:51 -0800692 {
693 c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
694 if (c)
695 goto done;
696 batch = n_free / FIFO_SEGMENT_MIN_FIFO_SIZE;
697 if (!batch || fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
Florin Coras213b1bb2020-12-07 14:33:58 -0800698 goto done;
Florin Coras473c8462020-11-16 18:11:51 -0800699 }
Florin Corasd01d2ce2020-11-17 18:42:38 -0800700 if (data_bytes <= fss_fl_chunk_bytes (fss) + n_free)
Florin Coras473c8462020-11-16 18:11:51 -0800701 {
702 u32 min_size = FIFO_SEGMENT_MIN_FIFO_SIZE;
Florin Coras0d31b9c2021-05-08 15:29:50 -0700703 if (n_free < min_size)
704 goto done;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800705 batch = (data_bytes - fss_fl_chunk_bytes (fss)) / min_size;
Florin Coras473c8462020-11-16 18:11:51 -0800706 batch = clib_min (batch + 1, n_free / min_size);
707 if (fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
Florin Coras213b1bb2020-12-07 14:33:58 -0800708 goto done;
Florin Coras473c8462020-11-16 18:11:51 -0800709 c = fs_try_alloc_multi_chunk (fsh, fss, data_bytes);
710 }
711 }
712
713done:
714
715 return c;
716}
717
Florin Corasf9d4ab42019-05-11 16:55:53 -0700718/**
719 * Try to allocate new fifo
720 *
721 * Tries the following steps in order:
722 * - grab fifo and chunk from freelists
723 * - batch fifo and chunk allocation
724 * - single fifo allocation
725 * - grab multiple fifo chunks from freelists
726 */
Florin Corasc547e912020-12-08 17:50:45 -0800727static svm_fifo_shared_t *
728fs_try_alloc_fifo (fifo_segment_header_t *fsh, u32 slice_index, u32 data_bytes)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700729{
Florin Corasc547e912020-12-08 17:50:45 -0800730 fifo_segment_slice_t *fss;
Florin Corasd01d2ce2020-11-17 18:42:38 -0800731 u32 fl_index, min_size;
Florin Coras473c8462020-11-16 18:11:51 -0800732 svm_fifo_chunk_t *c;
Florin Corasc547e912020-12-08 17:50:45 -0800733 svm_fifo_shared_t *sf = 0;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700734
Florin Corasc547e912020-12-08 17:50:45 -0800735 fss = fsh_slice_get (fsh, slice_index);
Florin Coras2de9c0f2020-02-02 19:30:39 +0000736 min_size = clib_max ((fsh->pct_first_alloc * data_bytes) / 100, 4096);
737 fl_index = fs_freelist_for_size (min_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700738
Florin Coras473c8462020-11-16 18:11:51 -0800739 if (!fss_chunk_fl_index_is_valid (fss, fl_index))
Florin Coras0e6199d2020-04-17 20:15:22 +0000740 return 0;
741
Florin Corasc547e912020-12-08 17:50:45 -0800742 sf = fsh_try_alloc_fifo_hdr (fsh, fss);
743 if (!sf)
Florin Corasd01d2ce2020-11-17 18:42:38 -0800744 return 0;
Florin Coras8122cc22019-12-18 13:06:41 -0800745
Florin Coras473c8462020-11-16 18:11:51 -0800746 c = fsh_try_alloc_chunk (fsh, fss, min_size);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800747 if (!c)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700748 {
Florin Coras17672aa2020-12-29 16:55:32 -0800749 fss_fifo_free_list_push (fsh, fss, sf);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800750 return 0;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700751 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700752
Florin Corasaf588822020-12-09 12:51:13 -0800753 sf->start_chunk = fs_chunk_sptr (fsh, c);
Florin Corasd01d2ce2020-11-17 18:42:38 -0800754 while (c->next)
Florin Corasaf588822020-12-09 12:51:13 -0800755 c = fs_chunk_ptr (fsh, c->next);
756 sf->end_chunk = fs_chunk_sptr (fsh, c);
Florin Corasc547e912020-12-08 17:50:45 -0800757 sf->size = data_bytes;
758 sf->slice_index = slice_index;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700759
Florin Corasc547e912020-12-08 17:50:45 -0800760 return sf;
Florin Coras88001c62019-04-24 14:44:46 -0700761}
762
Florin Corasf22f4e52019-12-19 16:10:58 -0800763svm_fifo_chunk_t *
764fsh_alloc_chunk (fifo_segment_header_t * fsh, u32 slice_index, u32 chunk_size)
765{
766 fifo_segment_slice_t *fss;
767 svm_fifo_chunk_t *c;
Florin Corasf22f4e52019-12-19 16:10:58 -0800768
Florin Corasf22f4e52019-12-19 16:10:58 -0800769 fss = fsh_slice_get (fsh, slice_index);
Florin Coras473c8462020-11-16 18:11:51 -0800770 c = fsh_try_alloc_chunk (fsh, fss, chunk_size);
Florin Corasf22f4e52019-12-19 16:10:58 -0800771
772 return c;
773}
774
775static void
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000776fsh_slice_collect_chunks (fifo_segment_header_t * fsh,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000777 fifo_segment_slice_t * fss, svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800778{
Florin Coras473c8462020-11-16 18:11:51 -0800779 u32 n_collect = 0, fl_index;
Florin Corasf22f4e52019-12-19 16:10:58 -0800780 svm_fifo_chunk_t *next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800781
Florin Coras9e61d9a2020-02-05 21:13:18 +0000782 while (c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800783 {
Damjan Marion79934e82022-04-05 12:40:31 +0200784 clib_mem_unpoison (c, sizeof (*c));
Florin Corasaf588822020-12-09 12:51:13 -0800785 next = fs_chunk_ptr (fsh, c->next);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000786 fl_index = fs_freelist_for_size (c->length);
Florin Corasaf588822020-12-09 12:51:13 -0800787 fss_chunk_free_list_push (fsh, fss, fl_index, c);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000788 n_collect += fs_freelist_index_to_size (fl_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000789 c = next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800790 }
791
Florin Corasd01d2ce2020-11-17 18:42:38 -0800792 fss_fl_chunk_bytes_add (fss, n_collect);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000793 fsh_cached_bytes_add (fsh, n_collect);
Florin Corasf22f4e52019-12-19 16:10:58 -0800794}
795
796void
797fsh_collect_chunks (fifo_segment_header_t * fsh, u32 slice_index,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000798 svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800799{
800 fifo_segment_slice_t *fss;
801 fss = fsh_slice_get (fsh, slice_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000802 fsh_slice_collect_chunks (fsh, fss, c);
Florin Corasf22f4e52019-12-19 16:10:58 -0800803}
804
Florin Corasc547e912020-12-08 17:50:45 -0800805svm_fifo_t *
806fs_fifo_alloc (fifo_segment_t *fs, u32 slice_index)
807{
808 fifo_slice_private_t *pfss = &fs->slices[slice_index];
809 svm_fifo_t *f;
810
811 f = clib_mem_bulk_alloc (pfss->fifos);
812 clib_memset (f, 0, sizeof (*f));
813 return f;
814}
815
816void
Florin Corascbb5e822021-02-20 10:42:22 -0800817fs_fifo_free (fifo_segment_t *fs, svm_fifo_t *f, u32 slice_index)
Florin Corasc547e912020-12-08 17:50:45 -0800818{
Florin Corasc547e912020-12-08 17:50:45 -0800819 fifo_slice_private_t *pfss;
820
Florin Coras5c01dbc2021-02-18 14:43:32 -0800821 if (CLIB_DEBUG)
822 clib_memset (f, 0xfc, sizeof (*f));
823
Florin Corasc547e912020-12-08 17:50:45 -0800824 pfss = &fs->slices[slice_index];
825 clib_mem_bulk_free (pfss->fifos, f);
826}
827
828void
829fifo_segment_cleanup (fifo_segment_t *fs)
830{
831 int slice_index;
Florin Corasb4624182020-12-11 13:58:12 -0800832 svm_msg_q_t *mq = 0;
Florin Corasc547e912020-12-08 17:50:45 -0800833
834 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
835 clib_mem_bulk_destroy (fs->slices[slice_index].fifos);
Florin Corasb4624182020-12-11 13:58:12 -0800836
Florin Corasf1af21c2021-02-26 19:19:11 -0800837 vec_free (fs->slices);
838
Florin Coras9f1ae222023-04-20 14:12:01 -0700839 vec_foreach (mq, fs->mqs)
Florin Coras8c517c82021-03-30 00:23:54 -0700840 svm_msg_q_cleanup (mq);
Florin Corasb4624182020-12-11 13:58:12 -0800841
842 vec_free (fs->mqs);
Florin Corasc547e912020-12-08 17:50:45 -0800843}
844
Florin Coras88001c62019-04-24 14:44:46 -0700845/**
846 * Allocate fifo in fifo segment
847 */
848svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800849fifo_segment_alloc_fifo_w_slice (fifo_segment_t * fs, u32 slice_index,
850 u32 data_bytes, fifo_segment_ftype_t ftype)
Florin Coras88001c62019-04-24 14:44:46 -0700851{
Florin Coras62ddc032019-12-08 18:30:42 -0800852 fifo_segment_header_t *fsh = fs->h;
Florin Coras1f952d32020-12-09 19:43:21 -0800853 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -0800854 fifo_segment_slice_t *fss;
Florin Corasc547e912020-12-08 17:50:45 -0800855 svm_fifo_shared_t *sf;
Florin Coras88001c62019-04-24 14:44:46 -0700856 svm_fifo_t *f = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700857
Florin Coras62ddc032019-12-08 18:30:42 -0800858 ASSERT (slice_index < fs->n_slices);
Florin Coras88001c62019-04-24 14:44:46 -0700859
Florin Coras4b8011e2020-12-07 19:38:23 -0800860 if (PREDICT_FALSE (data_bytes > 1 << fsh->max_log2_fifo_size))
Florin Coras0e6199d2020-04-17 20:15:22 +0000861 return 0;
862
Florin Corasc547e912020-12-08 17:50:45 -0800863 sf = fs_try_alloc_fifo (fsh, slice_index, data_bytes);
864 if (!sf)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700865 goto done;
Florin Coras88001c62019-04-24 14:44:46 -0700866
Florin Corasc547e912020-12-08 17:50:45 -0800867 f = fs_fifo_alloc (fs, slice_index);
868 f->fs_hdr = fsh;
869 f->shr = sf;
Florin Coras62ddc032019-12-08 18:30:42 -0800870
Florin Corascefd5d82019-05-05 13:19:57 -0700871 svm_fifo_init (f, data_bytes);
Florin Coras88001c62019-04-24 14:44:46 -0700872
Florin Corascdfe8ab2021-12-22 12:54:17 -0800873 f->segment_manager = fs->sm_index;
874 f->segment_index = fs->fs_index;
875
Florin Corasc547e912020-12-08 17:50:45 -0800876 fss = fsh_slice_get (fsh, slice_index);
Florin Coras1f952d32020-12-09 19:43:21 -0800877 pfss = fs_slice_private_get (fs, slice_index);
Florin Corasc547e912020-12-08 17:50:45 -0800878
Florin Coras88001c62019-04-24 14:44:46 -0700879 /* If rx fifo type add to active fifos list. When cleaning up segment,
880 * we need a list of active sessions that should be disconnected. Since
881 * both rx and tx fifos keep pointers to the session, it's enough to track
882 * only one. */
883 if (ftype == FIFO_SEGMENT_RX_FIFO)
884 {
Florin Coras1f952d32020-12-09 19:43:21 -0800885 pfss_fifo_add_active_list (pfss, f);
Florin Coras88001c62019-04-24 14:44:46 -0700886 f->flags |= SVM_FIFO_F_LL_TRACKED;
Florin Corasf22f4e52019-12-19 16:10:58 -0800887 }
888
Florin Coras62ddc032019-12-08 18:30:42 -0800889 fsh_active_fifos_update (fsh, 1);
Florin Coras06d47752020-03-06 02:23:58 +0000890 fss->virtual_mem += svm_fifo_size (f);
Florin Coras88001c62019-04-24 14:44:46 -0700891
892done:
Florin Coras88001c62019-04-24 14:44:46 -0700893 return (f);
894}
895
Florin Corasc547e912020-12-08 17:50:45 -0800896svm_fifo_t *
Florin Coras14f066e2020-12-10 18:52:40 -0800897fifo_segment_alloc_fifo_w_offset (fifo_segment_t *fs, uword offset)
Florin Corasc547e912020-12-08 17:50:45 -0800898{
899 svm_fifo_t *f = fs_fifo_alloc (fs, 0);
Florin Coras14f066e2020-12-10 18:52:40 -0800900 svm_fifo_shared_t *sf;
901
902 sf = (svm_fifo_shared_t *) ((u8 *) fs->h + offset);
Florin Corasc547e912020-12-08 17:50:45 -0800903 f->fs_hdr = fs->h;
904 f->shr = sf;
905
906 f->ooos_list_head = OOO_SEGMENT_INVALID_INDEX;
907 f->segment_index = SVM_FIFO_INVALID_INDEX;
908 f->refcnt = 1;
909 return f;
910}
911
Florin Coras8eb8d502021-06-16 14:46:57 -0700912svm_fifo_t *
913fifo_segment_duplicate_fifo (fifo_segment_t *fs, svm_fifo_t *f)
914{
915 svm_fifo_t *nf = fs_fifo_alloc (fs, 0);
916 clib_memcpy (nf, f, sizeof (*f));
917 return nf;
918}
919
Florin Coras88001c62019-04-24 14:44:46 -0700920/**
921 * Free fifo allocated in fifo segment
922 */
923void
Florin Corasb095a3c2019-04-25 12:58:46 -0700924fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f)
Florin Coras88001c62019-04-24 14:44:46 -0700925{
Florin Coras62ddc032019-12-08 18:30:42 -0800926 fifo_segment_header_t *fsh = fs->h;
Florin Coras1f952d32020-12-09 19:43:21 -0800927 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -0800928 fifo_segment_slice_t *fss;
Florin Corasc547e912020-12-08 17:50:45 -0800929 svm_fifo_shared_t *sf;
Florin Coras88001c62019-04-24 14:44:46 -0700930
931 ASSERT (f->refcnt > 0);
932
933 if (--f->refcnt > 0)
934 return;
935
Florin Corasc547e912020-12-08 17:50:45 -0800936 /*
937 * Cleanup shared state
938 */
939
940 sf = f->shr;
941 fss = fsh_slice_get (fsh, sf->slice_index);
Florin Coras1f952d32020-12-09 19:43:21 -0800942 pfss = fs_slice_private_get (fs, sf->slice_index);
Florin Corasc547e912020-12-08 17:50:45 -0800943
944 /* Free fifo chunks */
Florin Corasaf588822020-12-09 12:51:13 -0800945 fsh_slice_collect_chunks (fsh, fss, fs_chunk_ptr (fsh, f->shr->start_chunk));
Florin Corasc547e912020-12-08 17:50:45 -0800946
947 sf->start_chunk = sf->end_chunk = 0;
948 sf->head_chunk = sf->tail_chunk = 0;
949
950 /* Add to free list */
Florin Coras17672aa2020-12-29 16:55:32 -0800951 fss_fifo_free_list_push (fsh, fss, sf);
Florin Corasc547e912020-12-08 17:50:45 -0800952
953 fss->virtual_mem -= svm_fifo_size (f);
954
955 /*
956 * Cleanup private state
957 */
Florin Coras88001c62019-04-24 14:44:46 -0700958
959 /* Remove from active list. Only rx fifos are tracked */
960 if (f->flags & SVM_FIFO_F_LL_TRACKED)
961 {
Florin Coras1f952d32020-12-09 19:43:21 -0800962 pfss_fifo_del_active_list (pfss, f);
Florin Coras88001c62019-04-24 14:44:46 -0700963 f->flags &= ~SVM_FIFO_F_LL_TRACKED;
964 }
965
Florin Corasf22f4e52019-12-19 16:10:58 -0800966 svm_fifo_free_chunk_lookup (f);
Florin Corasb095a3c2019-04-25 12:58:46 -0700967 svm_fifo_free_ooo_data (f);
968
Florin Coras88001c62019-04-24 14:44:46 -0700969 if (CLIB_DEBUG)
970 {
Florin Corasc547e912020-12-08 17:50:45 -0800971 sf->master_session_index = ~0;
Florin Coras88001c62019-04-24 14:44:46 -0700972 f->master_thread_index = ~0;
973 }
974
Florin Corasc547e912020-12-08 17:50:45 -0800975 f->ooo_enq = f->ooo_deq = 0;
Florin Coras06d47752020-03-06 02:23:58 +0000976 f->prev = 0;
Florin Corasc547e912020-12-08 17:50:45 -0800977
Florin Corascbb5e822021-02-20 10:42:22 -0800978 fs_fifo_free (fs, f, f->shr->slice_index);
Florin Coras06d47752020-03-06 02:23:58 +0000979
Florin Coras62ddc032019-12-08 18:30:42 -0800980 fsh_active_fifos_update (fsh, -1);
Florin Coras88001c62019-04-24 14:44:46 -0700981}
982
Florin Coras6d7552c2020-04-09 01:49:45 +0000983void
Florin Corascbb5e822021-02-20 10:42:22 -0800984fifo_segment_free_client_fifo (fifo_segment_t *fs, svm_fifo_t *f)
985{
986 fs_fifo_free (fs, f, 0 /* clients attach fifos in slice 0 */);
987}
988
989void
Florin Coras0bc78d82021-01-09 14:34:01 -0800990fifo_segment_detach_fifo (fifo_segment_t *fs, svm_fifo_t **f)
Florin Coras6d7552c2020-04-09 01:49:45 +0000991{
Florin Coras1f952d32020-12-09 19:43:21 -0800992 fifo_slice_private_t *pfss;
Florin Coras6d7552c2020-04-09 01:49:45 +0000993 fifo_segment_slice_t *fss;
Florin Coras0bc78d82021-01-09 14:34:01 -0800994 svm_fifo_t *of = *f;
Florin Coras255554f2021-02-18 21:35:23 -0800995 u32 slice_index;
Florin Coras6d7552c2020-04-09 01:49:45 +0000996
Florin Coras0bc78d82021-01-09 14:34:01 -0800997 slice_index = of->master_thread_index;
998 fss = fsh_slice_get (fs->h, slice_index);
999 pfss = fs_slice_private_get (fs, slice_index);
1000 fss->virtual_mem -= svm_fifo_size (of);
1001 if (of->flags & SVM_FIFO_F_LL_TRACKED)
1002 pfss_fifo_del_active_list (pfss, of);
Florin Coras6d7552c2020-04-09 01:49:45 +00001003
Florin Coras255554f2021-02-18 21:35:23 -08001004 /* Collect chunks that were provided in return for those detached */
1005 fsh_slice_collect_chunks (fs->h, fss, of->chunks_at_attach);
1006 of->chunks_at_attach = 0;
Florin Coras0bc78d82021-01-09 14:34:01 -08001007
Florin Coras9c499e32021-02-25 09:57:04 -08001008 /* Collect hdr that was provided in return for the detached */
1009 fss_fifo_free_list_push (fs->h, fss, of->hdr_at_attach);
1010 of->hdr_at_attach = 0;
1011
Florin Coras0bc78d82021-01-09 14:34:01 -08001012 clib_mem_bulk_free (pfss->fifos, *f);
1013 *f = 0;
Florin Coras6d7552c2020-04-09 01:49:45 +00001014}
1015
1016void
Florin Coras0bc78d82021-01-09 14:34:01 -08001017fifo_segment_attach_fifo (fifo_segment_t *fs, svm_fifo_t **f, u32 slice_index)
Florin Coras6d7552c2020-04-09 01:49:45 +00001018{
Florin Coras255554f2021-02-18 21:35:23 -08001019 svm_fifo_chunk_t *c, *nc, *pc = 0;
Florin Coras1f952d32020-12-09 19:43:21 -08001020 fifo_slice_private_t *pfss;
Florin Coras6d7552c2020-04-09 01:49:45 +00001021 fifo_segment_slice_t *fss;
Florin Coras0bc78d82021-01-09 14:34:01 -08001022 svm_fifo_t *nf, *of;
Florin Coras6d7552c2020-04-09 01:49:45 +00001023
Florin Coras0bc78d82021-01-09 14:34:01 -08001024 nf = fs_fifo_alloc (fs, slice_index);
1025 clib_memcpy_fast (nf, *f, sizeof (*nf));
Florin Coras6d7552c2020-04-09 01:49:45 +00001026
Florin Coras0bc78d82021-01-09 14:34:01 -08001027 fss = fsh_slice_get (fs->h, slice_index);
1028 pfss = fs_slice_private_get (fs, slice_index);
1029 fss->virtual_mem += svm_fifo_size (nf);
Florin Coras5c01dbc2021-02-18 14:43:32 -08001030 nf->next = nf->prev = 0;
Florin Coras0bc78d82021-01-09 14:34:01 -08001031 if (nf->flags & SVM_FIFO_F_LL_TRACKED)
1032 pfss_fifo_add_active_list (pfss, nf);
1033
Florin Coras9c499e32021-02-25 09:57:04 -08001034 /* Allocate shared hdr and chunks to be collected at detach in return
1035 * for those that are being attached now */
Florin Coras0bc78d82021-01-09 14:34:01 -08001036 of = *f;
Florin Coras9c499e32021-02-25 09:57:04 -08001037 of->hdr_at_attach = fsh_try_alloc_fifo_hdr (fs->h, fss);
Florin Coras0bc78d82021-01-09 14:34:01 -08001038
1039 c = fs_chunk_ptr (fs->h, nf->shr->start_chunk);
Florin Coras255554f2021-02-18 21:35:23 -08001040 of->chunks_at_attach = pc = fsh_try_alloc_chunk (fs->h, fss, c->length);
Florin Coras255554f2021-02-18 21:35:23 -08001041
Florin Coras9c499e32021-02-25 09:57:04 -08001042 while ((c = fs_chunk_ptr (fs->h, c->next)))
Florin Coras6d7552c2020-04-09 01:49:45 +00001043 {
Florin Coras255554f2021-02-18 21:35:23 -08001044 nc = fsh_try_alloc_chunk (fs->h, fss, c->length);
1045 pc->next = fs_chunk_sptr (fs->h, nc);
1046 pc = nc;
Florin Coras6d7552c2020-04-09 01:49:45 +00001047 }
Florin Coras0bc78d82021-01-09 14:34:01 -08001048
1049 nf->shr->slice_index = slice_index;
1050 *f = nf;
Florin Coras6d7552c2020-04-09 01:49:45 +00001051}
1052
Florin Coras14f066e2020-12-10 18:52:40 -08001053uword
1054fifo_segment_fifo_offset (svm_fifo_t *f)
1055{
1056 return (u8 *) f->shr - (u8 *) f->fs_hdr;
1057}
1058
Florin Coras00338e02021-04-20 14:26:46 -07001059svm_fifo_chunk_t *
1060fifo_segment_alloc_chunk_w_slice (fifo_segment_t *fs, u32 slice_index,
1061 u32 chunk_size)
1062{
1063 fifo_segment_header_t *fsh = fs->h;
1064 fifo_segment_slice_t *fss;
1065
1066 fss = fsh_slice_get (fsh, slice_index);
1067 return fsh_try_alloc_chunk (fsh, fss, chunk_size);
1068}
1069
1070void
1071fifo_segment_collect_chunk (fifo_segment_t *fs, u32 slice_index,
1072 svm_fifo_chunk_t *c)
1073{
1074 fsh_collect_chunks (fs->h, slice_index, c);
1075}
1076
1077uword
1078fifo_segment_chunk_offset (fifo_segment_t *fs, svm_fifo_chunk_t *c)
1079{
1080 return (u8 *) c - (u8 *) fs->h;
1081}
1082
Florin Corasb4624182020-12-11 13:58:12 -08001083svm_msg_q_t *
1084fifo_segment_msg_q_alloc (fifo_segment_t *fs, u32 mq_index,
1085 svm_msg_q_cfg_t *cfg)
1086{
1087 fifo_segment_header_t *fsh = fs->h;
1088 svm_msg_q_shared_t *smq;
1089 svm_msg_q_t *mq;
1090 void *base;
1091 u32 size;
1092
1093 if (!fs->mqs)
1094 {
1095 u32 n_mqs = clib_max (fs->h->n_mqs, 1);
1096 vec_validate (fs->mqs, n_mqs - 1);
1097 }
1098
1099 size = svm_msg_q_size_to_alloc (cfg);
1100 base = fsh_alloc_aligned (fsh, size, 8);
Ofer Heifetzffa7bac2022-06-29 20:18:27 +03001101 if (!base)
1102 return 0;
1103
Florin Corasb4624182020-12-11 13:58:12 -08001104 fsh->n_reserved_bytes += size;
1105
1106 smq = svm_msg_q_init (base, cfg);
1107 mq = vec_elt_at_index (fs->mqs, mq_index);
1108 svm_msg_q_attach (mq, smq);
1109
1110 return mq;
1111}
1112
1113svm_msg_q_t *
1114fifo_segment_msg_q_attach (fifo_segment_t *fs, uword offset, u32 mq_index)
1115{
1116 svm_msg_q_t *mq;
1117
1118 if (!fs->mqs)
1119 {
1120 u32 n_mqs = clib_max (fs->h->n_mqs, 1);
1121 vec_validate (fs->mqs, n_mqs - 1);
1122 }
1123
1124 mq = vec_elt_at_index (fs->mqs, mq_index);
1125
Florin Coras86f12322021-01-22 15:05:14 -08001126 if (!mq->q.shr)
Florin Corasb4624182020-12-11 13:58:12 -08001127 {
1128 svm_msg_q_shared_t *smq;
1129 smq = (svm_msg_q_shared_t *) ((u8 *) fs->h + offset);
1130 svm_msg_q_attach (mq, smq);
1131 }
1132
1133 ASSERT (fifo_segment_msg_q_offset (fs, mq_index) == offset);
1134
1135 return mq;
1136}
1137
Florin Coras80b74252021-01-27 18:08:25 -08001138void
1139fifo_segment_msg_qs_discover (fifo_segment_t *fs, int *fds, u32 n_fds)
1140{
1141 svm_msg_q_shared_t *smq;
1142 u32 n_mqs, size, i;
1143 uword offset = 0, n_alloced;
1144 svm_msg_q_t *mq;
1145
1146 n_mqs = fs->h->n_mqs;
1147 if (n_fds && n_mqs != n_fds)
1148 {
1149 clib_warning ("expected %u fds got %u", n_mqs, n_fds);
1150 return;
1151 }
1152
1153 vec_validate (fs->mqs, n_mqs - 1);
1154 n_alloced = fs->h->n_reserved_bytes - fs->h->start_byte_index;
1155 ASSERT (n_alloced % n_mqs == 0);
1156 size = n_alloced / n_mqs;
1157
1158 offset = fs->h->start_byte_index;
1159 for (i = 0; i < n_mqs; i++)
1160 {
1161 mq = vec_elt_at_index (fs->mqs, i);
1162 smq = (svm_msg_q_shared_t *) ((u8 *) fs->h + offset);
1163 svm_msg_q_attach (mq, smq);
1164 if (n_fds)
1165 svm_msg_q_set_eventfd (mq, fds[i]);
1166 offset += size;
1167 }
1168}
1169
Florin Corasb4624182020-12-11 13:58:12 -08001170uword
1171fifo_segment_msg_q_offset (fifo_segment_t *fs, u32 mq_index)
1172{
1173 svm_msg_q_t *mq = vec_elt_at_index (fs->mqs, mq_index);
1174
Florin Coras86f12322021-01-22 15:05:14 -08001175 if (mq->q.shr == 0)
Florin Corasb4624182020-12-11 13:58:12 -08001176 return ~0ULL;
1177
Florin Coras86f12322021-01-22 15:05:14 -08001178 return (uword) ((u8 *) mq->q.shr - (u8 *) fs->h) -
1179 sizeof (svm_msg_q_shared_t);
Florin Corasb4624182020-12-11 13:58:12 -08001180}
1181
Florin Corasf9d4ab42019-05-11 16:55:53 -07001182int
Florin Coras62ddc032019-12-08 18:30:42 -08001183fifo_segment_prealloc_fifo_hdrs (fifo_segment_t * fs, u32 slice_index,
1184 u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001185{
1186 fifo_segment_header_t *fsh = fs->h;
Florin Coras62ddc032019-12-08 18:30:42 -08001187 fifo_segment_slice_t *fss;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001188
Florin Coras62ddc032019-12-08 18:30:42 -08001189 fss = fsh_slice_get (fsh, slice_index);
Florin Corasfe1ab7e2020-11-26 11:34:38 -08001190 return fsh_try_alloc_fifo_hdr_batch (fsh, fss, batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001191}
1192
1193int
Florin Coras62ddc032019-12-08 18:30:42 -08001194fifo_segment_prealloc_fifo_chunks (fifo_segment_t * fs, u32 slice_index,
1195 u32 chunk_size, u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001196{
Florin Coras62ddc032019-12-08 18:30:42 -08001197 fifo_segment_header_t *fsh = fs->h;
1198 fifo_segment_slice_t *fss;
Florin Coras473c8462020-11-16 18:11:51 -08001199 u32 fl_index;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001200
Florin Coras62ddc032019-12-08 18:30:42 -08001201 if (!fs_chunk_size_is_valid (fsh, chunk_size))
Florin Corasf9d4ab42019-05-11 16:55:53 -07001202 {
1203 clib_warning ("chunk size out of range %d", chunk_size);
1204 return -1;
1205 }
1206
1207 fl_index = fs_freelist_for_size (chunk_size);
Florin Coras62ddc032019-12-08 18:30:42 -08001208 fss = fsh_slice_get (fsh, slice_index);
1209
Florin Coras473c8462020-11-16 18:11:51 -08001210 return fsh_try_alloc_chunk_batch (fsh, fss, fl_index, batch_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001211}
1212
Florin Coras88001c62019-04-24 14:44:46 -07001213/**
1214 * Pre-allocates fifo pairs in fifo segment
1215 */
1216void
1217fifo_segment_preallocate_fifo_pairs (fifo_segment_t * fs,
1218 u32 rx_fifo_size, u32 tx_fifo_size,
1219 u32 * n_fifo_pairs)
1220{
Florin Corasf9d4ab42019-05-11 16:55:53 -07001221 u32 rx_rounded_data_size, tx_rounded_data_size, pair_size, pairs_to_alloc;
Florin Coras8d0149d2020-01-02 19:22:51 +00001222 u32 hdrs, pairs_per_slice, alloc_now;
Florin Coras62ddc032019-12-08 18:30:42 -08001223 fifo_segment_header_t *fsh = fs->h;
1224 int rx_fl_index, tx_fl_index, i;
1225 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -07001226 uword space_available;
Florin Coras88001c62019-04-24 14:44:46 -07001227
1228 /* Parameter check */
1229 if (rx_fifo_size == 0 || tx_fifo_size == 0 || *n_fifo_pairs == 0)
1230 return;
1231
Florin Coras62ddc032019-12-08 18:30:42 -08001232 if (!fs_chunk_size_is_valid (fsh, rx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001233 {
1234 clib_warning ("rx fifo_size out of range %d", rx_fifo_size);
1235 return;
1236 }
1237
Florin Coras62ddc032019-12-08 18:30:42 -08001238 if (!fs_chunk_size_is_valid (fsh, tx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001239 {
1240 clib_warning ("tx fifo_size out of range %d", tx_fifo_size);
1241 return;
1242 }
1243
1244 rx_rounded_data_size = (1 << (max_log2 (rx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001245 rx_fl_index = fs_freelist_for_size (rx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001246 tx_rounded_data_size = (1 << (max_log2 (tx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001247 tx_fl_index = fs_freelist_for_size (tx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001248
Florin Corasf9d4ab42019-05-11 16:55:53 -07001249 hdrs = sizeof (svm_fifo_t) + sizeof (svm_fifo_chunk_t);
Florin Corascefd5d82019-05-05 13:19:57 -07001250
Florin Coras88001c62019-04-24 14:44:46 -07001251 /* Calculate space requirements */
Florin Corascefd5d82019-05-05 13:19:57 -07001252 pair_size = 2 * hdrs + rx_rounded_data_size + tx_rounded_data_size;
Florin Coras213b1bb2020-12-07 14:33:58 -08001253 space_available = fsh_n_free_bytes (fsh);
Florin Coraseaacce42019-07-02 13:07:37 -07001254 pairs_to_alloc = space_available / pair_size;
1255 pairs_to_alloc = clib_min (pairs_to_alloc, *n_fifo_pairs);
Florin Coras62ddc032019-12-08 18:30:42 -08001256 pairs_per_slice = pairs_to_alloc / fs->n_slices;
Florin Coras8d0149d2020-01-02 19:22:51 +00001257 pairs_per_slice += pairs_to_alloc % fs->n_slices ? 1 : 0;
Florin Coraseaacce42019-07-02 13:07:37 -07001258
Florin Coras62ddc032019-12-08 18:30:42 -08001259 if (!pairs_per_slice)
Florin Coraseaacce42019-07-02 13:07:37 -07001260 return;
Florin Coras88001c62019-04-24 14:44:46 -07001261
Florin Coras62ddc032019-12-08 18:30:42 -08001262 for (i = 0; i < fs->n_slices; i++)
1263 {
Florin Coras8d0149d2020-01-02 19:22:51 +00001264 alloc_now = clib_min (pairs_per_slice, *n_fifo_pairs);
Benoît Gannef23b1512020-11-25 15:06:01 +01001265 if (0 == alloc_now)
1266 break;
1267
1268 fss = fsh_slice_get (fsh, i);
Florin Coras8d0149d2020-01-02 19:22:51 +00001269 if (fs_try_alloc_fifo_batch (fsh, fss, rx_fl_index, alloc_now))
1270 clib_warning ("rx prealloc failed: pairs %u", alloc_now);
1271 if (fs_try_alloc_fifo_batch (fsh, fss, tx_fl_index, alloc_now))
1272 clib_warning ("tx prealloc failed: pairs %u", alloc_now);
Florin Coras88001c62019-04-24 14:44:46 -07001273
Florin Coras8d0149d2020-01-02 19:22:51 +00001274 /* Account for the pairs allocated */
1275 *n_fifo_pairs -= alloc_now;
1276 }
Florin Coras88001c62019-04-24 14:44:46 -07001277}
1278
1279/**
1280 * Get number of active fifos
1281 */
1282u32
1283fifo_segment_num_fifos (fifo_segment_t * fs)
1284{
Florin Coras7a90e502020-04-09 04:46:14 +00001285 return fsh_n_active_fifos (fs->h);
Florin Coras88001c62019-04-24 14:44:46 -07001286}
1287
Florin Coras62ddc032019-12-08 18:30:42 -08001288static u32
Florin Coras17672aa2020-12-29 16:55:32 -08001289fs_slice_num_free_fifos (fifo_segment_header_t *fsh, fifo_segment_slice_t *fss)
Florin Coras88001c62019-04-24 14:44:46 -07001290{
Florin Corasc547e912020-12-08 17:50:45 -08001291 svm_fifo_shared_t *f;
Florin Corascefd5d82019-05-05 13:19:57 -07001292 u32 count = 0;
Florin Coras88001c62019-04-24 14:44:46 -07001293
Florin Coras17672aa2020-12-29 16:55:32 -08001294 f = fs_ptr (fsh, fss->free_fifos);
Florin Coras88001c62019-04-24 14:44:46 -07001295 if (f == 0)
1296 return 0;
1297
1298 while (f)
1299 {
Florin Coras17672aa2020-12-29 16:55:32 -08001300 f = fs_ptr (fsh, f->next);
Florin Coras88001c62019-04-24 14:44:46 -07001301 count++;
1302 }
1303 return count;
1304}
1305
Florin Corasb095a3c2019-04-25 12:58:46 -07001306u32
Florin Coras62ddc032019-12-08 18:30:42 -08001307fifo_segment_num_free_fifos (fifo_segment_t * fs)
1308{
1309 fifo_segment_header_t *fsh = fs->h;
1310 fifo_segment_slice_t *fss;
1311 int slice_index;
1312 u32 count = 0;
1313
1314 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1315 {
1316 fss = fsh_slice_get (fsh, slice_index);
Florin Coras17672aa2020-12-29 16:55:32 -08001317 count += fs_slice_num_free_fifos (fsh, fss);
Florin Coras62ddc032019-12-08 18:30:42 -08001318 }
1319 return count;
1320}
1321
1322static u32
Florin Corasaf588822020-12-09 12:51:13 -08001323fs_slice_num_free_chunks (fifo_segment_header_t *fsh,
1324 fifo_segment_slice_t *fss, u32 size)
Florin Corasb095a3c2019-04-25 12:58:46 -07001325{
1326 u32 count = 0, rounded_size, fl_index;
Florin Corasb095a3c2019-04-25 12:58:46 -07001327 svm_fifo_chunk_t *c;
1328 int i;
1329
Florin Corasb095a3c2019-04-25 12:58:46 -07001330 /* Count all free chunks? */
1331 if (size == ~0)
1332 {
Florin Coras4b8011e2020-12-07 19:38:23 -08001333 for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
Florin Corasb095a3c2019-04-25 12:58:46 -07001334 {
Florin Coras014dba32021-03-31 19:36:49 -07001335 c = fss_chunk_free_list_head (fsh, fss, i);
Florin Corasb095a3c2019-04-25 12:58:46 -07001336 if (c == 0)
1337 continue;
1338
1339 while (c)
1340 {
Florin Corasaf588822020-12-09 12:51:13 -08001341 c = fs_chunk_ptr (fsh, c->next);
Florin Corasb095a3c2019-04-25 12:58:46 -07001342 count++;
1343 }
1344 }
1345 return count;
1346 }
1347
1348 rounded_size = (1 << (max_log2 (size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001349 fl_index = fs_freelist_for_size (rounded_size);
Florin Corasb095a3c2019-04-25 12:58:46 -07001350
Florin Coras4b8011e2020-12-07 19:38:23 -08001351 if (fl_index >= FS_CHUNK_VEC_LEN)
Florin Corasb095a3c2019-04-25 12:58:46 -07001352 return 0;
1353
Florin Coras014dba32021-03-31 19:36:49 -07001354 c = fss_chunk_free_list_head (fsh, fss, fl_index);
Florin Corasb095a3c2019-04-25 12:58:46 -07001355 if (c == 0)
1356 return 0;
1357
1358 while (c)
1359 {
Florin Corasaf588822020-12-09 12:51:13 -08001360 c = fs_chunk_ptr (fsh, c->next);
Florin Corasb095a3c2019-04-25 12:58:46 -07001361 count++;
1362 }
1363 return count;
1364}
1365
Florin Coras62ddc032019-12-08 18:30:42 -08001366u32
1367fifo_segment_num_free_chunks (fifo_segment_t * fs, u32 size)
1368{
1369 fifo_segment_header_t *fsh = fs->h;
1370 fifo_segment_slice_t *fss;
1371 int slice_index;
1372 u32 count = 0;
1373
1374 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1375 {
1376 fss = fsh_slice_get (fsh, slice_index);
Florin Corasaf588822020-12-09 12:51:13 -08001377 count += fs_slice_num_free_chunks (fsh, fss, size);
Florin Coras62ddc032019-12-08 18:30:42 -08001378 }
1379 return count;
1380}
1381
Florin Corasef4f3e72019-12-11 14:27:53 -08001382uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001383fifo_segment_size (fifo_segment_t * fs)
1384{
Florin Coras213b1bb2020-12-07 14:33:58 -08001385 return fs->h->max_byte_index - fs->h->n_reserved_bytes;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001386}
1387
Florin Corasafbb33a2021-08-10 16:56:34 -07001388static u8
1389fs_has_reached_mem_limit (fifo_segment_t *fs)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001390{
Florin Corasafbb33a2021-08-10 16:56:34 -07001391 return (fs->flags & FIFO_SEGMENT_F_MEM_LIMIT) ? 1 : 0;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001392}
1393
Florin Corasafbb33a2021-08-10 16:56:34 -07001394static void
1395fs_reset_mem_limit (fifo_segment_t *fs)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001396{
Florin Corasafbb33a2021-08-10 16:56:34 -07001397 fs->flags &= ~FIFO_SEGMENT_F_MEM_LIMIT;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001398}
1399
Florin Coras213b1bb2020-12-07 14:33:58 -08001400void *
1401fifo_segment_alloc (fifo_segment_t *fs, uword size)
1402{
1403 void *rv = fsh_alloc (fs->h, size);
1404 /* Mark externally allocated bytes as reserved. This helps
1405 * @ref fifo_segment_size report bytes used only for fifos */
1406 fs->h->n_reserved_bytes += size;
1407 return rv;
1408}
1409
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001410uword
Florin Corasf9d4ab42019-05-11 16:55:53 -07001411fifo_segment_free_bytes (fifo_segment_t * fs)
1412{
Florin Coras62ddc032019-12-08 18:30:42 -08001413 return fsh_n_free_bytes (fs->h);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001414}
1415
Florin Coras62ddc032019-12-08 18:30:42 -08001416uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001417fifo_segment_cached_bytes (fifo_segment_t * fs)
1418{
1419 return fsh_n_cached_bytes (fs->h);
1420}
1421
1422uword
Florin Coras75ccf7b2020-03-05 19:44:02 +00001423fifo_segment_available_bytes (fifo_segment_t * fs)
1424{
1425 return fsh_n_free_bytes (fs->h) + fsh_n_cached_bytes (fs->h);
1426}
1427
1428uword
Florin Coras1c91c772019-06-25 18:14:13 -07001429fifo_segment_fl_chunk_bytes (fifo_segment_t * fs)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001430{
Florin Coras62ddc032019-12-08 18:30:42 -08001431 fifo_segment_header_t *fsh = fs->h;
1432 fifo_segment_slice_t *fss;
1433 uword n_bytes = 0;
1434 int slice_index;
1435
1436 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1437 {
1438 fss = fsh_slice_get (fsh, slice_index);
Florin Corasd01d2ce2020-11-17 18:42:38 -08001439 n_bytes += fss_fl_chunk_bytes (fss);
Florin Coras62ddc032019-12-08 18:30:42 -08001440 }
1441
1442 return n_bytes;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001443}
1444
Florin Coras88001c62019-04-24 14:44:46 -07001445u8
1446fifo_segment_has_fifos (fifo_segment_t * fs)
1447{
Florin Coras7a90e502020-04-09 04:46:14 +00001448 return (fsh_n_active_fifos (fs->h) != 0);
Florin Coras88001c62019-04-24 14:44:46 -07001449}
1450
1451svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -08001452fifo_segment_get_slice_fifo_list (fifo_segment_t * fs, u32 slice_index)
Florin Coras88001c62019-04-24 14:44:46 -07001453{
Florin Coras1f952d32020-12-09 19:43:21 -08001454 fifo_slice_private_t *pfss;
Florin Coras62ddc032019-12-08 18:30:42 -08001455
Florin Coras1f952d32020-12-09 19:43:21 -08001456 pfss = fs_slice_private_get (fs, slice_index);
1457 return pfss->active_fifos;
Florin Coras88001c62019-04-24 14:44:46 -07001458}
1459
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001460u8
1461fifo_segment_get_mem_usage (fifo_segment_t * fs)
1462{
1463 uword size, in_use;
1464
1465 size = fifo_segment_size (fs);
1466 in_use =
1467 size - fifo_segment_free_bytes (fs) - fifo_segment_cached_bytes (fs);
1468 return (in_use * 100) / size;
1469}
1470
1471fifo_segment_mem_status_t
Florin Corasafbb33a2021-08-10 16:56:34 -07001472fifo_segment_determine_status (fifo_segment_t *fs, u8 usage)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001473{
Florin Corasafbb33a2021-08-10 16:56:34 -07001474 if (!fs->high_watermark || !fs->low_watermark)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001475 return MEMORY_PRESSURE_NO_PRESSURE;
1476
1477 /* once the no-memory is detected, the status continues
1478 * until memory usage gets below the high watermark
1479 */
Florin Corasafbb33a2021-08-10 16:56:34 -07001480 if (fs_has_reached_mem_limit (fs))
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001481 {
Florin Corasafbb33a2021-08-10 16:56:34 -07001482 if (usage >= fs->high_watermark)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001483 return MEMORY_PRESSURE_NO_MEMORY;
1484 else
Florin Corasafbb33a2021-08-10 16:56:34 -07001485 fs_reset_mem_limit (fs);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001486 }
1487
Florin Corasafbb33a2021-08-10 16:56:34 -07001488 if (usage >= fs->high_watermark)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001489 return MEMORY_PRESSURE_HIGH_PRESSURE;
1490
Florin Corasafbb33a2021-08-10 16:56:34 -07001491 else if (usage >= fs->low_watermark)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001492 return MEMORY_PRESSURE_LOW_PRESSURE;
1493
1494 return MEMORY_PRESSURE_NO_PRESSURE;
1495}
1496
1497fifo_segment_mem_status_t
1498fifo_segment_get_mem_status (fifo_segment_t * fs)
1499{
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001500 u8 usage = fifo_segment_get_mem_usage (fs);
1501
Florin Corasafbb33a2021-08-10 16:56:34 -07001502 return fifo_segment_determine_status (fs, usage);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001503}
1504
Florin Coras88001c62019-04-24 14:44:46 -07001505u8 *
1506format_fifo_segment_type (u8 * s, va_list * args)
1507{
1508 fifo_segment_t *sp;
1509 sp = va_arg (*args, fifo_segment_t *);
1510 ssvm_segment_type_t st = ssvm_type (&sp->ssvm);
1511
1512 if (st == SSVM_SEGMENT_PRIVATE)
Florin Coras2a7c0b62020-09-28 23:40:28 -07001513 s = format (s, "%s", "private");
Florin Coras88001c62019-04-24 14:44:46 -07001514 else if (st == SSVM_SEGMENT_MEMFD)
1515 s = format (s, "%s", "memfd");
1516 else if (st == SSVM_SEGMENT_SHM)
1517 s = format (s, "%s", "shm");
1518 else
1519 s = format (s, "%s", "unknown");
1520 return s;
1521}
1522
1523/**
1524 * Segment format function
1525 */
1526u8 *
1527format_fifo_segment (u8 * s, va_list * args)
1528{
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001529 u32 count, indent, active_fifos, free_fifos;
Florin Coras5368bb02019-06-09 09:24:33 -07001530 fifo_segment_t *fs = va_arg (*args, fifo_segment_t *);
Florin Coras88001c62019-04-24 14:44:46 -07001531 int verbose __attribute__ ((unused)) = va_arg (*args, int);
Florin Corasef4f3e72019-12-11 14:27:53 -08001532 uword est_chunk_bytes, est_free_seg_bytes, free_chunks;
1533 uword chunk_bytes = 0, free_seg_bytes, chunk_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001534 uword tracked_cached_bytes;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001535 uword fifo_hdr = 0, reserved;
Florin Coras5368bb02019-06-09 09:24:33 -07001536 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -08001537 fifo_segment_slice_t *fss;
Florin Corascefd5d82019-05-05 13:19:57 -07001538 svm_fifo_chunk_t *c;
Florin Coras62ddc032019-12-08 18:30:42 -08001539 u32 slice_index;
Florin Coras5368bb02019-06-09 09:24:33 -07001540 char *address;
1541 size_t size;
Florin Coras88001c62019-04-24 14:44:46 -07001542 int i;
Florin Coras06d47752020-03-06 02:23:58 +00001543 uword allocated, in_use, virt;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001544 f64 usage;
1545 fifo_segment_mem_status_t mem_st;
Florin Coras88001c62019-04-24 14:44:46 -07001546
Florin Corasa0024a62021-12-16 10:09:17 -08001547 indent = format_get_indent (s);
Florin Coras5368bb02019-06-09 09:24:33 -07001548
Florin Coras5368bb02019-06-09 09:24:33 -07001549 fifo_segment_info (fs, &address, &size);
1550 active_fifos = fifo_segment_num_fifos (fs);
1551 free_fifos = fifo_segment_num_free_fifos (fs);
1552
Florin Corasa0024a62021-12-16 10:09:17 -08001553 s = format (s, "%U%v type: %U size: %U active fifos: %u", format_white_space,
1554 2, ssvm_name (&fs->ssvm), format_fifo_segment_type, fs,
1555 format_memory_size, size, active_fifos);
Florin Coras5368bb02019-06-09 09:24:33 -07001556
1557 if (!verbose)
1558 return s;
1559
Florin Coras62ddc032019-12-08 18:30:42 -08001560 fsh = fs->h;
1561
1562 free_chunks = fifo_segment_num_free_chunks (fs, ~0);
1563 if (free_chunks)
Florin Corasa0024a62021-12-16 10:09:17 -08001564 s = format (s, "\n\n%UFree/Allocated chunks by size:\n",
1565 format_white_space, indent + 2);
Florin Corasf8461bf2019-11-07 17:00:15 -08001566 else
1567 s = format (s, "\n");
1568
Florin Coras62ddc032019-12-08 18:30:42 -08001569 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -07001570 {
Florin Coras62ddc032019-12-08 18:30:42 -08001571 fss = fsh_slice_get (fsh, slice_index);
Florin Coras4b8011e2020-12-07 19:38:23 -08001572 for (i = 0; i < FS_CHUNK_VEC_LEN; i++)
Florin Coras88001c62019-04-24 14:44:46 -07001573 {
Florin Coras014dba32021-03-31 19:36:49 -07001574 c = fss_chunk_free_list_head (fsh, fss, i);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001575 if (c == 0 && fss->num_chunks[i] == 0)
Florin Coras62ddc032019-12-08 18:30:42 -08001576 continue;
1577 count = 0;
1578 while (c)
1579 {
Florin Corasaf588822020-12-09 12:51:13 -08001580 c = fs_chunk_ptr (fsh, c->next);
Florin Coras62ddc032019-12-08 18:30:42 -08001581 count++;
1582 }
1583
1584 chunk_size = fs_freelist_index_to_size (i);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001585 s = format (s, "%U%-5u kB: %u/%u\n", format_white_space, indent + 2,
1586 chunk_size >> 10, count, fss->num_chunks[i]);
Florin Coras62ddc032019-12-08 18:30:42 -08001587
1588 chunk_bytes += count * chunk_size;
Florin Coras88001c62019-04-24 14:44:46 -07001589 }
Florin Coras88001c62019-04-24 14:44:46 -07001590 }
Florin Corasf8461bf2019-11-07 17:00:15 -08001591
1592 fifo_hdr = free_fifos * sizeof (svm_fifo_t);
1593 est_chunk_bytes = fifo_segment_fl_chunk_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001594 est_free_seg_bytes = fifo_segment_free_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001595 free_seg_bytes = fifo_segment_free_bytes (fs);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001596 tracked_cached_bytes = fifo_segment_cached_bytes (fs);
1597 allocated = fifo_segment_size (fs);
1598 in_use = fifo_segment_size (fs) - est_free_seg_bytes - tracked_cached_bytes;
1599 usage = (100.0 * in_use) / allocated;
1600 mem_st = fifo_segment_get_mem_status (fs);
Florin Corasafbb33a2021-08-10 16:56:34 -07001601 virt = fs_virtual_mem (fs);
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001602 reserved = fsh->n_reserved_bytes;
Florin Corasf8461bf2019-11-07 17:00:15 -08001603
Florin Coras06d47752020-03-06 02:23:58 +00001604 s = format (s, "\n%Useg free bytes: %U (%lu) estimated: %U (%lu) reserved:"
1605 " %U (%lu)\n", format_white_space, indent + 2,
1606 format_memory_size, free_seg_bytes, free_seg_bytes,
1607 format_memory_size, est_free_seg_bytes, est_free_seg_bytes,
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001608 format_memory_size, reserved, reserved);
Florin Coras06d47752020-03-06 02:23:58 +00001609 s = format (s, "%Uchunk free bytes: %U (%lu) estimated: %U (%lu) tracked:"
1610 " %U (%lu)\n", format_white_space, indent + 2,
1611 format_memory_size, chunk_bytes, chunk_bytes,
1612 format_memory_size, est_chunk_bytes, est_chunk_bytes,
1613 format_memory_size, tracked_cached_bytes, tracked_cached_bytes);
Florin Coras44fadb02021-02-20 17:36:19 -08001614 s = format (s, "%Ufifo active: %u hdr free: %u bytes: %U (%u) \n",
1615 format_white_space, indent + 2, fsh->n_active_fifos, free_fifos,
Florin Coras06d47752020-03-06 02:23:58 +00001616 format_memory_size, fifo_hdr, fifo_hdr);
1617 s = format (s, "%Usegment usage: %.2f%% (%U / %U) virt: %U status: %s\n",
1618 format_white_space, indent + 2, usage, format_memory_size,
1619 in_use, format_memory_size, allocated, format_memory_size, virt,
1620 fifo_segment_mem_status_strings[mem_st]);
Florin Corasf8461bf2019-11-07 17:00:15 -08001621 s = format (s, "\n");
Florin Coras5368bb02019-06-09 09:24:33 -07001622
Florin Coras88001c62019-04-24 14:44:46 -07001623 return s;
1624}
1625
1626/*
1627 * fd.io coding-style-patch-verification: ON
1628 *
1629 * Local Variables:
1630 * eval: (c-set-style "gnu")
1631 * End:
1632 */