Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017 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 <vnet/session/segment_manager.h> |
| 17 | #include <vnet/session/session.h> |
| 18 | #include <vnet/session/application.h> |
| 19 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 20 | segment_manager_main_t segment_manager_main; |
| 21 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 22 | /** |
| 23 | * Counter used to build segment names |
| 24 | */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 25 | static u32 segment_name_counter = 0; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 26 | |
| 27 | /** |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 28 | * Default fifo and segment size. TODO config. |
| 29 | */ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 30 | static u32 default_fifo_size = 1 << 12; |
| 31 | static u32 default_segment_size = 1 << 20; |
| 32 | static u32 default_app_evt_queue_size = 128; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 33 | |
Florin Coras | ad0c77f | 2017-11-09 18:00:15 -0800 | [diff] [blame] | 34 | segment_manager_properties_t * |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 35 | segment_manager_properties_get (segment_manager_t * sm) |
Florin Coras | ad0c77f | 2017-11-09 18:00:15 -0800 | [diff] [blame] | 36 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 37 | return application_get_segment_manager_properties (sm->app_index); |
| 38 | } |
| 39 | |
| 40 | segment_manager_properties_t * |
| 41 | segment_manager_properties_init (segment_manager_properties_t * props) |
| 42 | { |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 43 | props->add_segment_size = default_segment_size; |
| 44 | props->rx_fifo_size = default_fifo_size; |
| 45 | props->tx_fifo_size = default_fifo_size; |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 46 | props->evt_q_size = default_app_evt_queue_size; |
Florin Coras | ad0c77f | 2017-11-09 18:00:15 -0800 | [diff] [blame] | 47 | return props; |
| 48 | } |
| 49 | |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 50 | static u8 |
| 51 | segment_manager_app_detached (segment_manager_t * sm) |
| 52 | { |
| 53 | return (sm->app_index == SEGMENT_MANAGER_INVALID_APP_INDEX); |
Dave Wallace | 7b749fe | 2017-07-05 14:30:46 -0400 | [diff] [blame] | 54 | } |
| 55 | |
Florin Coras | 4e4531e | 2017-11-06 23:27:56 -0800 | [diff] [blame] | 56 | void |
| 57 | segment_manager_app_detach (segment_manager_t * sm) |
| 58 | { |
| 59 | sm->app_index = SEGMENT_MANAGER_INVALID_APP_INDEX; |
| 60 | } |
| 61 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 62 | always_inline u32 |
| 63 | segment_manager_segment_index (segment_manager_t * sm, |
| 64 | svm_fifo_segment_private_t * seg) |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 65 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 66 | return (seg - sm->segments); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Remove segment without lock |
| 71 | */ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 72 | void |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 73 | segment_manager_del_segment (segment_manager_t * sm, |
| 74 | svm_fifo_segment_private_t * fs) |
| 75 | { |
| 76 | segment_manager_main_t *smm = &segment_manager_main; |
| 77 | |
| 78 | if (ssvm_type (&fs->ssvm) != SSVM_SEGMENT_PRIVATE) |
| 79 | clib_valloc_free (&smm->va_allocator, fs->ssvm.requested_va); |
| 80 | |
| 81 | ssvm_delete (&fs->ssvm); |
| 82 | |
| 83 | if (CLIB_DEBUG) |
| 84 | memset (fs, 0xfb, sizeof (*fs)); |
| 85 | pool_put (sm->segments, fs); |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Removes segment after acquiring writer lock |
| 90 | */ |
| 91 | always_inline void |
| 92 | segment_manager_lock_and_del_segment (segment_manager_t * sm, u32 fs_index) |
| 93 | { |
| 94 | svm_fifo_segment_private_t *fs; |
| 95 | u8 is_prealloc; |
| 96 | |
| 97 | clib_rwlock_writer_lock (&sm->segments_rwlock); |
| 98 | fs = segment_manager_get_segment (sm, fs_index); |
| 99 | is_prealloc = svm_fifo_segment_flags (fs) & FIFO_SEGMENT_F_IS_PREALLOCATED; |
| 100 | if (is_prealloc && !segment_manager_app_detached (sm)) |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 101 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 102 | clib_rwlock_writer_unlock (&sm->segments_rwlock); |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 103 | return; |
| 104 | } |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 105 | |
| 106 | segment_manager_del_segment (sm, fs); |
| 107 | clib_rwlock_writer_unlock (&sm->segments_rwlock); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Reads a segment from the segment manager's pool without lock |
| 112 | */ |
| 113 | svm_fifo_segment_private_t * |
| 114 | segment_manager_get_segment (segment_manager_t * sm, u32 segment_index) |
| 115 | { |
| 116 | return pool_elt_at_index (sm->segments, segment_index); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Reads a segment from the segment manager's pool and acquires reader lock |
| 121 | * |
| 122 | * Caller must drop the reader's lock by calling |
| 123 | * @ref segment_manager_segment_reader_unlock once it finishes working with |
| 124 | * the segment. |
| 125 | */ |
| 126 | svm_fifo_segment_private_t * |
| 127 | segment_manager_get_segment_w_lock (segment_manager_t * sm, u32 segment_index) |
| 128 | { |
| 129 | clib_rwlock_reader_lock (&sm->segments_rwlock); |
| 130 | return pool_elt_at_index (sm->segments, segment_index); |
| 131 | } |
| 132 | |
| 133 | void |
| 134 | segment_manager_segment_reader_unlock (segment_manager_t * sm) |
| 135 | { |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 136 | ASSERT (sm->segments_rwlock->n_readers > 0); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 137 | clib_rwlock_reader_unlock (&sm->segments_rwlock); |
| 138 | } |
| 139 | |
| 140 | void |
| 141 | segment_manager_segment_writer_unlock (segment_manager_t * sm) |
| 142 | { |
| 143 | clib_rwlock_writer_unlock (&sm->segments_rwlock); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Adds segment to segment manager's pool |
| 148 | * |
| 149 | * If needed a writer's lock is acquired before allocating a new segment |
| 150 | * to avoid affecting any of the segments pool readers. |
| 151 | */ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 152 | int |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 153 | segment_manager_add_segment (segment_manager_t * sm, u32 segment_size) |
| 154 | { |
| 155 | segment_manager_main_t *smm = &segment_manager_main; |
| 156 | u32 rnd_margin = 128 << 10, seg_index; |
| 157 | segment_manager_properties_t *props; |
| 158 | uword baseva = (u64) ~ 0, alloc_size; |
| 159 | svm_fifo_segment_private_t *seg; |
| 160 | u8 *seg_name; |
| 161 | int rv; |
| 162 | |
| 163 | props = segment_manager_properties_get (sm); |
| 164 | |
| 165 | /* Not configured for addition of new segments and not first */ |
| 166 | if (!props->add_segment && !segment_size) |
| 167 | { |
| 168 | clib_warning ("cannot allocate new segment"); |
| 169 | return VNET_API_ERROR_INVALID_VALUE; |
| 170 | } |
| 171 | |
| 172 | /* |
| 173 | * Allocate fifo segment and lock if needed |
| 174 | */ |
| 175 | if (vlib_num_workers ()) |
| 176 | { |
| 177 | clib_rwlock_writer_lock (&sm->segments_rwlock); |
| 178 | pool_get (sm->segments, seg); |
| 179 | } |
| 180 | else |
| 181 | { |
| 182 | pool_get (sm->segments, seg); |
| 183 | } |
| 184 | memset (seg, 0, sizeof (*seg)); |
| 185 | |
| 186 | /* |
| 187 | * Initialize ssvm segment and svm fifo private header |
| 188 | */ |
| 189 | segment_size = segment_size ? segment_size : props->add_segment_size; |
| 190 | if (props->segment_type != SSVM_SEGMENT_PRIVATE) |
| 191 | { |
| 192 | seg_name = format (0, "%d-%d%c", getpid (), segment_name_counter++, 0); |
| 193 | alloc_size = segment_size + rnd_margin; |
| 194 | baseva = clib_valloc_alloc (&smm->va_allocator, alloc_size, 0); |
| 195 | if (!baseva) |
| 196 | { |
| 197 | clib_warning ("out of space for segments"); |
| 198 | return -1; |
| 199 | } |
| 200 | } |
| 201 | else |
| 202 | seg_name = format (0, "%s%c", "process-private-segment", 0); |
| 203 | |
| 204 | seg->ssvm.ssvm_size = segment_size; |
| 205 | seg->ssvm.name = seg_name; |
| 206 | seg->ssvm.requested_va = baseva; |
| 207 | |
| 208 | if ((rv = ssvm_master_init (&seg->ssvm, props->segment_type))) |
| 209 | { |
| 210 | clib_warning ("svm_master_init ('%v', %u) failed", seg_name, |
| 211 | segment_size); |
| 212 | |
| 213 | if (props->segment_type != SSVM_SEGMENT_PRIVATE) |
| 214 | clib_valloc_free (&smm->va_allocator, baseva); |
| 215 | pool_put (sm->segments, seg); |
| 216 | return (rv); |
| 217 | } |
| 218 | |
| 219 | svm_fifo_segment_init (seg); |
| 220 | |
| 221 | /* |
| 222 | * Save segment index before dropping lock, if any held |
| 223 | */ |
| 224 | seg_index = seg - sm->segments; |
| 225 | |
| 226 | if (vlib_num_workers ()) |
| 227 | clib_rwlock_writer_unlock (&sm->segments_rwlock); |
| 228 | |
| 229 | return seg_index; |
| 230 | } |
| 231 | |
| 232 | segment_manager_t * |
| 233 | segment_manager_new () |
| 234 | { |
| 235 | segment_manager_main_t *smm = &segment_manager_main; |
| 236 | segment_manager_t *sm; |
| 237 | pool_get (smm->segment_managers, sm); |
| 238 | memset (sm, 0, sizeof (*sm)); |
| 239 | clib_rwlock_init (&sm->segments_rwlock); |
| 240 | return sm; |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * Initializes segment manager based on options provided. |
| 245 | * Returns error if ssvm segment(s) allocation fails. |
| 246 | */ |
| 247 | int |
| 248 | segment_manager_init (segment_manager_t * sm, u32 first_seg_size, |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 249 | u32 prealloc_fifo_pairs) |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 250 | { |
| 251 | u32 rx_fifo_size, tx_fifo_size, pair_size; |
| 252 | u32 rx_rounded_data_size, tx_rounded_data_size; |
| 253 | u64 approx_total_size, max_seg_size = |
| 254 | ((u64) 1 << 32) - clib_mem_get_page_size (); |
| 255 | segment_manager_properties_t *props; |
| 256 | svm_fifo_segment_private_t *segment; |
| 257 | u32 approx_segment_count; |
| 258 | int seg_index, i; |
| 259 | |
| 260 | props = segment_manager_properties_get (sm); |
| 261 | first_seg_size = clib_max (first_seg_size, default_segment_size); |
| 262 | |
| 263 | if (prealloc_fifo_pairs) |
| 264 | { |
| 265 | /* Figure out how many segments should be preallocated */ |
| 266 | rx_rounded_data_size = (1 << (max_log2 (props->rx_fifo_size))); |
| 267 | tx_rounded_data_size = (1 << (max_log2 (props->tx_fifo_size))); |
| 268 | |
| 269 | rx_fifo_size = sizeof (svm_fifo_t) + rx_rounded_data_size; |
| 270 | tx_fifo_size = sizeof (svm_fifo_t) + tx_rounded_data_size; |
| 271 | pair_size = rx_fifo_size + tx_fifo_size; |
| 272 | |
| 273 | approx_total_size = (u64) prealloc_fifo_pairs *pair_size; |
| 274 | if (first_seg_size > approx_total_size) |
| 275 | max_seg_size = first_seg_size; |
| 276 | approx_segment_count = (approx_total_size + (max_seg_size - 1)) |
| 277 | / max_seg_size; |
| 278 | |
| 279 | /* Allocate the segments */ |
| 280 | for (i = 0; i < approx_segment_count + 1; i++) |
| 281 | { |
| 282 | seg_index = segment_manager_add_segment (sm, max_seg_size); |
| 283 | if (seg_index < 0) |
| 284 | { |
| 285 | clib_warning ("Failed to preallocate segment %d", i); |
| 286 | return seg_index; |
| 287 | } |
| 288 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 289 | segment = segment_manager_get_segment (sm, seg_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 290 | if (i == 0) |
| 291 | sm->event_queue = segment_manager_alloc_queue (segment, |
| 292 | props->evt_q_size); |
| 293 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 294 | svm_fifo_segment_preallocate_fifo_pairs (segment, |
| 295 | props->rx_fifo_size, |
| 296 | props->tx_fifo_size, |
| 297 | &prealloc_fifo_pairs); |
| 298 | svm_fifo_segment_flags (segment) = FIFO_SEGMENT_F_IS_PREALLOCATED; |
| 299 | if (prealloc_fifo_pairs == 0) |
| 300 | break; |
| 301 | } |
| 302 | } |
| 303 | else |
| 304 | { |
| 305 | seg_index = segment_manager_add_segment (sm, first_seg_size); |
| 306 | if (seg_index) |
| 307 | { |
| 308 | clib_warning ("Failed to allocate segment"); |
| 309 | return seg_index; |
| 310 | } |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 311 | segment = segment_manager_get_segment (sm, seg_index); |
| 312 | sm->event_queue = segment_manager_alloc_queue (segment, |
| 313 | props->evt_q_size); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | return 0; |
| 317 | } |
| 318 | |
| 319 | u8 |
| 320 | segment_manager_has_fifos (segment_manager_t * sm) |
| 321 | { |
| 322 | svm_fifo_segment_private_t *seg; |
| 323 | u8 first = 1; |
| 324 | |
| 325 | /* *INDENT-OFF* */ |
| 326 | segment_manager_foreach_segment_w_lock (seg, sm, ({ |
| 327 | if (CLIB_DEBUG && !first && !svm_fifo_segment_has_fifos (seg) |
| 328 | && !(svm_fifo_segment_flags (seg) & FIFO_SEGMENT_F_IS_PREALLOCATED)) |
| 329 | { |
| 330 | clib_warning ("segment %d has no fifos!", |
| 331 | segment_manager_segment_index (sm, seg)); |
| 332 | first = 0; |
| 333 | } |
| 334 | if (svm_fifo_segment_has_fifos (seg)) |
| 335 | { |
| 336 | segment_manager_segment_reader_unlock (sm); |
| 337 | return 1; |
| 338 | } |
| 339 | })); |
| 340 | /* *INDENT-ON* */ |
| 341 | |
| 342 | return 0; |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | /** |
| 346 | * Initiate disconnects for all sessions 'owned' by a segment manager |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 347 | */ |
| 348 | void |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 349 | segment_manager_del_sessions (segment_manager_t * sm) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 350 | { |
Dave Wallace | 7b749fe | 2017-07-05 14:30:46 -0400 | [diff] [blame] | 351 | svm_fifo_segment_private_t *fifo_segment; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 352 | stream_session_t *session; |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 353 | svm_fifo_t *fifo; |
| 354 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 355 | ASSERT (pool_elts (sm->segments) != 0); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 356 | |
| 357 | /* Across all fifo segments used by the server */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 358 | /* *INDENT-OFF* */ |
| 359 | segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({ |
| 360 | fifo = svm_fifo_segment_get_fifo_list (fifo_segment); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 361 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 362 | /* |
| 363 | * Remove any residual sessions from the session lookup table |
| 364 | * Don't bother deleting the individual fifos, we're going to |
| 365 | * throw away the fifo segment in a minute. |
| 366 | */ |
| 367 | while (fifo) |
| 368 | { |
| 369 | session = session_get (fifo->master_session_index, |
| 370 | fifo->master_thread_index); |
| 371 | stream_session_disconnect (session); |
| 372 | fifo = fifo->next; |
| 373 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 374 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 375 | /* Instead of removing the segment, test when cleaning up disconnected |
| 376 | * sessions if the segment can be removed. |
| 377 | */ |
| 378 | })); |
| 379 | /* *INDENT-ON* */ |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 380 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 381 | |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 382 | /** |
| 383 | * Removes segment manager. |
| 384 | * |
| 385 | * Since the fifos allocated in the segment keep backpointers to the sessions |
| 386 | * prior to removing the segment, we call session disconnect. This |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 387 | * subsequently propagates into transport. |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 388 | */ |
| 389 | void |
| 390 | segment_manager_del (segment_manager_t * sm) |
| 391 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 392 | segment_manager_main_t *smm = &segment_manager_main; |
| 393 | svm_fifo_segment_private_t *fifo_segment; |
Dave Wallace | 7b749fe | 2017-07-05 14:30:46 -0400 | [diff] [blame] | 394 | |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 395 | ASSERT (!segment_manager_has_fifos (sm) |
| 396 | && segment_manager_app_detached (sm)); |
| 397 | |
| 398 | /* If we have empty preallocated segments that haven't been removed, remove |
| 399 | * them now. Apart from that, the first segment in the first segment manager |
| 400 | * is not removed when all fifos are removed. It can only be removed when |
| 401 | * the manager is explicitly deleted/detached by the app. */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 402 | clib_rwlock_writer_lock (&sm->segments_rwlock); |
| 403 | |
| 404 | /* *INDENT-OFF* */ |
| 405 | pool_foreach (fifo_segment, sm->segments, ({ |
| 406 | segment_manager_del_segment (sm, fifo_segment); |
| 407 | })); |
| 408 | /* *INDENT-ON* */ |
| 409 | |
| 410 | clib_rwlock_writer_unlock (&sm->segments_rwlock); |
| 411 | |
| 412 | clib_rwlock_free (&sm->segments_rwlock); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 413 | if (CLIB_DEBUG) |
| 414 | memset (sm, 0xfe, sizeof (*sm)); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 415 | pool_put (smm->segment_managers, sm); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 416 | } |
| 417 | |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 418 | void |
| 419 | segment_manager_init_del (segment_manager_t * sm) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 420 | { |
Florin Coras | 4e4531e | 2017-11-06 23:27:56 -0800 | [diff] [blame] | 421 | segment_manager_app_detach (sm); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 422 | if (segment_manager_has_fifos (sm)) |
| 423 | segment_manager_del_sessions (sm); |
| 424 | else |
| 425 | { |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 426 | ASSERT (!sm->first_is_protected || segment_manager_app_detached (sm)); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 427 | segment_manager_del (sm); |
| 428 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 429 | } |
| 430 | |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 431 | int |
| 432 | segment_manager_try_alloc_fifos (svm_fifo_segment_private_t * fifo_segment, |
| 433 | u32 rx_fifo_size, u32 tx_fifo_size, |
| 434 | svm_fifo_t ** rx_fifo, svm_fifo_t ** tx_fifo) |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 435 | { |
| 436 | rx_fifo_size = clib_max (rx_fifo_size, default_fifo_size); |
| 437 | *rx_fifo = svm_fifo_segment_alloc_fifo (fifo_segment, rx_fifo_size, |
| 438 | FIFO_SEGMENT_RX_FREELIST); |
| 439 | |
| 440 | tx_fifo_size = clib_max (tx_fifo_size, default_fifo_size); |
| 441 | *tx_fifo = svm_fifo_segment_alloc_fifo (fifo_segment, tx_fifo_size, |
| 442 | FIFO_SEGMENT_TX_FREELIST); |
| 443 | |
| 444 | if (*rx_fifo == 0) |
| 445 | { |
| 446 | /* This would be very odd, but handle it... */ |
| 447 | if (*tx_fifo != 0) |
| 448 | { |
| 449 | svm_fifo_segment_free_fifo (fifo_segment, *tx_fifo, |
| 450 | FIFO_SEGMENT_TX_FREELIST); |
| 451 | *tx_fifo = 0; |
| 452 | } |
| 453 | return -1; |
| 454 | } |
| 455 | if (*tx_fifo == 0) |
| 456 | { |
| 457 | if (*rx_fifo != 0) |
| 458 | { |
| 459 | svm_fifo_segment_free_fifo (fifo_segment, *rx_fifo, |
| 460 | FIFO_SEGMENT_RX_FREELIST); |
| 461 | *rx_fifo = 0; |
| 462 | } |
| 463 | return -1; |
| 464 | } |
| 465 | |
| 466 | return 0; |
| 467 | } |
| 468 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 469 | int |
| 470 | segment_manager_alloc_session_fifos (segment_manager_t * sm, |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 471 | svm_fifo_t ** rx_fifo, |
| 472 | svm_fifo_t ** tx_fifo, |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 473 | u32 * fifo_segment_index) |
| 474 | { |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 475 | svm_fifo_segment_private_t *fifo_segment = 0; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 476 | int alloc_fail = 1, rv = 0, new_fs_index; |
Florin Coras | ad0c77f | 2017-11-09 18:00:15 -0800 | [diff] [blame] | 477 | segment_manager_properties_t *props; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 478 | u8 added_a_segment = 0; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 479 | u32 sm_index; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 480 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 481 | props = segment_manager_properties_get (sm); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 482 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 483 | /* |
| 484 | * Find the first free segment to allocate the fifos in |
| 485 | */ |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 486 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 487 | /* *INDENT-OFF* */ |
| 488 | segment_manager_foreach_segment_w_lock (fifo_segment, sm, ({ |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 489 | alloc_fail = segment_manager_try_alloc_fifos (fifo_segment, |
| 490 | props->rx_fifo_size, |
| 491 | props->tx_fifo_size, |
| 492 | rx_fifo, tx_fifo); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 493 | /* Exit with lock held, drop it after notifying app */ |
| 494 | if (!alloc_fail) |
| 495 | goto alloc_success; |
| 496 | })); |
| 497 | /* *INDENT-ON* */ |
| 498 | |
| 499 | alloc_check: |
| 500 | |
| 501 | if (!alloc_fail) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 502 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 503 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 504 | alloc_success: |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 505 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 506 | ASSERT (rx_fifo && tx_fifo); |
| 507 | sm_index = segment_manager_index (sm); |
| 508 | (*tx_fifo)->segment_manager = sm_index; |
| 509 | (*rx_fifo)->segment_manager = sm_index; |
| 510 | *fifo_segment_index = segment_manager_segment_index (sm, fifo_segment); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 511 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 512 | if (added_a_segment) |
| 513 | rv = application_add_segment_notify (sm->app_index, |
| 514 | &fifo_segment->ssvm); |
| 515 | /* Drop the lock after app is notified */ |
| 516 | segment_manager_segment_reader_unlock (sm); |
| 517 | return rv; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 518 | } |
| 519 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 520 | /* |
| 521 | * Allocation failed, see if we can add a new segment |
| 522 | */ |
| 523 | if (props->add_segment) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 524 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 525 | if (added_a_segment) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 526 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 527 | clib_warning ("Added a segment, still can't allocate a fifo"); |
| 528 | segment_manager_segment_reader_unlock (sm); |
| 529 | return SESSION_ERROR_NEW_SEG_NO_SPACE; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 530 | } |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 531 | if ((new_fs_index = segment_manager_add_segment (sm, 0)) < 0) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 532 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 533 | clib_warning ("Failed to add new segment"); |
| 534 | return SESSION_ERROR_SEG_CREATE; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 535 | } |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 536 | fifo_segment = segment_manager_get_segment_w_lock (sm, new_fs_index); |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 537 | alloc_fail = segment_manager_try_alloc_fifos (fifo_segment, |
| 538 | props->rx_fifo_size, |
| 539 | props->tx_fifo_size, |
| 540 | rx_fifo, tx_fifo); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 541 | added_a_segment = 1; |
| 542 | goto alloc_check; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 543 | } |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 544 | else |
| 545 | { |
| 546 | clib_warning ("Can't add new seg and no space to allocate fifos!"); |
| 547 | return SESSION_ERROR_NO_SPACE; |
| 548 | } |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | void |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 552 | segment_manager_dealloc_fifos (u32 segment_index, svm_fifo_t * rx_fifo, |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 553 | svm_fifo_t * tx_fifo) |
| 554 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 555 | svm_fifo_segment_private_t *fifo_segment; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 556 | segment_manager_t *sm; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 557 | |
| 558 | /* It's possible to have no segment manager if the session was removed |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 559 | * as result of a detach. */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 560 | if (!(sm = segment_manager_get_if_valid (rx_fifo->segment_manager))) |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 561 | return; |
| 562 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 563 | fifo_segment = segment_manager_get_segment_w_lock (sm, segment_index); |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 564 | svm_fifo_segment_free_fifo (fifo_segment, rx_fifo, |
| 565 | FIFO_SEGMENT_RX_FREELIST); |
| 566 | svm_fifo_segment_free_fifo (fifo_segment, tx_fifo, |
| 567 | FIFO_SEGMENT_TX_FREELIST); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 568 | |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 569 | /* |
| 570 | * Try to remove svm segment if it has no fifos. This can be done only if |
| 571 | * the segment is not the first in the segment manager or if it is first |
| 572 | * and it is not protected. Moreover, if the segment is first and the app |
| 573 | * has detached from the segment manager, remove the segment manager. |
| 574 | */ |
| 575 | if (!svm_fifo_segment_has_fifos (fifo_segment)) |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 576 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 577 | segment_manager_segment_reader_unlock (sm); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 578 | |
| 579 | /* Remove segment if it holds no fifos or first but not protected */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 580 | if (segment_index != 0 || !sm->first_is_protected) |
| 581 | segment_manager_lock_and_del_segment (sm, segment_index); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 582 | |
| 583 | /* Remove segment manager if no sessions and detached from app */ |
Florin Coras | 9d06304 | 2017-09-14 03:08:00 -0400 | [diff] [blame] | 584 | if (segment_manager_app_detached (sm) |
| 585 | && !segment_manager_has_fifos (sm)) |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 586 | segment_manager_del (sm); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 587 | } |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 588 | else |
| 589 | segment_manager_segment_reader_unlock (sm); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 590 | } |
| 591 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 592 | /** |
| 593 | * Allocates shm queue in the first segment |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 594 | * |
| 595 | * Must be called with lock held |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 596 | */ |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 597 | svm_queue_t * |
Florin Coras | f8f516a | 2018-02-08 15:10:09 -0800 | [diff] [blame] | 598 | segment_manager_alloc_queue (svm_fifo_segment_private_t * segment, |
| 599 | u32 queue_size) |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 600 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 601 | ssvm_shared_header_t *sh; |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 602 | svm_queue_t *q; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 603 | void *oldheap; |
| 604 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 605 | sh = segment->ssvm.sh; |
| 606 | |
| 607 | oldheap = ssvm_push_heap (sh); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 608 | q = svm_queue_init (queue_size, sizeof (session_fifo_event_t), |
| 609 | 0 /* consumer pid */ , |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 610 | 0 /* signal when queue non-empty */ ); |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 611 | ssvm_pop_heap (oldheap); |
| 612 | return q; |
| 613 | } |
| 614 | |
| 615 | /** |
| 616 | * Frees shm queue allocated in the first segment |
| 617 | */ |
| 618 | void |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 619 | segment_manager_dealloc_queue (segment_manager_t * sm, svm_queue_t * q) |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 620 | { |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 621 | svm_fifo_segment_private_t *segment; |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 622 | ssvm_shared_header_t *sh; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 623 | void *oldheap; |
| 624 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 625 | ASSERT (!pool_is_free_index (sm->segments, 0)); |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 626 | |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 627 | segment = segment_manager_get_segment_w_lock (sm, 0); |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 628 | sh = segment->ssvm.sh; |
| 629 | |
| 630 | oldheap = ssvm_push_heap (sh); |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 631 | svm_queue_free (q); |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 632 | ssvm_pop_heap (oldheap); |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 633 | segment_manager_segment_reader_unlock (sm); |
| 634 | } |
| 635 | |
| 636 | /* |
| 637 | * Init segment vm address allocator |
| 638 | */ |
| 639 | void |
| 640 | segment_manager_main_init (segment_manager_main_init_args_t * a) |
| 641 | { |
| 642 | segment_manager_main_t *sm = &segment_manager_main; |
| 643 | clib_valloc_chunk_t _ip, *ip = &_ip; |
| 644 | |
| 645 | ip->baseva = a->baseva; |
| 646 | ip->size = a->size; |
| 647 | |
| 648 | clib_valloc_init (&sm->va_allocator, ip, 1 /* lock */ ); |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 649 | } |
| 650 | |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 651 | static clib_error_t * |
| 652 | segment_manager_show_fn (vlib_main_t * vm, unformat_input_t * input, |
| 653 | vlib_cli_command_t * cmd) |
| 654 | { |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 655 | segment_manager_main_t *smm = &segment_manager_main; |
| 656 | svm_fifo_segment_private_t *seg; |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 657 | segment_manager_t *sm; |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 658 | u8 show_segments = 0, verbose = 0; |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 659 | uword address; |
| 660 | u64 size; |
Dave Barach | 91f3e74 | 2017-09-01 19:12:11 -0400 | [diff] [blame] | 661 | u32 active_fifos; |
| 662 | u32 free_fifos; |
| 663 | |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 664 | while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) |
| 665 | { |
| 666 | if (unformat (input, "segments")) |
| 667 | show_segments = 1; |
| 668 | else if (unformat (input, "verbose")) |
| 669 | verbose = 1; |
| 670 | else |
| 671 | return clib_error_return (0, "unknown input `%U'", |
| 672 | format_unformat_error, input); |
| 673 | } |
| 674 | vlib_cli_output (vm, "%d segment managers allocated", |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 675 | pool_elts (smm->segment_managers)); |
| 676 | if (verbose && pool_elts (smm->segment_managers)) |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 677 | { |
| 678 | vlib_cli_output (vm, "%-10s%=15s%=12s", "Index", "App Index", |
| 679 | "Segments"); |
| 680 | |
| 681 | /* *INDENT-OFF* */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 682 | pool_foreach (sm, smm->segment_managers, ({ |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 683 | vlib_cli_output (vm, "%-10d%=15d%=12d", segment_manager_index(sm), |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 684 | sm->app_index, pool_elts (sm->segments)); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 685 | })); |
| 686 | /* *INDENT-ON* */ |
| 687 | |
| 688 | } |
| 689 | if (show_segments) |
| 690 | { |
Florin Coras | 2f8d8fa | 2018-01-26 06:36:04 -0800 | [diff] [blame] | 691 | vlib_cli_output (vm, "%-15s%15s%15s%15s%15s%15s", "Name", "Type", |
Dave Barach | 91f3e74 | 2017-09-01 19:12:11 -0400 | [diff] [blame] | 692 | "HeapSize (M)", "ActiveFifos", "FreeFifos", "Address"); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 693 | |
| 694 | /* *INDENT-OFF* */ |
Florin Coras | a332c46 | 2018-01-31 06:52:17 -0800 | [diff] [blame] | 695 | pool_foreach (sm, smm->segment_managers, ({ |
| 696 | segment_manager_foreach_segment_w_lock (seg, sm, ({ |
| 697 | svm_fifo_segment_info (seg, &address, &size); |
| 698 | active_fifos = svm_fifo_segment_num_fifos (seg); |
| 699 | free_fifos = svm_fifo_segment_num_free_fifos (seg, ~0 /* size */); |
| 700 | vlib_cli_output (vm, "%-15v%15U%15llu%15u%15u%15llx", |
| 701 | ssvm_name (&seg->ssvm), format_svm_fifo_segment_type, |
| 702 | seg, size >> 20ULL, active_fifos, free_fifos, |
| 703 | address); |
| 704 | if (verbose) |
| 705 | vlib_cli_output (vm, "%U", format_svm_fifo_segment, seg, verbose); |
| 706 | })); |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 707 | })); |
| 708 | /* *INDENT-ON* */ |
| 709 | |
| 710 | } |
| 711 | return 0; |
| 712 | } |
| 713 | |
Florin Coras | ad0c77f | 2017-11-09 18:00:15 -0800 | [diff] [blame] | 714 | /* *INDENT-OFF* */ |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 715 | VLIB_CLI_COMMAND (segment_manager_show_command, static) = |
| 716 | { |
| 717 | .path = "show segment-manager", |
Dave Barach | 91f3e74 | 2017-09-01 19:12:11 -0400 | [diff] [blame] | 718 | .short_help = "show segment-manager [segments][verbose]", |
Florin Coras | c87c91d | 2017-08-16 19:55:49 -0700 | [diff] [blame] | 719 | .function = segment_manager_show_fn, |
| 720 | }; |
| 721 | /* *INDENT-ON* */ |
| 722 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 723 | /* |
| 724 | * fd.io coding-style-patch-verification: ON |
| 725 | * |
| 726 | * Local Variables: |
| 727 | * eval: (c-set-style "gnu") |
| 728 | * End: |
| 729 | */ |