Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016-2019 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | #ifndef __included_fifo_segment_h__ |
| 16 | #define __included_fifo_segment_h__ |
| 17 | |
| 18 | #include <svm/ssvm.h> |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 19 | #include <svm/fifo_types.h> |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 20 | #include <svm/message_queue.h> |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 21 | #include <svm/svm_fifo.h> |
| 22 | |
Filip Tehlar | 2711ca7 | 2021-11-24 10:30:59 +0000 | [diff] [blame] | 23 | #define FIFO_SEGMENT_ALLOC_OVERHEAD (2 * clib_mem_get_page_size ()) |
| 24 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 25 | typedef enum |
| 26 | { |
| 27 | FIFO_SEGMENT_FTYPE_NONE = -1, |
| 28 | FIFO_SEGMENT_RX_FIFO = 0, |
| 29 | FIFO_SEGMENT_TX_FIFO, |
| 30 | FIFO_SEGMENT_N_FTYPES |
| 31 | } fifo_segment_ftype_t; |
| 32 | |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 33 | #define FIFO_SEGMENT_MIN_LOG2_FIFO_SIZE 12 /**< 4kB min fifo size */ |
| 34 | #define FIFO_SEGMENT_MIN_FIFO_SIZE 4096 /**< 4kB min fifo size */ |
Florin Coras | e2c9f23 | 2020-09-29 10:27:07 -0700 | [diff] [blame] | 35 | #define FIFO_SEGMENT_MAX_FIFO_SIZE (2ULL << 30) /**< 2GB max fifo size */ |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 36 | #define FIFO_SEGMENT_ALLOC_BATCH_SIZE 32 /* Allocation quantum */ |
| 37 | |
| 38 | typedef enum fifo_segment_flags_ |
| 39 | { |
| 40 | FIFO_SEGMENT_F_IS_PREALLOCATED = 1 << 0, |
| 41 | FIFO_SEGMENT_F_WILL_DELETE = 1 << 1, |
Florin Coras | 8122cc2 | 2019-12-18 13:06:41 -0800 | [diff] [blame] | 42 | FIFO_SEGMENT_F_MEM_LIMIT = 1 << 2, |
Florin Coras | da78c5a | 2021-06-09 14:55:24 -0700 | [diff] [blame] | 43 | FIFO_SEGMENT_F_CUSTOM_USE = 1 << 3, |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 44 | } fifo_segment_flags_t; |
| 45 | |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 46 | #define foreach_segment_mem_status \ |
| 47 | _(NO_PRESSURE, "No pressure") \ |
| 48 | _(LOW_PRESSURE, "Low pressure") \ |
| 49 | _(HIGH_PRESSURE, "High pressure") \ |
| 50 | _(NO_MEMORY, "No memory") |
| 51 | |
| 52 | typedef enum |
| 53 | { |
| 54 | #define _(sym,str) MEMORY_PRESSURE_##sym, |
| 55 | foreach_segment_mem_status |
| 56 | #undef _ |
| 57 | MEMORY_N_PRESSURE, |
| 58 | } fifo_segment_mem_status_t; |
| 59 | |
| 60 | #if 0 |
| 61 | typedef enum fifo_segment_mem_status_ |
| 62 | { |
| 63 | MEMORY_PRESSURE_NO_PRESSURE, |
| 64 | MEMORY_PRESSURE_LOW_PRESSURE, |
| 65 | MEMORY_PRESSURE_HIGH_PRESSURE, |
| 66 | MEMORY_PRESSURE_NO_MEMORY, |
| 67 | } fifo_segment_mem_status_t; |
| 68 | #endif |
| 69 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 70 | typedef struct |
| 71 | { |
| 72 | ssvm_private_t ssvm; /**< ssvm segment data */ |
| 73 | fifo_segment_header_t *h; /**< fifo segment data */ |
Florin Coras | c547e91 | 2020-12-08 17:50:45 -0800 | [diff] [blame] | 74 | fifo_slice_private_t *slices; /**< private slice information */ |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 75 | svm_msg_q_t *mqs; /**< private vec of attached mqs */ |
Florin Coras | afbb33a | 2021-08-10 16:56:34 -0700 | [diff] [blame] | 76 | uword max_byte_index; /**< max byte index for segment */ |
Florin Coras | cdfe8ab | 2021-12-22 12:54:17 -0800 | [diff] [blame] | 77 | u32 sm_index; /**< owner segment manager index */ |
| 78 | u32 fs_index; /**< fs index in sm pool */ |
Florin Coras | afbb33a | 2021-08-10 16:56:34 -0700 | [diff] [blame] | 79 | u8 n_slices; /**< number of fifo segment slices */ |
| 80 | u8 flags; /**< private fifo segment flags */ |
| 81 | u8 high_watermark; /**< memory pressure watermark high */ |
| 82 | u8 low_watermark; /**< memory pressure watermark low */ |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 83 | } fifo_segment_t; |
| 84 | |
| 85 | typedef struct |
| 86 | { |
| 87 | fifo_segment_t *segments; /**< pool of fifo segments */ |
Florin Coras | ef4f3e7 | 2019-12-11 14:27:53 -0800 | [diff] [blame] | 88 | uword next_baseva; /**< Where to put the next one */ |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 89 | u32 timeout_in_seconds; /**< Time to wait during attach */ |
| 90 | } fifo_segment_main_t; |
| 91 | |
| 92 | typedef struct |
| 93 | { |
| 94 | ssvm_segment_type_t segment_type; /**< type of segment requested */ |
| 95 | u32 segment_size; /**< size of the segment */ |
| 96 | int memfd_fd; /**< fd for memfd segments */ |
| 97 | char *segment_name; /**< segment name */ |
| 98 | u32 *new_segment_indices; /**< return vec of new seg indices */ |
| 99 | } fifo_segment_create_args_t; |
| 100 | |
Florin Coras | afbb33a | 2021-08-10 16:56:34 -0700 | [diff] [blame] | 101 | #define fifo_segment_flags(_fs) _fs->flags |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 102 | |
| 103 | int fifo_segment_init (fifo_segment_t * fs); |
| 104 | int fifo_segment_create (fifo_segment_main_t * sm, |
| 105 | fifo_segment_create_args_t * a); |
| 106 | int fifo_segment_attach (fifo_segment_main_t * sm, |
| 107 | fifo_segment_create_args_t * a); |
| 108 | void fifo_segment_delete (fifo_segment_main_t * sm, fifo_segment_t * fs); |
Florin Coras | c547e91 | 2020-12-08 17:50:45 -0800 | [diff] [blame] | 109 | void fifo_segment_cleanup (fifo_segment_t *fs); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 110 | fifo_segment_t *fifo_segment_get_segment (fifo_segment_main_t * sm, |
| 111 | u32 fs_index); |
Florin Coras | cbb5e82 | 2021-02-20 10:42:22 -0800 | [diff] [blame] | 112 | fifo_segment_t *fifo_segment_get_segment_if_valid (fifo_segment_main_t *sm, |
| 113 | u32 segment_index); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 114 | u32 fifo_segment_index (fifo_segment_main_t * sm, fifo_segment_t * fs); |
| 115 | void fifo_segment_info (fifo_segment_t * seg, char **address, size_t * size); |
| 116 | |
Florin Coras | 14f066e | 2020-12-10 18:52:40 -0800 | [diff] [blame] | 117 | always_inline void * |
| 118 | fifo_segment_ptr (fifo_segment_t *fs, uword offset) |
| 119 | { |
| 120 | return (void *) ((u8 *) fs->h + offset); |
| 121 | } |
| 122 | |
| 123 | always_inline uword |
| 124 | fifo_segment_offset (fifo_segment_t *fs, void *p) |
| 125 | { |
| 126 | return (uword) ((u8 *) p - (u8 *) fs->h); |
| 127 | } |
| 128 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 129 | /** |
| 130 | * Allocate fifo in fifo segment |
| 131 | * |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 132 | * @param fs fifo segment for fifo |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 133 | * @param data_bytes size of default fifo chunk in bytes |
| 134 | * @param ftype fifo type @ref fifo_segment_ftype_t |
| 135 | * @return new fifo or 0 if alloc failed |
| 136 | */ |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 137 | svm_fifo_t *fifo_segment_alloc_fifo_w_slice (fifo_segment_t * fs, |
| 138 | u32 slice_index, |
| 139 | u32 data_bytes, |
| 140 | fifo_segment_ftype_t ftype); |
Florin Coras | 14f066e | 2020-12-10 18:52:40 -0800 | [diff] [blame] | 141 | svm_fifo_t *fifo_segment_alloc_fifo_w_offset (fifo_segment_t *fs, |
| 142 | uword offset); |
Florin Coras | 8eb8d50 | 2021-06-16 14:46:57 -0700 | [diff] [blame] | 143 | svm_fifo_t *fifo_segment_duplicate_fifo (fifo_segment_t *fs, svm_fifo_t *f); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 144 | |
| 145 | /** |
| 146 | * Free fifo allocated in fifo segment |
| 147 | * |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 148 | * @param fs fifo segment for fifo |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 149 | * @param f fifo to be freed |
| 150 | */ |
| 151 | void fifo_segment_free_fifo (fifo_segment_t * fs, svm_fifo_t * f); |
| 152 | |
Florin Coras | cbb5e82 | 2021-02-20 10:42:22 -0800 | [diff] [blame] | 153 | /** |
| 154 | * Free fifo allocated by external applications |
| 155 | * |
| 156 | * @params fs fifo segment for fifo |
| 157 | * @param f fifo to be freed |
| 158 | */ |
| 159 | void fifo_segment_free_client_fifo (fifo_segment_t *fs, svm_fifo_t *f); |
| 160 | |
Florin Coras | 0bc78d8 | 2021-01-09 14:34:01 -0800 | [diff] [blame] | 161 | void fifo_segment_detach_fifo (fifo_segment_t *fs, svm_fifo_t **f); |
| 162 | void fifo_segment_attach_fifo (fifo_segment_t *fs, svm_fifo_t **f, |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 163 | u32 slice_index); |
Florin Coras | 14f066e | 2020-12-10 18:52:40 -0800 | [diff] [blame] | 164 | uword fifo_segment_fifo_offset (svm_fifo_t *f); |
Florin Coras | 6d7552c | 2020-04-09 01:49:45 +0000 | [diff] [blame] | 165 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 166 | /** |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 167 | * Allocate message queue on segment |
| 168 | * |
| 169 | * @param fs fifo segment for mq |
| 170 | * @param mq_index index in private mqs vector to use to attach |
| 171 | * @param cfg configuration for mq |
| 172 | * @return attached message queue |
| 173 | */ |
| 174 | svm_msg_q_t *fifo_segment_msg_q_alloc (fifo_segment_t *fs, u32 mq_index, |
| 175 | svm_msg_q_cfg_t *cfg); |
| 176 | |
| 177 | /** |
| 178 | * Attach message queue at fifo segment offset |
| 179 | * |
| 180 | * @param fs fifo segment for mq |
| 181 | * @param offset offset for shared mq on the segment |
| 182 | * @param mq_index index in private mqs vector to use to attach |
| 183 | * @return attached message queue |
| 184 | */ |
| 185 | svm_msg_q_t *fifo_segment_msg_q_attach (fifo_segment_t *fs, uword offset, |
| 186 | u32 mq_index); |
| 187 | |
| 188 | /** |
Florin Coras | 80b7425 | 2021-01-27 18:08:25 -0800 | [diff] [blame] | 189 | * Discover mqs on mq only segment |
| 190 | * |
| 191 | * @param fs fifo segment for mq |
| 192 | * @param fds array of fds is mqs use eventfds |
| 193 | * @param n_fds number of fds |
| 194 | */ |
| 195 | void fifo_segment_msg_qs_discover (fifo_segment_t *fs, int *fds, u32 n_fds); |
| 196 | |
| 197 | /** |
Florin Coras | b462418 | 2020-12-11 13:58:12 -0800 | [diff] [blame] | 198 | * Message queue offset on segment |
| 199 | * |
| 200 | * @param fs fifo segment for mq |
| 201 | * @param mq_index index of mq in private mqs vector |
| 202 | * @return offset of the shared mq the private mq is attached to |
| 203 | */ |
| 204 | uword fifo_segment_msg_q_offset (fifo_segment_t *fs, u32 mq_index); |
| 205 | |
| 206 | /** |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 207 | * Try to preallocate fifo headers |
| 208 | * |
| 209 | * Tries to preallocate fifo headers and adds them to freelist. |
| 210 | * |
| 211 | * @param fs fifo segment |
| 212 | * @param batch_size number of chunks to be allocated |
| 213 | * @return 0 on success, negative number otherwise |
| 214 | */ |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 215 | int fifo_segment_prealloc_fifo_hdrs (fifo_segment_t * fs, u32 slice_index, |
| 216 | u32 batch_size); |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 217 | |
| 218 | /** |
| 219 | * Try to preallocate fifo chunks on segment |
| 220 | * |
| 221 | * Tries to preallocate chunks of requested size on segment and adds them |
| 222 | * to chunk freelist. |
| 223 | * |
| 224 | * @param fs fifo segment |
| 225 | * @param chunk_size size of chunks to be allocated in bytes |
| 226 | * @param batch_size number of chunks to be allocated |
| 227 | * @return 0 on success, negative number otherwise |
| 228 | */ |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 229 | int fifo_segment_prealloc_fifo_chunks (fifo_segment_t * fs, u32 slice_index, |
| 230 | u32 chunk_size, u32 batch_size); |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 231 | /** |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 232 | * Pre-allocates fifo pairs in fifo segment |
| 233 | * |
| 234 | * The number of fifos pre-allocated is the minimum of the requested number |
| 235 | * of pairs and the maximum number that fit within the segment. If the maximum |
| 236 | * is hit, the number of fifo pairs requested is updated by subtracting the |
| 237 | * number of fifos that have been successfully allocated. |
| 238 | * |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 239 | * @param fs fifo segment for fifo |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 240 | * @param rx_fifo_size data size of rx fifos |
| 241 | * @param tx_fifo_size data size of tx fifos |
| 242 | * @param n_fifo_pairs number of pairs requested. Prior to returning, this |
| 243 | * is decremented by the the number of pairs allocated. |
| 244 | */ |
| 245 | void fifo_segment_preallocate_fifo_pairs (fifo_segment_t * fs, |
| 246 | u32 rx_fifo_size, |
| 247 | u32 tx_fifo_size, |
| 248 | u32 * n_fifo_pairs); |
Florin Coras | 344ce42 | 2019-05-03 11:46:55 -0700 | [diff] [blame] | 249 | |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 250 | /** |
| 251 | * Allocate chunks in fifo segment |
| 252 | * |
| 253 | * @param fsh fifo segment header |
| 254 | * @param slice_index slice where chunks should be alocated |
| 255 | * @param chunk_size chunk size needed |
| 256 | * @return chunk (or chunks) that cover at least chunk_size bytes |
| 257 | * on success, 0 on failure. |
| 258 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 259 | svm_fifo_chunk_t *fsh_alloc_chunk (fifo_segment_header_t * fsh, |
| 260 | u32 slice_index, u32 chunk_size); |
| 261 | |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 262 | /** |
| 263 | * Return chunks to fifo segment |
| 264 | * |
| 265 | * @param fsh fifo segment header |
| 266 | * @param slice_index slice where chunks should be returned |
| 267 | * @param c pointer to first chunk in 0 terminated linked list |
| 268 | */ |
Florin Coras | f22f4e5 | 2019-12-19 16:10:58 -0800 | [diff] [blame] | 269 | void fsh_collect_chunks (fifo_segment_header_t * fsh, u32 slice_index, |
Florin Coras | 9e61d9a | 2020-02-05 21:13:18 +0000 | [diff] [blame] | 270 | svm_fifo_chunk_t * c); |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 271 | |
| 272 | /** |
Florin Coras | 213b1bb | 2020-12-07 14:33:58 -0800 | [diff] [blame] | 273 | * Fifo segment reset mem limit flag |
| 274 | * |
| 275 | * @param fs fifo segment |
| 276 | * @param size size requested |
| 277 | * @return pointer to memory allocated or 0 |
| 278 | */ |
| 279 | void *fifo_segment_alloc (fifo_segment_t *fs, uword size); |
| 280 | /** |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 281 | * Fifo segment allocated size |
| 282 | * |
| 283 | * Returns fifo segment's allocated size |
| 284 | * |
| 285 | * @param fs fifo segment |
| 286 | * @return allocated size in bytes |
| 287 | */ |
| 288 | uword fifo_segment_size (fifo_segment_t * fs); |
| 289 | |
| 290 | /** |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 291 | * Fifo segment estimate of number of free bytes |
| 292 | * |
| 293 | * Returns fifo segment's internal estimate of the number of free bytes. |
| 294 | * To force a synchronization between the segment and the underlying |
| 295 | * memory allocator, call @ref fifo_segment_update_free_bytes |
| 296 | * |
| 297 | * @param fs fifo segment |
| 298 | * @return free bytes estimate |
| 299 | */ |
Florin Coras | ef4f3e7 | 2019-12-11 14:27:53 -0800 | [diff] [blame] | 300 | uword fifo_segment_free_bytes (fifo_segment_t * fs); |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 301 | |
| 302 | /** |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 303 | * Fifo segment number of cached bytes |
| 304 | * |
| 305 | * Returns fifo segment's number of cached bytes. |
| 306 | * |
| 307 | * @param fs fifo segment |
| 308 | * @return cached bytes |
| 309 | */ |
| 310 | uword fifo_segment_cached_bytes (fifo_segment_t * fs); |
| 311 | |
Florin Coras | 75ccf7b | 2020-03-05 19:44:02 +0000 | [diff] [blame] | 312 | uword fifo_segment_available_bytes (fifo_segment_t * fs); |
| 313 | |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 314 | /** |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 315 | * Number of bytes on chunk free lists |
| 316 | * |
| 317 | * @param fs fifo segment |
| 318 | * @return free bytes on chunk free lists |
| 319 | */ |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 320 | uword fifo_segment_fl_chunk_bytes (fifo_segment_t * fs); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 321 | u8 fifo_segment_has_fifos (fifo_segment_t * fs); |
Florin Coras | 62ddc03 | 2019-12-08 18:30:42 -0800 | [diff] [blame] | 322 | svm_fifo_t *fifo_segment_get_slice_fifo_list (fifo_segment_t * fs, |
| 323 | u32 slice_index); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 324 | u32 fifo_segment_num_fifos (fifo_segment_t * fs); |
Florin Coras | f9d4ab4 | 2019-05-11 16:55:53 -0700 | [diff] [blame] | 325 | u32 fifo_segment_num_free_fifos (fifo_segment_t * fs); |
Florin Coras | 00338e0 | 2021-04-20 14:26:46 -0700 | [diff] [blame] | 326 | |
| 327 | svm_fifo_chunk_t *fifo_segment_alloc_chunk_w_slice (fifo_segment_t *fs, |
| 328 | u32 slice_index, |
| 329 | u32 chunk_size); |
| 330 | void fifo_segment_collect_chunk (fifo_segment_t *fs, u32 slice_index, |
| 331 | svm_fifo_chunk_t *c); |
| 332 | uword fifo_segment_chunk_offset (fifo_segment_t *fs, svm_fifo_chunk_t *c); |
| 333 | |
Florin Coras | b095a3c | 2019-04-25 12:58:46 -0700 | [diff] [blame] | 334 | /** |
| 335 | * Find number of free chunks of given size |
| 336 | * |
| 337 | * @param fs fifo segment |
| 338 | * @param size chunk size of interest or ~0 if all should be counted |
| 339 | * @return number of chunks of given size |
| 340 | */ |
| 341 | u32 fifo_segment_num_free_chunks (fifo_segment_t * fs, u32 size); |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 342 | |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 343 | u8 fifo_segment_get_mem_usage (fifo_segment_t * fs); |
Ryujiro Shibuya | 234fe89 | 2019-12-25 07:40:54 +0000 | [diff] [blame] | 344 | fifo_segment_mem_status_t fifo_segment_get_mem_status (fifo_segment_t * fs); |
| 345 | |
Florin Coras | 88001c6 | 2019-04-24 14:44:46 -0700 | [diff] [blame] | 346 | void fifo_segment_main_init (fifo_segment_main_t * sm, u64 baseva, |
| 347 | u32 timeout_in_seconds); |
| 348 | |
| 349 | format_function_t format_fifo_segment; |
| 350 | format_function_t format_fifo_segment_type; |
| 351 | |
| 352 | #endif /* __included_fifo_segment_h__ */ |
| 353 | |
| 354 | /* |
| 355 | * fd.io coding-style-patch-verification: ON |
| 356 | * |
| 357 | * Local Variables: |
| 358 | * eval: (c-set-style "gnu") |
| 359 | * End: |
| 360 | */ |