blob: f2890cc0bce53fb82faa852e34679f7377e39796 [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>
17
Florin Coras06d47752020-03-06 02:23:58 +000018static inline fifo_segment_slice_t *
19fsh_slice_get (fifo_segment_header_t * fsh, u32 slice_index)
20{
21 return &fsh->slices[slice_index];
22}
23
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000024static char *fifo_segment_mem_status_strings[] = {
25#define _(sym,str) str,
26 foreach_segment_mem_status
27#undef _
28};
29
Florin Coras88001c62019-04-24 14:44:46 -070030/**
Florin Corasf9d4ab42019-05-11 16:55:53 -070031 * Fifo segment free space
32 *
33 * Queries the underlying memory manager, dlmalloc, for free space. Since this
34 * ends up walking the internal data structures, it should not be called
35 * indiscriminately.
36 *
37 * @param fs fifo segment
38 * @return number of free bytes
39 */
Florin Corasef4f3e72019-12-11 14:27:53 -080040static uword
Florin Coras4453c092019-12-19 10:13:15 -080041fsh_free_space (fifo_segment_header_t * fsh)
Florin Corasf9d4ab42019-05-11 16:55:53 -070042{
43 struct dlmallinfo dlminfo;
44
Florin Coras4453c092019-12-19 10:13:15 -080045 dlminfo = mspace_mallinfo (fsh->ssvm_sh->heap);
Florin Corasf9d4ab42019-05-11 16:55:53 -070046 return dlminfo.fordblks;
47}
48
Florin Coras62ddc032019-12-08 18:30:42 -080049static inline void
50fsh_free_bytes_sub (fifo_segment_header_t * fsh, int size)
51{
52 clib_atomic_fetch_sub_rel (&fsh->n_free_bytes, size);
53}
54
55static inline uword
56fsh_n_free_bytes (fifo_segment_header_t * fsh)
57{
Florin Coras8122cc22019-12-18 13:06:41 -080058 uword n_free = clib_atomic_load_relax_n (&fsh->n_free_bytes);
59 return n_free > fsh->n_reserved_bytes ? n_free - fsh->n_reserved_bytes : 0;
60}
61
62static inline void
Florin Coras4453c092019-12-19 10:13:15 -080063fsh_update_free_bytes (fifo_segment_header_t * fsh)
Florin Coras8122cc22019-12-18 13:06:41 -080064{
Florin Coras4453c092019-12-19 10:13:15 -080065 clib_atomic_store_rel_n (&fsh->n_free_bytes, fsh_free_space (fsh));
Florin Coras8122cc22019-12-18 13:06:41 -080066}
67
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000068static inline void
69fsh_cached_bytes_add (fifo_segment_header_t * fsh, int size)
70{
71 clib_atomic_fetch_add_rel (&fsh->n_cached_bytes, size);
72}
73
74static inline void
75fsh_cached_bytes_sub (fifo_segment_header_t * fsh, int size)
76{
77 clib_atomic_fetch_sub_rel (&fsh->n_cached_bytes, size);
78}
79
80static inline uword
81fsh_n_cached_bytes (fifo_segment_header_t * fsh)
82{
83 uword n_cached = clib_atomic_load_relax_n (&fsh->n_cached_bytes);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +000084 return n_cached;
85}
86
Florin Coras06d47752020-03-06 02:23:58 +000087static inline void
88fsh_active_fifos_update (fifo_segment_header_t * fsh, int inc)
89{
90 clib_atomic_fetch_add_rel (&fsh->n_active_fifos, inc);
91}
92
93static inline uword
94fsh_virtual_mem (fifo_segment_header_t * fsh)
95{
96 fifo_segment_slice_t *fss;
97 uword total_vm = 0;
98 int i;
99
100 for (i = 0; i < fsh->n_slices; i++)
101 {
102 fss = fsh_slice_get (fsh, i);
103 total_vm += clib_atomic_load_relax_n (&fss->virtual_mem);
104 }
105 return total_vm;
106}
107
108void
109fsh_virtual_mem_update (fifo_segment_header_t * fsh, u32 slice_index,
110 int n_bytes)
111{
112 fifo_segment_slice_t *fss = fsh_slice_get (fsh, slice_index);
113 fss->virtual_mem += n_bytes;
114}
115
Florin Coras8122cc22019-12-18 13:06:41 -0800116static void
117fsh_check_mem (fifo_segment_header_t * fsh)
118{
119 uword thresh;
120
121 if (fsh->flags & FIFO_SEGMENT_F_MEM_LIMIT)
122 return;
123
124 thresh = clib_max (0.01 * fsh->ssvm_sh->ssvm_size,
125 2 * fsh->n_reserved_bytes);
126 if (fsh->n_free_bytes > thresh)
127 return;
128
129 fsh->flags |= FIFO_SEGMENT_F_MEM_LIMIT;
Florin Coras4453c092019-12-19 10:13:15 -0800130 fsh_update_free_bytes (fsh);
Florin Coras62ddc032019-12-08 18:30:42 -0800131}
132
Florin Corasf9d4ab42019-05-11 16:55:53 -0700133/**
Florin Coras88001c62019-04-24 14:44:46 -0700134 * Initialize fifo segment shared header
135 */
136int
137fifo_segment_init (fifo_segment_t * fs)
138{
139 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -0800140 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -0700141 ssvm_shared_header_t *sh;
Florin Coras05c73172020-03-05 20:36:40 +0000142 u32 max_chunk_sz;
Florin Coras62ddc032019-12-08 18:30:42 -0800143 uword max_fifo;
Florin Coras88001c62019-04-24 14:44:46 -0700144 void *oldheap;
Florin Coras62ddc032019-12-08 18:30:42 -0800145 int i;
Florin Coras88001c62019-04-24 14:44:46 -0700146
147 sh = fs->ssvm.sh;
148 oldheap = ssvm_push_heap (sh);
149
Florin Coras62ddc032019-12-08 18:30:42 -0800150 /*
151 * Manually align the fifo segment header to sizeof(uword) = 8 bytes.
152 * Long story made short: the "process-private" fifo segment
153 * is allocated from the main heap, not mmapped. dlmalloc
154 * only guarantees 4-byte alignment, and on aarch64
155 * the fsh can end up 4-byte but not 8-byte aligned.
156 * That eventually causes the atomic op in fifo_segment_update_free_bytes
157 * to backfire.
158 */
159 fsh = clib_mem_alloc_aligned (sizeof (*fsh), sizeof (uword));
Florin Coras88001c62019-04-24 14:44:46 -0700160 clib_memset (fsh, 0, sizeof (*fsh));
161 fs->h = sh->opaque[0] = fsh;
Florin Coras62ddc032019-12-08 18:30:42 -0800162 fs->n_slices = clib_max (fs->n_slices, 1);
163
164 fsh->ssvm_sh = fs->ssvm.sh;
165 fsh->n_slices = fs->n_slices;
Florin Coras4453c092019-12-19 10:13:15 -0800166 max_fifo = clib_min ((fsh_free_space (fsh) - 4096) / 2,
Florin Coras62ddc032019-12-08 18:30:42 -0800167 FIFO_SEGMENT_MAX_FIFO_SIZE);
168 fsh->max_log2_chunk_size = max_log2 (max_fifo);
169
170 fsh->slices = clib_mem_alloc (sizeof (*fss) * fs->n_slices);
171 clib_memset (fsh->slices, 0, sizeof (*fss) * fs->n_slices);
172 max_chunk_sz = fsh->max_log2_chunk_size - FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE;
173
174 for (i = 0; i < fs->n_slices; i++)
175 {
176 fss = fsh_slice_get (fsh, i);
177 vec_validate_init_empty (fss->free_chunks, max_chunk_sz, 0);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +0000178 vec_validate_init_empty (fss->num_chunks, max_chunk_sz, 0);
Florin Corasf22f4e52019-12-19 16:10:58 -0800179 clib_spinlock_init (&fss->chunk_lock);
Florin Coras62ddc032019-12-08 18:30:42 -0800180 }
Florin Coras88001c62019-04-24 14:44:46 -0700181
182 ssvm_pop_heap (oldheap);
183
Florin Coras4453c092019-12-19 10:13:15 -0800184 fsh->n_free_bytes = fsh_free_space (fsh);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000185 fsh->n_cached_bytes = 0;
Florin Coras05c73172020-03-05 20:36:40 +0000186 fsh->n_reserved_bytes = clib_min (0.01 * fsh->n_free_bytes, 256 << 10);
Florin Coras88001c62019-04-24 14:44:46 -0700187 sh->ready = 1;
188 return (0);
189}
190
191/**
Florin Coras88001c62019-04-24 14:44:46 -0700192 * Create a fifo segment and initialize as master
193 */
194int
195fifo_segment_create (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
196{
Florin Corasf9d4ab42019-05-11 16:55:53 -0700197 fifo_segment_t *fs;
198 uword baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700199 int rv;
200
Florin Coras88001c62019-04-24 14:44:46 -0700201 /* Allocate a fresh segment */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700202 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700203
Florin Corasf9d4ab42019-05-11 16:55:53 -0700204 baseva = a->segment_type == SSVM_SEGMENT_PRIVATE ? ~0ULL : sm->next_baseva;
205 fs->ssvm.ssvm_size = a->segment_size;
206 fs->ssvm.i_am_master = 1;
207 fs->ssvm.my_pid = getpid ();
208 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
209 fs->ssvm.requested_va = baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700210
Florin Corasf9d4ab42019-05-11 16:55:53 -0700211 if ((rv = ssvm_master_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700212 {
Florin Corasf9d4ab42019-05-11 16:55:53 -0700213 pool_put (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700214 return (rv);
215 }
216
217 /* Note: requested_va updated due to seg base addr randomization */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700218 sm->next_baseva = fs->ssvm.sh->ssvm_va + fs->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700219
Florin Corasf9d4ab42019-05-11 16:55:53 -0700220 fifo_segment_init (fs);
221 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700222 return (0);
223}
224
225/**
226 * Attach as slave to a fifo segment
227 */
228int
229fifo_segment_attach (fifo_segment_main_t * sm, fifo_segment_create_args_t * a)
230{
Florin Coras62ddc032019-12-08 18:30:42 -0800231 fifo_segment_t *fs;
Florin Coras88001c62019-04-24 14:44:46 -0700232 int rv;
233
Florin Coras62ddc032019-12-08 18:30:42 -0800234 pool_get_zero (sm->segments, fs);
Florin Coras88001c62019-04-24 14:44:46 -0700235
Florin Coras62ddc032019-12-08 18:30:42 -0800236 fs->ssvm.ssvm_size = a->segment_size;
237 fs->ssvm.my_pid = getpid ();
238 fs->ssvm.name = format (0, "%s%c", a->segment_name, 0);
239 fs->ssvm.requested_va = sm->next_baseva;
Florin Coras88001c62019-04-24 14:44:46 -0700240 if (a->segment_type == SSVM_SEGMENT_MEMFD)
Florin Coras62ddc032019-12-08 18:30:42 -0800241 fs->ssvm.fd = a->memfd_fd;
Florin Coras88001c62019-04-24 14:44:46 -0700242 else
Florin Coras62ddc032019-12-08 18:30:42 -0800243 fs->ssvm.attach_timeout = sm->timeout_in_seconds;
Florin Coras88001c62019-04-24 14:44:46 -0700244
Florin Coras62ddc032019-12-08 18:30:42 -0800245 if ((rv = ssvm_slave_init (&fs->ssvm, a->segment_type)))
Florin Coras88001c62019-04-24 14:44:46 -0700246 {
Florin Coras62ddc032019-12-08 18:30:42 -0800247 _vec_len (fs) = vec_len (fs) - 1;
Florin Coras88001c62019-04-24 14:44:46 -0700248 return (rv);
249 }
250
251 /* Fish the segment header */
Florin Coras62ddc032019-12-08 18:30:42 -0800252 fs->h = fs->ssvm.sh->opaque[0];
Florin Coras88001c62019-04-24 14:44:46 -0700253
Florin Coras62ddc032019-12-08 18:30:42 -0800254 vec_add1 (a->new_segment_indices, fs - sm->segments);
Florin Coras88001c62019-04-24 14:44:46 -0700255 return (0);
256}
257
258void
259fifo_segment_delete (fifo_segment_main_t * sm, fifo_segment_t * s)
260{
261 ssvm_delete (&s->ssvm);
262 clib_memset (s, 0xfe, sizeof (*s));
263 pool_put (sm->segments, s);
264}
265
266u32
267fifo_segment_index (fifo_segment_main_t * sm, fifo_segment_t * s)
268{
269 return s - sm->segments;
270}
271
Florin Coras88001c62019-04-24 14:44:46 -0700272fifo_segment_t *
273fifo_segment_get_segment (fifo_segment_main_t * sm, u32 segment_index)
274{
275 return pool_elt_at_index (sm->segments, segment_index);
276}
277
278void
279fifo_segment_info (fifo_segment_t * seg, char **address, size_t * size)
280{
Florin Coras404b8a32019-05-09 12:08:06 -0700281 *address = (char *) seg->ssvm.sh->ssvm_va;
282 *size = seg->ssvm.ssvm_size;
Florin Coras88001c62019-04-24 14:44:46 -0700283}
284
285void
286fifo_segment_main_init (fifo_segment_main_t * sm, u64 baseva,
287 u32 timeout_in_seconds)
288{
289 sm->next_baseva = baseva;
290 sm->timeout_in_seconds = timeout_in_seconds;
291}
292
Florin Corasf9d4ab42019-05-11 16:55:53 -0700293static inline u32
294fs_freelist_for_size (u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700295{
Florin Corasf22f4e52019-12-19 16:10:58 -0800296 if (PREDICT_FALSE (size < FIFO_SEGMENT_MIN_FIFO_SIZE))
297 return 0;
Florin Coras62ddc032019-12-08 18:30:42 -0800298 return max_log2 (size) - FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE;
Florin Coras88001c62019-04-24 14:44:46 -0700299}
300
Florin Corasf9d4ab42019-05-11 16:55:53 -0700301static inline u32
302fs_freelist_index_to_size (u32 fl_index)
303{
Florin Coras62ddc032019-12-08 18:30:42 -0800304 return 1 << (fl_index + FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700305}
306
Florin Coras88001c62019-04-24 14:44:46 -0700307static inline int
Florin Coras62ddc032019-12-08 18:30:42 -0800308fs_chunk_size_is_valid (fifo_segment_header_t * fsh, u32 size)
Florin Coras88001c62019-04-24 14:44:46 -0700309{
310 /*
311 * 4K minimum. It's not likely that anything good will happen
312 * with a smaller FIFO.
313 */
314 return size >= FIFO_SEGMENT_MIN_FIFO_SIZE
Florin Coras62ddc032019-12-08 18:30:42 -0800315 && size <= (1 << fsh->max_log2_chunk_size);
Florin Coras88001c62019-04-24 14:44:46 -0700316}
317
Florin Corascefd5d82019-05-05 13:19:57 -0700318static svm_fifo_t *
Florin Coras2de9c0f2020-02-02 19:30:39 +0000319fs_try_alloc_fifo_freelist (fifo_segment_slice_t * fss, u32 fl_index)
Florin Corascefd5d82019-05-05 13:19:57 -0700320{
321 svm_fifo_chunk_t *c;
322 svm_fifo_t *f;
Florin Corascefd5d82019-05-05 13:19:57 -0700323
Florin Coras62ddc032019-12-08 18:30:42 -0800324 f = fss->free_fifos;
325 c = fss->free_chunks[fl_index];
Florin Corascefd5d82019-05-05 13:19:57 -0700326
327 if (!f || !c)
328 return 0;
329
Florin Coras62ddc032019-12-08 18:30:42 -0800330 fss->free_fifos = f->next;
331 fss->free_chunks[fl_index] = c->next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800332 c->next = 0;
Florin Corascefd5d82019-05-05 13:19:57 -0700333 c->start_byte = 0;
Florin Corascefd5d82019-05-05 13:19:57 -0700334 memset (f, 0, sizeof (*f));
335 f->start_chunk = c;
336 f->end_chunk = c;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700337
Florin Coras62ddc032019-12-08 18:30:42 -0800338 fss->n_fl_chunk_bytes -= fs_freelist_index_to_size (fl_index);
Florin Corascefd5d82019-05-05 13:19:57 -0700339 return f;
340}
341
Florin Coras8e755a12020-02-06 16:59:31 +0000342svm_fifo_chunk_t *
343fs_try_alloc_multi_chunk (fifo_segment_header_t * fsh,
344 fifo_segment_slice_t * fss, u32 data_bytes)
345{
346 u32 fl_index, fl_size, n_alloc = 0, req_bytes = data_bytes;
347 svm_fifo_chunk_t *c, *first = 0, *next;
348
349 fl_index = fs_freelist_for_size (req_bytes);
350 if (fl_index > 0)
351 fl_index -= 1;
352
353 fl_size = fs_freelist_index_to_size (fl_index);
354
355 while (req_bytes)
356 {
357 c = fss->free_chunks[fl_index];
358 if (c)
359 {
360 fss->free_chunks[fl_index] = c->next;
361 c->next = first;
362 first = c;
363 n_alloc += fl_size;
364 req_bytes -= clib_min (fl_size, req_bytes);
365 }
366 else
367 {
368 /* Failed to allocate with smaller chunks */
369 if (fl_index == 0)
370 {
371 /* free all chunks if any allocated */
372 c = first;
373 while (c)
374 {
375 fl_index = fs_freelist_for_size (c->length);
376 fl_size = fs_freelist_index_to_size (fl_index);
377 next = c->next;
378 c->next = fss->free_chunks[fl_index];
379 fss->free_chunks[fl_index] = c;
380 fss->n_fl_chunk_bytes += fl_size;
381 c = next;
382 }
383 n_alloc = 0;
384 first = 0;
385 fl_index = fs_freelist_for_size (data_bytes);
386 if (fss->free_chunks[fl_index + 1])
387 {
388 fl_index += 1;
389 fl_size = fs_freelist_index_to_size (fl_index);
390 continue;
391 }
392
393 return 0;
394 }
395 fl_index -= 1;
396 fl_size = fl_size >> 1;
397 }
398 }
399
400 fss->n_fl_chunk_bytes -= n_alloc;
401 fsh_cached_bytes_sub (fsh, n_alloc);
402 return first;
403}
404
Florin Corascefd5d82019-05-05 13:19:57 -0700405static svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800406fs_try_alloc_fifo_freelist_multi_chunk (fifo_segment_header_t * fsh,
407 fifo_segment_slice_t * fss,
408 u32 data_bytes)
Florin Coras88001c62019-04-24 14:44:46 -0700409{
Florin Corasc75ce4d2020-02-28 21:51:24 +0000410 svm_fifo_chunk_t *c, *first = 0, *last = 0, *next;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700411 u32 fl_index, fl_size, n_alloc = 0;
412 svm_fifo_t *f;
413
Florin Coras62ddc032019-12-08 18:30:42 -0800414 f = fss->free_fifos;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700415 if (!f)
416 {
Florin Coras62ddc032019-12-08 18:30:42 -0800417 void *oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700418 f = clib_mem_alloc_aligned (sizeof (*f), CLIB_CACHE_LINE_BYTES);
419 ssvm_pop_heap (oldheap);
420 if (!f)
421 return 0;
422 memset (f, 0, sizeof (*f));
Florin Coras62ddc032019-12-08 18:30:42 -0800423 fsh_free_bytes_sub (fsh, sizeof (*f));
Florin Corasf9d4ab42019-05-11 16:55:53 -0700424 }
Florin Coras73cad332019-08-28 17:12:32 -0700425 else
426 {
Florin Coras62ddc032019-12-08 18:30:42 -0800427 fss->free_fifos = f->next;
Florin Coras73cad332019-08-28 17:12:32 -0700428 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700429
Florin Corasd849edf2019-12-20 18:48:20 -0800430 fl_index = fs_freelist_for_size (data_bytes);
431 if (fl_index > 0)
432 fl_index -= 1;
433
Florin Corasf9d4ab42019-05-11 16:55:53 -0700434 fl_size = fs_freelist_index_to_size (fl_index);
435
436 while (data_bytes)
437 {
Florin Coras62ddc032019-12-08 18:30:42 -0800438 c = fss->free_chunks[fl_index];
Florin Corasf9d4ab42019-05-11 16:55:53 -0700439 if (c)
440 {
Florin Coras62ddc032019-12-08 18:30:42 -0800441 fss->free_chunks[fl_index] = c->next;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700442 if (!last)
443 last = c;
444 c->next = first;
445 first = c;
Florin Coras1c91c772019-06-25 18:14:13 -0700446 n_alloc += fl_size;
Florin Corasc75ce4d2020-02-28 21:51:24 +0000447 data_bytes -= clib_min (fl_size, data_bytes);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700448 }
449 else
450 {
Florin Corasd849edf2019-12-20 18:48:20 -0800451 /* Failed to allocate with smaller chunks */
452 if (fl_index == 0)
453 {
454 /* free all chunks if any allocated */
455 c = first;
456 while (c)
457 {
458 fl_index = fs_freelist_for_size (c->length);
459 fl_size = fs_freelist_index_to_size (fl_index);
Florin Corasc75ce4d2020-02-28 21:51:24 +0000460 next = c->next;
Florin Corasd849edf2019-12-20 18:48:20 -0800461 c->next = fss->free_chunks[fl_index];
462 fss->free_chunks[fl_index] = c;
463 fss->n_fl_chunk_bytes += fl_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000464 n_alloc -= fl_size;
Florin Corasd849edf2019-12-20 18:48:20 -0800465 data_bytes += fl_size;
Florin Corasc75ce4d2020-02-28 21:51:24 +0000466 c = next;
Florin Corasd849edf2019-12-20 18:48:20 -0800467 }
468 first = last = 0;
469 fl_index = fs_freelist_for_size (data_bytes);
470 if (fss->free_chunks[fl_index + 1])
471 {
472 fl_index += 1;
473 fl_size = fs_freelist_index_to_size (fl_index);
474 continue;
475 }
476
477 f->next = fss->free_fifos;
478 fss->free_fifos = f;
479 return 0;
480 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700481 fl_index -= 1;
482 fl_size = fl_size >> 1;
483 }
484 }
Florin Corasd849edf2019-12-20 18:48:20 -0800485
Florin Corasf9d4ab42019-05-11 16:55:53 -0700486 f->start_chunk = first;
487 f->end_chunk = last;
Florin Coras62ddc032019-12-08 18:30:42 -0800488 fss->n_fl_chunk_bytes -= n_alloc;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000489 fsh_cached_bytes_sub (fsh, n_alloc);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700490 return f;
491}
492
493static int
Florin Coras8e755a12020-02-06 16:59:31 +0000494fsh_try_alloc_chunk_batch (fifo_segment_header_t * fsh,
495 fifo_segment_slice_t * fss,
496 u32 fl_index, u32 batch_size)
497{
498 u32 rounded_data_size;
499 svm_fifo_chunk_t *c;
500 void *oldheap;
501 uword size;
502 u8 *cmem;
503 int i;
504
505 rounded_data_size = fs_freelist_index_to_size (fl_index);
506 size = (uword) (sizeof (*c) + rounded_data_size) * batch_size;
507
508 oldheap = ssvm_push_heap (fsh->ssvm_sh);
509 cmem = clib_mem_alloc_aligned_at_offset (size, CLIB_CACHE_LINE_BYTES,
510 0 /* align_offset */ ,
511 0 /* os_out_of_memory */ );
512 ssvm_pop_heap (oldheap);
513
514 /* Out of space.. */
515 if (cmem == 0)
516 return -1;
517
518 /* Carve fifo + chunk space */
519 for (i = 0; i < batch_size; i++)
520 {
521 c = (svm_fifo_chunk_t *) cmem;
522 c->start_byte = 0;
523 c->length = rounded_data_size;
524 c->enq_rb_index = RBTREE_TNIL_INDEX;
525 c->deq_rb_index = RBTREE_TNIL_INDEX;
526 c->next = fss->free_chunks[fl_index];
527 fss->free_chunks[fl_index] = c;
528 cmem += sizeof (*c) + rounded_data_size;
529 }
530
Ryujiro Shibuyad3588722020-03-13 12:45:06 +0000531 fss->num_chunks[fl_index] += batch_size;
Florin Coras8e755a12020-02-06 16:59:31 +0000532 fss->n_fl_chunk_bytes += batch_size * rounded_data_size;
533 fsh_cached_bytes_add (fsh, batch_size * rounded_data_size);
534 fsh_free_bytes_sub (fsh, size);
535
536 return 0;
537}
538
539static int
Florin Coras62ddc032019-12-08 18:30:42 -0800540fs_try_alloc_fifo_batch (fifo_segment_header_t * fsh,
541 fifo_segment_slice_t * fss,
542 u32 fl_index, u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700543{
Florin Coras36a0c4d2020-01-31 08:28:02 -0800544 u32 hdrs, rounded_data_size;
Florin Corascefd5d82019-05-05 13:19:57 -0700545 svm_fifo_chunk_t *c;
Florin Coras88001c62019-04-24 14:44:46 -0700546 svm_fifo_t *f;
Florin Corascefd5d82019-05-05 13:19:57 -0700547 void *oldheap;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800548 uword size;
Florin Corascefd5d82019-05-05 13:19:57 -0700549 u8 *fmem;
550 int i;
Florin Coras88001c62019-04-24 14:44:46 -0700551
Florin Corasf9d4ab42019-05-11 16:55:53 -0700552 rounded_data_size = fs_freelist_index_to_size (fl_index);
Florin Corascefd5d82019-05-05 13:19:57 -0700553 hdrs = sizeof (*f) + sizeof (*c);
Florin Coras36a0c4d2020-01-31 08:28:02 -0800554 size = (uword) (hdrs + rounded_data_size) * batch_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700555
Florin Coras62ddc032019-12-08 18:30:42 -0800556 oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Corascefd5d82019-05-05 13:19:57 -0700557 fmem = clib_mem_alloc_aligned_at_offset (size, CLIB_CACHE_LINE_BYTES,
558 0 /* align_offset */ ,
559 0 /* os_out_of_memory */ );
560 ssvm_pop_heap (oldheap);
Florin Coras88001c62019-04-24 14:44:46 -0700561
562 /* Out of space.. */
Florin Corascefd5d82019-05-05 13:19:57 -0700563 if (fmem == 0)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700564 return -1;
Florin Coras88001c62019-04-24 14:44:46 -0700565
Florin Corascefd5d82019-05-05 13:19:57 -0700566 /* Carve fifo + chunk space */
Florin Corasf9d4ab42019-05-11 16:55:53 -0700567 for (i = 0; i < batch_size; i++)
Florin Coras88001c62019-04-24 14:44:46 -0700568 {
Florin Corascefd5d82019-05-05 13:19:57 -0700569 f = (svm_fifo_t *) fmem;
570 memset (f, 0, sizeof (*f));
Florin Coras62ddc032019-12-08 18:30:42 -0800571 f->next = fss->free_fifos;
572 fss->free_fifos = f;
Florin Corascefd5d82019-05-05 13:19:57 -0700573 c = (svm_fifo_chunk_t *) (fmem + sizeof (*f));
574 c->start_byte = 0;
575 c->length = rounded_data_size;
Florin Corasf22f4e52019-12-19 16:10:58 -0800576 c->enq_rb_index = RBTREE_TNIL_INDEX;
577 c->deq_rb_index = RBTREE_TNIL_INDEX;
Florin Coras62ddc032019-12-08 18:30:42 -0800578 c->next = fss->free_chunks[fl_index];
579 fss->free_chunks[fl_index] = c;
Florin Corascefd5d82019-05-05 13:19:57 -0700580 fmem += hdrs + rounded_data_size;
Florin Coras88001c62019-04-24 14:44:46 -0700581 }
Florin Corascefd5d82019-05-05 13:19:57 -0700582
Ryujiro Shibuyad3588722020-03-13 12:45:06 +0000583 fss->num_chunks[fl_index] += batch_size;
Florin Coras62ddc032019-12-08 18:30:42 -0800584 fss->n_fl_chunk_bytes += batch_size * rounded_data_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000585 fsh_cached_bytes_add (fsh, batch_size * rounded_data_size);
Florin Coras62ddc032019-12-08 18:30:42 -0800586 fsh_free_bytes_sub (fsh, size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700587
588 return 0;
589}
590
591/**
592 * Try to allocate new fifo
593 *
594 * Tries the following steps in order:
595 * - grab fifo and chunk from freelists
596 * - batch fifo and chunk allocation
597 * - single fifo allocation
598 * - grab multiple fifo chunks from freelists
599 */
600static svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800601fs_try_alloc_fifo (fifo_segment_header_t * fsh, fifo_segment_slice_t * fss,
602 u32 data_bytes)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700603{
Florin Corasf9d4ab42019-05-11 16:55:53 -0700604 u32 fifo_sz, fl_index;
605 svm_fifo_t *f = 0;
Florin Coras62ddc032019-12-08 18:30:42 -0800606 uword n_free_bytes;
Florin Coras2de9c0f2020-02-02 19:30:39 +0000607 u32 min_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700608
Florin Coras2de9c0f2020-02-02 19:30:39 +0000609 min_size = clib_max ((fsh->pct_first_alloc * data_bytes) / 100, 4096);
610 fl_index = fs_freelist_for_size (min_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700611
Florin Corasc75ce4d2020-02-28 21:51:24 +0000612 clib_spinlock_lock (&fss->chunk_lock);
613
Florin Coras62ddc032019-12-08 18:30:42 -0800614 if (fss->free_fifos && fss->free_chunks[fl_index])
Florin Corasf9d4ab42019-05-11 16:55:53 -0700615 {
Florin Coras2de9c0f2020-02-02 19:30:39 +0000616 f = fs_try_alloc_fifo_freelist (fss, fl_index);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700617 if (f)
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000618 {
619 fsh_cached_bytes_sub (fsh, fs_freelist_index_to_size (fl_index));
620 goto done;
621 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700622 }
Florin Coras8122cc22019-12-18 13:06:41 -0800623
Florin Coras0269fa12020-03-10 04:46:32 +0000624 fifo_sz = sizeof (svm_fifo_t) + sizeof (svm_fifo_chunk_t);
625 fifo_sz += 1 << max_log2 (min_size);
Florin Coras62ddc032019-12-08 18:30:42 -0800626 n_free_bytes = fsh_n_free_bytes (fsh);
Florin Coras0269fa12020-03-10 04:46:32 +0000627
Florin Coras62ddc032019-12-08 18:30:42 -0800628 if (fifo_sz * FIFO_SEGMENT_ALLOC_BATCH_SIZE < n_free_bytes)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700629 {
Florin Coras0269fa12020-03-10 04:46:32 +0000630 if (!fs_try_alloc_fifo_batch (fsh, fss, fl_index,
631 FIFO_SEGMENT_ALLOC_BATCH_SIZE))
632 {
633 f = fs_try_alloc_fifo_freelist (fss, fl_index);
634 if (f)
635 {
636 fsh_cached_bytes_sub (fsh,
637 fs_freelist_index_to_size (fl_index));
638 goto done;
639 }
640 }
641 else
642 {
643 fsh_check_mem (fsh);
644 n_free_bytes = fsh_n_free_bytes (fsh);
645 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700646 }
Florin Coras62ddc032019-12-08 18:30:42 -0800647 if (fifo_sz <= n_free_bytes)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700648 {
Florin Coras62ddc032019-12-08 18:30:42 -0800649 void *oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Coras2de9c0f2020-02-02 19:30:39 +0000650 f = svm_fifo_alloc (min_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700651 ssvm_pop_heap (oldheap);
652 if (f)
653 {
Ryujiro Shibuyad3588722020-03-13 12:45:06 +0000654 fss->num_chunks[fl_index] += 1;
Florin Coras62ddc032019-12-08 18:30:42 -0800655 fsh_free_bytes_sub (fsh, fifo_sz);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700656 goto done;
657 }
Florin Coras0269fa12020-03-10 04:46:32 +0000658 fsh_check_mem (fsh);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700659 }
Florin Corasc75ce4d2020-02-28 21:51:24 +0000660 /* All failed, try to allocate min of data bytes and fifo sz */
661 fifo_sz = clib_min (fifo_sz, data_bytes);
662 if (fifo_sz <= fss->n_fl_chunk_bytes)
663 f = fs_try_alloc_fifo_freelist_multi_chunk (fsh, fss, fifo_sz);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700664
665done:
Florin Corasc75ce4d2020-02-28 21:51:24 +0000666 clib_spinlock_unlock (&fss->chunk_lock);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700667
Florin Corasf22f4e52019-12-19 16:10:58 -0800668 if (f)
Florin Corasc75ce4d2020-02-28 21:51:24 +0000669 {
670 f->size = data_bytes;
671 f->fs_hdr = fsh;
672 }
Florin Corasf9d4ab42019-05-11 16:55:53 -0700673 return f;
Florin Coras88001c62019-04-24 14:44:46 -0700674}
675
Florin Corasf22f4e52019-12-19 16:10:58 -0800676svm_fifo_chunk_t *
677fsh_alloc_chunk (fifo_segment_header_t * fsh, u32 slice_index, u32 chunk_size)
678{
679 fifo_segment_slice_t *fss;
680 svm_fifo_chunk_t *c;
Florin Corasf22f4e52019-12-19 16:10:58 -0800681 int fl_index;
682
683 fl_index = fs_freelist_for_size (chunk_size);
684 fss = fsh_slice_get (fsh, slice_index);
685
686 clib_spinlock_lock (&fss->chunk_lock);
Florin Coras8e755a12020-02-06 16:59:31 +0000687
Florin Corasf22f4e52019-12-19 16:10:58 -0800688 c = fss->free_chunks[fl_index];
689
Florin Coras8e755a12020-02-06 16:59:31 +0000690 if (c)
691 {
692 fss->free_chunks[fl_index] = c->next;
693 c->next = 0;
694 fss->n_fl_chunk_bytes -= fs_freelist_index_to_size (fl_index);
695 fsh_cached_bytes_sub (fsh, fs_freelist_index_to_size (fl_index));
696 }
Florin Coras0269fa12020-03-10 04:46:32 +0000697 else
Florin Corasf22f4e52019-12-19 16:10:58 -0800698 {
Florin Coras0269fa12020-03-10 04:46:32 +0000699 void *oldheap;
700 uword n_free;
Florin Coras8e755a12020-02-06 16:59:31 +0000701 u32 batch;
702
Florin Coras0269fa12020-03-10 04:46:32 +0000703 chunk_size = fs_freelist_index_to_size (fl_index);
704 n_free = fsh_n_free_bytes (fsh);
705
706 if (chunk_size <= n_free)
707 {
708 oldheap = ssvm_push_heap (fsh->ssvm_sh);
709 c = svm_fifo_chunk_alloc (chunk_size);
710 ssvm_pop_heap (oldheap);
711
712 if (c)
713 {
Ryujiro Shibuyad3588722020-03-13 12:45:06 +0000714 fss->num_chunks[fl_index] += 1;
Florin Coras0269fa12020-03-10 04:46:32 +0000715 fsh_free_bytes_sub (fsh, chunk_size + sizeof (*c));
716 goto done;
717 }
718
719 fsh_check_mem (fsh);
720 n_free = fsh_n_free_bytes (fsh);
721 }
722 if (chunk_size <= fss->n_fl_chunk_bytes)
723 {
724 c = fs_try_alloc_multi_chunk (fsh, fss, chunk_size);
725 if (c)
726 goto done;
727 batch = n_free / FIFO_SEGMENT_MIN_FIFO_SIZE;
728 if (!batch || fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
729 {
730 fsh_check_mem (fsh);
731 goto done;
732 }
733 }
734 if (chunk_size <= fss->n_fl_chunk_bytes + n_free)
735 {
736 u32 min_size = FIFO_SEGMENT_MIN_FIFO_SIZE;
737
738 batch = (chunk_size - fss->n_fl_chunk_bytes) / min_size;
739 batch = clib_min (batch + 1, n_free / min_size);
740 if (fsh_try_alloc_chunk_batch (fsh, fss, 0, batch))
741 {
742 fsh_check_mem (fsh);
743 goto done;
744 }
745 c = fs_try_alloc_multi_chunk (fsh, fss, chunk_size);
746 }
Florin Corasf22f4e52019-12-19 16:10:58 -0800747 }
748
749done:
750
751 clib_spinlock_unlock (&fss->chunk_lock);
752
753 return c;
754}
755
756static void
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000757fsh_slice_collect_chunks (fifo_segment_header_t * fsh,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000758 fifo_segment_slice_t * fss, svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800759{
760 svm_fifo_chunk_t *next;
761 int fl_index;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000762 u32 n_collect = 0;
Florin Corasf22f4e52019-12-19 16:10:58 -0800763
764 clib_spinlock_lock (&fss->chunk_lock);
765
Florin Coras9e61d9a2020-02-05 21:13:18 +0000766 while (c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800767 {
Florin Coras9e61d9a2020-02-05 21:13:18 +0000768 next = c->next;
769 fl_index = fs_freelist_for_size (c->length);
770 c->next = fss->free_chunks[fl_index];
771 c->enq_rb_index = RBTREE_TNIL_INDEX;
772 c->deq_rb_index = RBTREE_TNIL_INDEX;
773 fss->free_chunks[fl_index] = c;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000774 n_collect += fs_freelist_index_to_size (fl_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000775 c = next;
Florin Corasf22f4e52019-12-19 16:10:58 -0800776 }
777
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000778 fss->n_fl_chunk_bytes += n_collect;
779 fsh_cached_bytes_add (fsh, n_collect);
780
Florin Corasf22f4e52019-12-19 16:10:58 -0800781 clib_spinlock_unlock (&fss->chunk_lock);
782}
783
784void
785fsh_collect_chunks (fifo_segment_header_t * fsh, u32 slice_index,
Florin Coras9e61d9a2020-02-05 21:13:18 +0000786 svm_fifo_chunk_t * c)
Florin Corasf22f4e52019-12-19 16:10:58 -0800787{
788 fifo_segment_slice_t *fss;
789 fss = fsh_slice_get (fsh, slice_index);
Florin Coras9e61d9a2020-02-05 21:13:18 +0000790 fsh_slice_collect_chunks (fsh, fss, c);
Florin Corasf22f4e52019-12-19 16:10:58 -0800791}
792
Florin Coras88001c62019-04-24 14:44:46 -0700793/**
794 * Allocate fifo in fifo segment
795 */
796svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -0800797fifo_segment_alloc_fifo_w_slice (fifo_segment_t * fs, u32 slice_index,
798 u32 data_bytes, fifo_segment_ftype_t ftype)
Florin Coras88001c62019-04-24 14:44:46 -0700799{
Florin Coras62ddc032019-12-08 18:30:42 -0800800 fifo_segment_header_t *fsh = fs->h;
801 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -0700802 svm_fifo_t *f = 0;
Florin Coras88001c62019-04-24 14:44:46 -0700803
Florin Coras62ddc032019-12-08 18:30:42 -0800804 ASSERT (slice_index < fs->n_slices);
Florin Coras88001c62019-04-24 14:44:46 -0700805
Florin Coras62ddc032019-12-08 18:30:42 -0800806 fss = fsh_slice_get (fsh, slice_index);
807 f = fs_try_alloc_fifo (fsh, fss, data_bytes);
Florin Corascefd5d82019-05-05 13:19:57 -0700808 if (!f)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700809 goto done;
Florin Coras88001c62019-04-24 14:44:46 -0700810
Florin Coras62ddc032019-12-08 18:30:42 -0800811 f->slice_index = slice_index;
812
Florin Corascefd5d82019-05-05 13:19:57 -0700813 svm_fifo_init (f, data_bytes);
Florin Coras88001c62019-04-24 14:44:46 -0700814
Florin Coras88001c62019-04-24 14:44:46 -0700815 /* If rx fifo type add to active fifos list. When cleaning up segment,
816 * we need a list of active sessions that should be disconnected. Since
817 * both rx and tx fifos keep pointers to the session, it's enough to track
818 * only one. */
819 if (ftype == FIFO_SEGMENT_RX_FIFO)
820 {
Florin Coras62ddc032019-12-08 18:30:42 -0800821 if (fss->fifos)
Florin Coras88001c62019-04-24 14:44:46 -0700822 {
Florin Coras62ddc032019-12-08 18:30:42 -0800823 fss->fifos->prev = f;
824 f->next = fss->fifos;
Florin Coras88001c62019-04-24 14:44:46 -0700825 }
Florin Coras62ddc032019-12-08 18:30:42 -0800826 fss->fifos = f;
Florin Coras88001c62019-04-24 14:44:46 -0700827 f->flags |= SVM_FIFO_F_LL_TRACKED;
Florin Corasf22f4e52019-12-19 16:10:58 -0800828
829 svm_fifo_init_ooo_lookup (f, 0 /* ooo enq */ );
Florin Coras88001c62019-04-24 14:44:46 -0700830 }
Florin Corasf22f4e52019-12-19 16:10:58 -0800831 else
832 {
833 svm_fifo_init_ooo_lookup (f, 1 /* ooo deq */ );
834 }
835
Florin Coras62ddc032019-12-08 18:30:42 -0800836 fsh_active_fifos_update (fsh, 1);
Florin Coras06d47752020-03-06 02:23:58 +0000837 fss->virtual_mem += svm_fifo_size (f);
Florin Coras88001c62019-04-24 14:44:46 -0700838
839done:
Florin Coras88001c62019-04-24 14:44:46 -0700840 return (f);
841}
842
843/**
844 * Free fifo allocated in fifo segment
845 */
846void
Florin Corasb095a3c2019-04-25 12:58:46 -0700847fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f)
Florin Coras88001c62019-04-24 14:44:46 -0700848{
Florin Coras62ddc032019-12-08 18:30:42 -0800849 fifo_segment_header_t *fsh = fs->h;
Florin Coras62ddc032019-12-08 18:30:42 -0800850 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -0700851
852 ASSERT (f->refcnt > 0);
853
854 if (--f->refcnt > 0)
855 return;
856
Florin Coras62ddc032019-12-08 18:30:42 -0800857 fss = fsh_slice_get (fsh, f->slice_index);
Florin Coras88001c62019-04-24 14:44:46 -0700858
859 /* Remove from active list. Only rx fifos are tracked */
860 if (f->flags & SVM_FIFO_F_LL_TRACKED)
861 {
862 if (f->prev)
863 f->prev->next = f->next;
864 else
Florin Coras62ddc032019-12-08 18:30:42 -0800865 fss->fifos = f->next;
Florin Coras88001c62019-04-24 14:44:46 -0700866 if (f->next)
867 f->next->prev = f->prev;
868 f->flags &= ~SVM_FIFO_F_LL_TRACKED;
869 }
870
Florin Corascefd5d82019-05-05 13:19:57 -0700871 /* Free fifo chunks */
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000872 fsh_slice_collect_chunks (fsh, fss, f->start_chunk);
Florin Corascefd5d82019-05-05 13:19:57 -0700873
Florin Corasf22f4e52019-12-19 16:10:58 -0800874 f->start_chunk = f->end_chunk = 0;
Florin Coras1c91c772019-06-25 18:14:13 -0700875 f->head_chunk = f->tail_chunk = f->ooo_enq = f->ooo_deq = 0;
876
Florin Corasb095a3c2019-04-25 12:58:46 -0700877 /* not allocated on segment heap */
Florin Corasf22f4e52019-12-19 16:10:58 -0800878 svm_fifo_free_chunk_lookup (f);
Florin Corasb095a3c2019-04-25 12:58:46 -0700879 svm_fifo_free_ooo_data (f);
880
Florin Coras88001c62019-04-24 14:44:46 -0700881 if (CLIB_DEBUG)
882 {
883 f->master_session_index = ~0;
884 f->master_thread_index = ~0;
885 }
886
Florin Coras06d47752020-03-06 02:23:58 +0000887 fss->virtual_mem -= svm_fifo_size (f);
888
889 /* Add to free list */
890 f->next = fss->free_fifos;
891 f->prev = 0;
892 fss->free_fifos = f;
893
Florin Coras62ddc032019-12-08 18:30:42 -0800894 fsh_active_fifos_update (fsh, -1);
Florin Coras88001c62019-04-24 14:44:46 -0700895}
896
Florin Corasf9d4ab42019-05-11 16:55:53 -0700897int
Florin Coras62ddc032019-12-08 18:30:42 -0800898fifo_segment_prealloc_fifo_hdrs (fifo_segment_t * fs, u32 slice_index,
899 u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700900{
901 fifo_segment_header_t *fsh = fs->h;
Florin Coras62ddc032019-12-08 18:30:42 -0800902 fifo_segment_slice_t *fss;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700903 svm_fifo_t *f;
904 void *oldheap;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800905 uword size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700906 u8 *fmem;
907 int i;
908
Florin Coras62ddc032019-12-08 18:30:42 -0800909 fss = fsh_slice_get (fsh, slice_index);
Florin Coras36a0c4d2020-01-31 08:28:02 -0800910 size = (uword) (sizeof (*f)) * batch_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700911
Florin Coras62ddc032019-12-08 18:30:42 -0800912 oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700913 fmem = clib_mem_alloc_aligned_at_offset (size, CLIB_CACHE_LINE_BYTES,
914 0 /* align_offset */ ,
915 0 /* os_out_of_memory */ );
916 ssvm_pop_heap (oldheap);
917
918 /* Out of space.. */
919 if (fmem == 0)
920 return -1;
921
922 /* Carve fifo + chunk space */
923 for (i = 0; i < batch_size; i++)
924 {
925 f = (svm_fifo_t *) fmem;
926 memset (f, 0, sizeof (*f));
Florin Coras62ddc032019-12-08 18:30:42 -0800927 f->next = fss->free_fifos;
928 fss->free_fifos = f;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700929 fmem += sizeof (*f);
930 }
931
Florin Coras62ddc032019-12-08 18:30:42 -0800932 fsh_free_bytes_sub (fsh, size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700933
934 return 0;
935}
936
937int
Florin Coras62ddc032019-12-08 18:30:42 -0800938fifo_segment_prealloc_fifo_chunks (fifo_segment_t * fs, u32 slice_index,
939 u32 chunk_size, u32 batch_size)
Florin Corasf9d4ab42019-05-11 16:55:53 -0700940{
Florin Coras62ddc032019-12-08 18:30:42 -0800941 fifo_segment_header_t *fsh = fs->h;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800942 u32 rounded_data_size, fl_index;
Florin Coras62ddc032019-12-08 18:30:42 -0800943 fifo_segment_slice_t *fss;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700944 svm_fifo_chunk_t *c;
945 void *oldheap;
Florin Coras36a0c4d2020-01-31 08:28:02 -0800946 uword size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700947 u8 *cmem;
948 int i;
949
Florin Coras62ddc032019-12-08 18:30:42 -0800950 if (!fs_chunk_size_is_valid (fsh, chunk_size))
Florin Corasf9d4ab42019-05-11 16:55:53 -0700951 {
952 clib_warning ("chunk size out of range %d", chunk_size);
953 return -1;
954 }
955
956 fl_index = fs_freelist_for_size (chunk_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700957 rounded_data_size = fs_freelist_index_to_size (fl_index);
Florin Coras36a0c4d2020-01-31 08:28:02 -0800958 size = (uword) (sizeof (*c) + rounded_data_size) * batch_size;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700959
Florin Coras62ddc032019-12-08 18:30:42 -0800960 oldheap = ssvm_push_heap (fsh->ssvm_sh);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700961 cmem = clib_mem_alloc_aligned_at_offset (size, CLIB_CACHE_LINE_BYTES,
962 0 /* align_offset */ ,
963 0 /* os_out_of_memory */ );
964 ssvm_pop_heap (oldheap);
965
966 /* Out of space.. */
967 if (cmem == 0)
968 return -1;
969
Florin Coras62ddc032019-12-08 18:30:42 -0800970 fss = fsh_slice_get (fsh, slice_index);
971
Florin Corasf9d4ab42019-05-11 16:55:53 -0700972 /* Carve fifo + chunk space */
973 for (i = 0; i < batch_size; i++)
974 {
975 c = (svm_fifo_chunk_t *) cmem;
976 c->start_byte = 0;
977 c->length = rounded_data_size;
Florin Coras62ddc032019-12-08 18:30:42 -0800978 c->next = fss->free_chunks[fl_index];
979 fss->free_chunks[fl_index] = c;
Florin Corasf9d4ab42019-05-11 16:55:53 -0700980 cmem += sizeof (*c) + rounded_data_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +0000981 fsh_cached_bytes_add (fsh, rounded_data_size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700982 }
983
Ryujiro Shibuyad3588722020-03-13 12:45:06 +0000984 fss->num_chunks[fl_index] += batch_size;
Florin Coras62ddc032019-12-08 18:30:42 -0800985 fss->n_fl_chunk_bytes += batch_size * rounded_data_size;
986 fsh_free_bytes_sub (fsh, size);
Florin Corasf9d4ab42019-05-11 16:55:53 -0700987
988 return 0;
989}
990
Florin Coras88001c62019-04-24 14:44:46 -0700991/**
992 * Pre-allocates fifo pairs in fifo segment
993 */
994void
995fifo_segment_preallocate_fifo_pairs (fifo_segment_t * fs,
996 u32 rx_fifo_size, u32 tx_fifo_size,
997 u32 * n_fifo_pairs)
998{
Florin Corasf9d4ab42019-05-11 16:55:53 -0700999 u32 rx_rounded_data_size, tx_rounded_data_size, pair_size, pairs_to_alloc;
Florin Coras8d0149d2020-01-02 19:22:51 +00001000 u32 hdrs, pairs_per_slice, alloc_now;
Florin Coras62ddc032019-12-08 18:30:42 -08001001 fifo_segment_header_t *fsh = fs->h;
1002 int rx_fl_index, tx_fl_index, i;
1003 fifo_segment_slice_t *fss;
Florin Coras88001c62019-04-24 14:44:46 -07001004 uword space_available;
Florin Coras88001c62019-04-24 14:44:46 -07001005
1006 /* Parameter check */
1007 if (rx_fifo_size == 0 || tx_fifo_size == 0 || *n_fifo_pairs == 0)
1008 return;
1009
Florin Coras62ddc032019-12-08 18:30:42 -08001010 if (!fs_chunk_size_is_valid (fsh, rx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001011 {
1012 clib_warning ("rx fifo_size out of range %d", rx_fifo_size);
1013 return;
1014 }
1015
Florin Coras62ddc032019-12-08 18:30:42 -08001016 if (!fs_chunk_size_is_valid (fsh, tx_fifo_size))
Florin Coras88001c62019-04-24 14:44:46 -07001017 {
1018 clib_warning ("tx fifo_size out of range %d", tx_fifo_size);
1019 return;
1020 }
1021
1022 rx_rounded_data_size = (1 << (max_log2 (rx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001023 rx_fl_index = fs_freelist_for_size (rx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001024 tx_rounded_data_size = (1 << (max_log2 (tx_fifo_size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001025 tx_fl_index = fs_freelist_for_size (tx_fifo_size);
Florin Coras88001c62019-04-24 14:44:46 -07001026
Florin Corasf9d4ab42019-05-11 16:55:53 -07001027 hdrs = sizeof (svm_fifo_t) + sizeof (svm_fifo_chunk_t);
Florin Corascefd5d82019-05-05 13:19:57 -07001028
Florin Coras88001c62019-04-24 14:44:46 -07001029 /* Calculate space requirements */
Florin Corascefd5d82019-05-05 13:19:57 -07001030 pair_size = 2 * hdrs + rx_rounded_data_size + tx_rounded_data_size;
Florin Coras4453c092019-12-19 10:13:15 -08001031 space_available = fsh_free_space (fsh);
Florin Coraseaacce42019-07-02 13:07:37 -07001032 pairs_to_alloc = space_available / pair_size;
1033 pairs_to_alloc = clib_min (pairs_to_alloc, *n_fifo_pairs);
Florin Coras62ddc032019-12-08 18:30:42 -08001034 pairs_per_slice = pairs_to_alloc / fs->n_slices;
Florin Coras8d0149d2020-01-02 19:22:51 +00001035 pairs_per_slice += pairs_to_alloc % fs->n_slices ? 1 : 0;
Florin Coraseaacce42019-07-02 13:07:37 -07001036
Florin Coras62ddc032019-12-08 18:30:42 -08001037 if (!pairs_per_slice)
Florin Coraseaacce42019-07-02 13:07:37 -07001038 return;
Florin Coras88001c62019-04-24 14:44:46 -07001039
Florin Coras62ddc032019-12-08 18:30:42 -08001040 for (i = 0; i < fs->n_slices; i++)
1041 {
1042 fss = fsh_slice_get (fsh, i);
Florin Coras8d0149d2020-01-02 19:22:51 +00001043 alloc_now = clib_min (pairs_per_slice, *n_fifo_pairs);
1044 if (fs_try_alloc_fifo_batch (fsh, fss, rx_fl_index, alloc_now))
1045 clib_warning ("rx prealloc failed: pairs %u", alloc_now);
1046 if (fs_try_alloc_fifo_batch (fsh, fss, tx_fl_index, alloc_now))
1047 clib_warning ("tx prealloc failed: pairs %u", alloc_now);
Florin Coras88001c62019-04-24 14:44:46 -07001048
Florin Coras8d0149d2020-01-02 19:22:51 +00001049 /* Account for the pairs allocated */
1050 *n_fifo_pairs -= alloc_now;
1051 }
Florin Coras88001c62019-04-24 14:44:46 -07001052}
1053
1054/**
1055 * Get number of active fifos
1056 */
1057u32
1058fifo_segment_num_fifos (fifo_segment_t * fs)
1059{
Florin Coras62ddc032019-12-08 18:30:42 -08001060 return clib_atomic_load_relax_n (&fs->h->n_active_fifos);
Florin Coras88001c62019-04-24 14:44:46 -07001061}
1062
Florin Coras62ddc032019-12-08 18:30:42 -08001063static u32
1064fs_slice_num_free_fifos (fifo_segment_slice_t * fss)
Florin Coras88001c62019-04-24 14:44:46 -07001065{
Florin Coras88001c62019-04-24 14:44:46 -07001066 svm_fifo_t *f;
Florin Corascefd5d82019-05-05 13:19:57 -07001067 u32 count = 0;
Florin Coras88001c62019-04-24 14:44:46 -07001068
Florin Coras62ddc032019-12-08 18:30:42 -08001069 f = fss->free_fifos;
Florin Coras88001c62019-04-24 14:44:46 -07001070 if (f == 0)
1071 return 0;
1072
1073 while (f)
1074 {
1075 f = f->next;
1076 count++;
1077 }
1078 return count;
1079}
1080
Florin Corasb095a3c2019-04-25 12:58:46 -07001081u32
Florin Coras62ddc032019-12-08 18:30:42 -08001082fifo_segment_num_free_fifos (fifo_segment_t * fs)
1083{
1084 fifo_segment_header_t *fsh = fs->h;
1085 fifo_segment_slice_t *fss;
1086 int slice_index;
1087 u32 count = 0;
1088
1089 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1090 {
1091 fss = fsh_slice_get (fsh, slice_index);
1092 count += fs_slice_num_free_fifos (fss);
1093 }
1094 return count;
1095}
1096
1097static u32
1098fs_slice_num_free_chunks (fifo_segment_slice_t * fss, u32 size)
Florin Corasb095a3c2019-04-25 12:58:46 -07001099{
1100 u32 count = 0, rounded_size, fl_index;
Florin Corasb095a3c2019-04-25 12:58:46 -07001101 svm_fifo_chunk_t *c;
1102 int i;
1103
Florin Corasb095a3c2019-04-25 12:58:46 -07001104 /* Count all free chunks? */
1105 if (size == ~0)
1106 {
Florin Coras62ddc032019-12-08 18:30:42 -08001107 for (i = 0; i < vec_len (fss->free_chunks); i++)
Florin Corasb095a3c2019-04-25 12:58:46 -07001108 {
Florin Coras62ddc032019-12-08 18:30:42 -08001109 c = fss->free_chunks[i];
Florin Corasb095a3c2019-04-25 12:58:46 -07001110 if (c == 0)
1111 continue;
1112
1113 while (c)
1114 {
1115 c = c->next;
1116 count++;
1117 }
1118 }
1119 return count;
1120 }
1121
1122 rounded_size = (1 << (max_log2 (size)));
Florin Corasf9d4ab42019-05-11 16:55:53 -07001123 fl_index = fs_freelist_for_size (rounded_size);
Florin Corasb095a3c2019-04-25 12:58:46 -07001124
Florin Coras62ddc032019-12-08 18:30:42 -08001125 if (fl_index >= vec_len (fss->free_chunks))
Florin Corasb095a3c2019-04-25 12:58:46 -07001126 return 0;
1127
Florin Coras62ddc032019-12-08 18:30:42 -08001128 c = fss->free_chunks[fl_index];
Florin Corasb095a3c2019-04-25 12:58:46 -07001129 if (c == 0)
1130 return 0;
1131
1132 while (c)
1133 {
1134 c = c->next;
1135 count++;
1136 }
1137 return count;
1138}
1139
Florin Coras62ddc032019-12-08 18:30:42 -08001140u32
1141fifo_segment_num_free_chunks (fifo_segment_t * fs, u32 size)
1142{
1143 fifo_segment_header_t *fsh = fs->h;
1144 fifo_segment_slice_t *fss;
1145 int slice_index;
1146 u32 count = 0;
1147
1148 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1149 {
1150 fss = fsh_slice_get (fsh, slice_index);
1151 count += fs_slice_num_free_chunks (fss, size);
1152 }
1153 return count;
1154}
1155
Florin Corasf9d4ab42019-05-11 16:55:53 -07001156void
1157fifo_segment_update_free_bytes (fifo_segment_t * fs)
1158{
Florin Coras4453c092019-12-19 10:13:15 -08001159 fsh_update_free_bytes (fs->h);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001160}
1161
Florin Corasef4f3e72019-12-11 14:27:53 -08001162uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001163fifo_segment_size (fifo_segment_t * fs)
1164{
1165 return fs->ssvm.ssvm_size;
1166}
1167
1168u8
1169fsh_has_reached_mem_limit (fifo_segment_header_t * fsh)
1170{
1171 return (fsh->flags & FIFO_SEGMENT_F_MEM_LIMIT) ? 1 : 0;
1172}
1173
1174void
1175fsh_reset_mem_limit (fifo_segment_header_t * fsh)
1176{
1177 fsh->flags &= ~FIFO_SEGMENT_F_MEM_LIMIT;
1178}
1179
1180uword
Florin Corasf9d4ab42019-05-11 16:55:53 -07001181fifo_segment_free_bytes (fifo_segment_t * fs)
1182{
Florin Coras62ddc032019-12-08 18:30:42 -08001183 return fsh_n_free_bytes (fs->h);
Florin Corasf9d4ab42019-05-11 16:55:53 -07001184}
1185
Florin Coras62ddc032019-12-08 18:30:42 -08001186uword
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001187fifo_segment_cached_bytes (fifo_segment_t * fs)
1188{
1189 return fsh_n_cached_bytes (fs->h);
1190}
1191
1192uword
Florin Coras75ccf7b2020-03-05 19:44:02 +00001193fifo_segment_available_bytes (fifo_segment_t * fs)
1194{
1195 return fsh_n_free_bytes (fs->h) + fsh_n_cached_bytes (fs->h);
1196}
1197
1198uword
Florin Coras1c91c772019-06-25 18:14:13 -07001199fifo_segment_fl_chunk_bytes (fifo_segment_t * fs)
Florin Corasf9d4ab42019-05-11 16:55:53 -07001200{
Florin Coras62ddc032019-12-08 18:30:42 -08001201 fifo_segment_header_t *fsh = fs->h;
1202 fifo_segment_slice_t *fss;
1203 uword n_bytes = 0;
1204 int slice_index;
1205
1206 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1207 {
1208 fss = fsh_slice_get (fsh, slice_index);
1209 n_bytes += fss->n_fl_chunk_bytes;
1210 }
1211
1212 return n_bytes;
Florin Corasf9d4ab42019-05-11 16:55:53 -07001213}
1214
Florin Coras88001c62019-04-24 14:44:46 -07001215u8
1216fifo_segment_has_fifos (fifo_segment_t * fs)
1217{
Florin Coras62ddc032019-12-08 18:30:42 -08001218 fifo_segment_header_t *fsh = fs->h;
1219 fifo_segment_slice_t *fss;
1220 int slice_index;
1221
1222 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
1223 {
1224 fss = fsh_slice_get (fsh, slice_index);
1225 if (fss->fifos)
1226 return 1;
1227 }
1228 return 0;
Florin Coras88001c62019-04-24 14:44:46 -07001229}
1230
1231svm_fifo_t *
Florin Coras62ddc032019-12-08 18:30:42 -08001232fifo_segment_get_slice_fifo_list (fifo_segment_t * fs, u32 slice_index)
Florin Coras88001c62019-04-24 14:44:46 -07001233{
Florin Coras62ddc032019-12-08 18:30:42 -08001234 fifo_segment_header_t *fsh = fs->h;
1235 fifo_segment_slice_t *fss;
1236
1237 fss = fsh_slice_get (fsh, slice_index);
1238 return fss->fifos;
Florin Coras88001c62019-04-24 14:44:46 -07001239}
1240
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001241u8
1242fifo_segment_get_mem_usage (fifo_segment_t * fs)
1243{
1244 uword size, in_use;
1245
1246 size = fifo_segment_size (fs);
1247 in_use =
1248 size - fifo_segment_free_bytes (fs) - fifo_segment_cached_bytes (fs);
1249 return (in_use * 100) / size;
1250}
1251
1252fifo_segment_mem_status_t
1253fifo_segment_determine_status (fifo_segment_header_t * fsh, u8 usage)
1254{
1255 if (!fsh->high_watermark || !fsh->low_watermark)
1256 return MEMORY_PRESSURE_NO_PRESSURE;
1257
1258 /* once the no-memory is detected, the status continues
1259 * until memory usage gets below the high watermark
1260 */
1261 if (fsh_has_reached_mem_limit (fsh))
1262 {
1263 if (usage >= fsh->high_watermark)
1264 return MEMORY_PRESSURE_NO_MEMORY;
1265 else
1266 fsh_reset_mem_limit (fsh);
1267 }
1268
1269 if (usage >= fsh->high_watermark)
1270 return MEMORY_PRESSURE_HIGH_PRESSURE;
1271
1272 else if (usage >= fsh->low_watermark)
1273 return MEMORY_PRESSURE_LOW_PRESSURE;
1274
1275 return MEMORY_PRESSURE_NO_PRESSURE;
1276}
1277
1278fifo_segment_mem_status_t
1279fifo_segment_get_mem_status (fifo_segment_t * fs)
1280{
1281 fifo_segment_header_t *fsh = fs->h;
1282 u8 usage = fifo_segment_get_mem_usage (fs);
1283
1284 return fifo_segment_determine_status (fsh, usage);
1285}
1286
Florin Coras88001c62019-04-24 14:44:46 -07001287u8 *
1288format_fifo_segment_type (u8 * s, va_list * args)
1289{
1290 fifo_segment_t *sp;
1291 sp = va_arg (*args, fifo_segment_t *);
1292 ssvm_segment_type_t st = ssvm_type (&sp->ssvm);
1293
1294 if (st == SSVM_SEGMENT_PRIVATE)
1295 s = format (s, "%s", "private-heap");
1296 else if (st == SSVM_SEGMENT_MEMFD)
1297 s = format (s, "%s", "memfd");
1298 else if (st == SSVM_SEGMENT_SHM)
1299 s = format (s, "%s", "shm");
1300 else
1301 s = format (s, "%s", "unknown");
1302 return s;
1303}
1304
1305/**
1306 * Segment format function
1307 */
1308u8 *
1309format_fifo_segment (u8 * s, va_list * args)
1310{
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001311 u32 count, indent, active_fifos, free_fifos;
Florin Coras5368bb02019-06-09 09:24:33 -07001312 fifo_segment_t *fs = va_arg (*args, fifo_segment_t *);
Florin Coras88001c62019-04-24 14:44:46 -07001313 int verbose __attribute__ ((unused)) = va_arg (*args, int);
Florin Corasef4f3e72019-12-11 14:27:53 -08001314 uword est_chunk_bytes, est_free_seg_bytes, free_chunks;
1315 uword chunk_bytes = 0, free_seg_bytes, chunk_size;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001316 uword tracked_cached_bytes;
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001317 uword fifo_hdr = 0, reserved;
Florin Coras5368bb02019-06-09 09:24:33 -07001318 fifo_segment_header_t *fsh;
Florin Coras62ddc032019-12-08 18:30:42 -08001319 fifo_segment_slice_t *fss;
Florin Corascefd5d82019-05-05 13:19:57 -07001320 svm_fifo_chunk_t *c;
Florin Coras62ddc032019-12-08 18:30:42 -08001321 u32 slice_index;
Florin Coras5368bb02019-06-09 09:24:33 -07001322 char *address;
1323 size_t size;
Florin Coras88001c62019-04-24 14:44:46 -07001324 int i;
Florin Coras06d47752020-03-06 02:23:58 +00001325 uword allocated, in_use, virt;
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001326 f64 usage;
1327 fifo_segment_mem_status_t mem_st;
Florin Coras88001c62019-04-24 14:44:46 -07001328
1329 indent = format_get_indent (s) + 2;
Florin Coras88001c62019-04-24 14:44:46 -07001330
Florin Coras5368bb02019-06-09 09:24:33 -07001331 if (fs == 0)
1332 {
1333 s = format (s, "%-15s%15s%15s%15s%15s%15s", "Name", "Type",
1334 "HeapSize (M)", "ActiveFifos", "FreeFifos", "Address");
1335 return s;
1336 }
1337
Florin Coras5368bb02019-06-09 09:24:33 -07001338 fifo_segment_info (fs, &address, &size);
1339 active_fifos = fifo_segment_num_fifos (fs);
1340 free_fifos = fifo_segment_num_free_fifos (fs);
1341
1342 s = format (s, "%-15v%15U%15llu%15u%15u%15llx", ssvm_name (&fs->ssvm),
1343 format_fifo_segment_type, fs, size >> 20ULL, active_fifos,
1344 free_fifos, address);
1345
1346 if (!verbose)
1347 return s;
1348
Florin Coras62ddc032019-12-08 18:30:42 -08001349 fsh = fs->h;
1350
1351 free_chunks = fifo_segment_num_free_chunks (fs, ~0);
1352 if (free_chunks)
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001353 s =
1354 format (s, "\n\n%UFree/Allocated chunks by size:\n", format_white_space,
1355 indent + 2);
Florin Corasf8461bf2019-11-07 17:00:15 -08001356 else
1357 s = format (s, "\n");
1358
Florin Coras62ddc032019-12-08 18:30:42 -08001359 for (slice_index = 0; slice_index < fs->n_slices; slice_index++)
Florin Coras88001c62019-04-24 14:44:46 -07001360 {
Florin Coras62ddc032019-12-08 18:30:42 -08001361 fss = fsh_slice_get (fsh, slice_index);
1362 for (i = 0; i < vec_len (fss->free_chunks); i++)
Florin Coras88001c62019-04-24 14:44:46 -07001363 {
Florin Coras62ddc032019-12-08 18:30:42 -08001364 c = fss->free_chunks[i];
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001365 if (c == 0 && fss->num_chunks[i] == 0)
Florin Coras62ddc032019-12-08 18:30:42 -08001366 continue;
1367 count = 0;
1368 while (c)
1369 {
1370 c = c->next;
1371 count++;
1372 }
1373
1374 chunk_size = fs_freelist_index_to_size (i);
Ryujiro Shibuyad3588722020-03-13 12:45:06 +00001375 s = format (s, "%U%-5u kB: %u/%u\n", format_white_space, indent + 2,
1376 chunk_size >> 10, count, fss->num_chunks[i]);
Florin Coras62ddc032019-12-08 18:30:42 -08001377
1378 chunk_bytes += count * chunk_size;
Florin Coras88001c62019-04-24 14:44:46 -07001379 }
Florin Coras88001c62019-04-24 14:44:46 -07001380 }
Florin Corasf8461bf2019-11-07 17:00:15 -08001381
1382 fifo_hdr = free_fifos * sizeof (svm_fifo_t);
1383 est_chunk_bytes = fifo_segment_fl_chunk_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001384 est_free_seg_bytes = fifo_segment_free_bytes (fs);
Florin Corasf8461bf2019-11-07 17:00:15 -08001385 fifo_segment_update_free_bytes (fs);
Florin Coras62ddc032019-12-08 18:30:42 -08001386 free_seg_bytes = fifo_segment_free_bytes (fs);
Ryujiro Shibuya234fe892019-12-25 07:40:54 +00001387 tracked_cached_bytes = fifo_segment_cached_bytes (fs);
1388 allocated = fifo_segment_size (fs);
1389 in_use = fifo_segment_size (fs) - est_free_seg_bytes - tracked_cached_bytes;
1390 usage = (100.0 * in_use) / allocated;
1391 mem_st = fifo_segment_get_mem_status (fs);
Florin Coras06d47752020-03-06 02:23:58 +00001392 virt = fsh_virtual_mem (fsh);
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001393 reserved = fsh->n_reserved_bytes;
Florin Corasf8461bf2019-11-07 17:00:15 -08001394
Florin Coras06d47752020-03-06 02:23:58 +00001395 s = format (s, "\n%Useg free bytes: %U (%lu) estimated: %U (%lu) reserved:"
1396 " %U (%lu)\n", format_white_space, indent + 2,
1397 format_memory_size, free_seg_bytes, free_seg_bytes,
1398 format_memory_size, est_free_seg_bytes, est_free_seg_bytes,
Ryujiro Shibuya65c30ce2020-03-26 07:29:09 +00001399 format_memory_size, reserved, reserved);
Florin Coras06d47752020-03-06 02:23:58 +00001400 s = format (s, "%Uchunk free bytes: %U (%lu) estimated: %U (%lu) tracked:"
1401 " %U (%lu)\n", format_white_space, indent + 2,
1402 format_memory_size, chunk_bytes, chunk_bytes,
1403 format_memory_size, est_chunk_bytes, est_chunk_bytes,
1404 format_memory_size, tracked_cached_bytes, tracked_cached_bytes);
1405 s = format (s, "%Ufifo active: %u hdr free bytes: %U (%u) \n",
1406 format_white_space, indent + 2, fsh->n_active_fifos,
1407 format_memory_size, fifo_hdr, fifo_hdr);
1408 s = format (s, "%Usegment usage: %.2f%% (%U / %U) virt: %U status: %s\n",
1409 format_white_space, indent + 2, usage, format_memory_size,
1410 in_use, format_memory_size, allocated, format_memory_size, virt,
1411 fifo_segment_mem_status_strings[mem_st]);
Florin Corasf8461bf2019-11-07 17:00:15 -08001412 s = format (s, "\n");
Florin Coras5368bb02019-06-09 09:24:33 -07001413
Florin Coras88001c62019-04-24 14:44:46 -07001414 return s;
1415}
1416
1417/*
1418 * fd.io coding-style-patch-verification: ON
1419 *
1420 * Local Variables:
1421 * eval: (c-set-style "gnu")
1422 * End:
1423 */