Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 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 | * input.c: Unix file input |
| 17 | * |
| 18 | * Copyright (c) 2008 Eliot Dresselhaus |
| 19 | * |
| 20 | * Permission is hereby granted, free of charge, to any person obtaining |
| 21 | * a copy of this software and associated documentation files (the |
| 22 | * "Software"), to deal in the Software without restriction, including |
| 23 | * without limitation the rights to use, copy, modify, merge, publish, |
| 24 | * distribute, sublicense, and/or sell copies of the Software, and to |
| 25 | * permit persons to whom the Software is furnished to do so, subject to |
| 26 | * the following conditions: |
| 27 | * |
| 28 | * The above copyright notice and this permission notice shall be |
| 29 | * included in all copies or substantial portions of the Software. |
| 30 | * |
| 31 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 32 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 33 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 34 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 35 | * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 36 | * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 37 | * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 38 | */ |
| 39 | |
| 40 | #include <vlib/vlib.h> |
| 41 | #include <vlib/unix/unix.h> |
| 42 | #include <signal.h> |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 43 | #include <unistd.h> |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 44 | #include <vppinfra/tw_timer_1t_3w_1024sl_ov.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 45 | |
| 46 | /* FIXME autoconf */ |
| 47 | #define HAVE_LINUX_EPOLL |
| 48 | |
| 49 | #ifdef HAVE_LINUX_EPOLL |
| 50 | |
| 51 | #include <sys/epoll.h> |
| 52 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 53 | typedef struct |
| 54 | { |
Dave Barach | eb987d3 | 2018-05-03 08:26:39 -0400 | [diff] [blame] | 55 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 56 | int epoll_fd; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 57 | struct epoll_event *epoll_events; |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 58 | int n_epoll_fds; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | |
| 60 | /* Statistics. */ |
| 61 | u64 epoll_files_ready; |
| 62 | u64 epoll_waits; |
| 63 | } linux_epoll_main_t; |
| 64 | |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 65 | static linux_epoll_main_t *linux_epoll_mains = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 66 | |
| 67 | static void |
Dave Barach | 59b2565 | 2017-09-10 15:04:27 -0400 | [diff] [blame] | 68 | linux_epoll_file_update (clib_file_t * f, clib_file_update_type_t update_type) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 69 | { |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 70 | clib_file_main_t *fm = &file_main; |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 71 | linux_epoll_main_t *em = vec_elt_at_index (linux_epoll_mains, |
| 72 | f->polling_thread_index); |
| 73 | struct epoll_event e = { 0 }; |
| 74 | int op, add_del = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 75 | |
| 76 | e.events = EPOLLIN; |
| 77 | if (f->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE) |
| 78 | e.events |= EPOLLOUT; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 79 | if (f->flags & UNIX_FILE_EVENT_EDGE_TRIGGERED) |
| 80 | e.events |= EPOLLET; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 81 | e.data.u32 = f - fm->file_pool; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 82 | |
Dave Barach | a1a093d | 2017-03-02 13:13:23 -0500 | [diff] [blame] | 83 | op = -1; |
| 84 | |
| 85 | switch (update_type) |
| 86 | { |
| 87 | case UNIX_FILE_UPDATE_ADD: |
| 88 | op = EPOLL_CTL_ADD; |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 89 | add_del = 1; |
Dave Barach | a1a093d | 2017-03-02 13:13:23 -0500 | [diff] [blame] | 90 | break; |
| 91 | |
| 92 | case UNIX_FILE_UPDATE_MODIFY: |
| 93 | op = EPOLL_CTL_MOD; |
| 94 | break; |
| 95 | |
| 96 | case UNIX_FILE_UPDATE_DELETE: |
| 97 | op = EPOLL_CTL_DEL; |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 98 | add_del = -1; |
Dave Barach | a1a093d | 2017-03-02 13:13:23 -0500 | [diff] [blame] | 99 | break; |
| 100 | |
| 101 | default: |
| 102 | clib_warning ("unknown update_type %d", update_type); |
| 103 | return; |
| 104 | } |
| 105 | |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 106 | /* worker threads open epoll fd only if needed */ |
| 107 | if (update_type == UNIX_FILE_UPDATE_ADD && em->epoll_fd == -1) |
| 108 | { |
| 109 | em->epoll_fd = epoll_create (1); |
| 110 | if (em->epoll_fd < 0) |
| 111 | { |
| 112 | clib_unix_warning ("epoll_create"); |
| 113 | return; |
| 114 | } |
| 115 | em->n_epoll_fds = 0; |
| 116 | } |
| 117 | |
Dave Barach | a1a093d | 2017-03-02 13:13:23 -0500 | [diff] [blame] | 118 | if (epoll_ctl (em->epoll_fd, op, f->file_descriptor, &e) < 0) |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 119 | { |
| 120 | clib_unix_warning ("epoll_ctl"); |
| 121 | return; |
| 122 | } |
| 123 | |
| 124 | em->n_epoll_fds += add_del; |
| 125 | |
| 126 | if (em->n_epoll_fds == 0) |
| 127 | { |
| 128 | close (em->epoll_fd); |
| 129 | em->epoll_fd = -1; |
| 130 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 133 | static_always_inline uword |
| 134 | linux_epoll_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node, |
| 135 | vlib_frame_t * frame, u32 thread_index) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 136 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 137 | unix_main_t *um = &unix_main; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 138 | clib_file_main_t *fm = &file_main; |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 139 | linux_epoll_main_t *em = vec_elt_at_index (linux_epoll_mains, thread_index); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 140 | struct epoll_event *e; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | int n_fds_ready; |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 142 | int is_main = (thread_index == 0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | |
| 144 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 145 | vlib_node_main_t *nm = &vm->node_main; |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 146 | u32 ticks_until_expiration; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 147 | f64 timeout; |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 148 | int timeout_ms = 0, max_timeout_ms = 10; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 149 | f64 vector_rate = vlib_last_vectors_per_main_loop (vm); |
| 150 | |
Dave Barach | 85aa490 | 2018-06-14 18:52:46 -0400 | [diff] [blame] | 151 | /* |
| 152 | * If we've been asked for a fixed-sleep between main loop polls, |
| 153 | * do so right away. |
| 154 | */ |
| 155 | if (PREDICT_FALSE (is_main && um->poll_sleep_usec)) |
| 156 | { |
| 157 | struct timespec ts, tsrem; |
| 158 | timeout = 0; |
| 159 | timeout_ms = 0; |
| 160 | node->input_main_loops_per_call = 0; |
| 161 | ts.tv_sec = 0; |
| 162 | ts.tv_nsec = 1000 * um->poll_sleep_usec; |
| 163 | |
| 164 | while (nanosleep (&ts, &tsrem) < 0) |
| 165 | { |
| 166 | ts = tsrem; |
| 167 | } |
| 168 | } |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 169 | /* If we're not working very hard, decide how long to sleep */ |
Dave Barach | 85aa490 | 2018-06-14 18:52:46 -0400 | [diff] [blame] | 170 | else if (is_main && vector_rate < 2 && vm->api_queue_nonempty == 0 |
| 171 | && nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] == 0) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 172 | { |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 173 | ticks_until_expiration = TW (tw_timer_first_expires_in_ticks) |
| 174 | ((TWT (tw_timer_wheel) *) nm->timing_wheel); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 175 | |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 176 | /* Nothing on the fast wheel, sleep 10ms */ |
| 177 | if (ticks_until_expiration == TW_SLOTS_PER_RING) |
Damjan Marion | 18bc907 | 2016-12-07 14:07:54 +0100 | [diff] [blame] | 178 | { |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 179 | timeout = 10e-3; |
| 180 | timeout_ms = max_timeout_ms; |
Damjan Marion | 18bc907 | 2016-12-07 14:07:54 +0100 | [diff] [blame] | 181 | } |
| 182 | else |
| 183 | { |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 184 | timeout = (f64) ticks_until_expiration *1e-5; |
| 185 | if (timeout < 1e-3) |
| 186 | timeout_ms = 0; |
| 187 | else |
| 188 | { |
| 189 | timeout_ms = timeout * 1e3; |
| 190 | /* Must be between 1 and 10 ms. */ |
| 191 | timeout_ms = clib_max (1, timeout_ms); |
| 192 | timeout_ms = clib_min (max_timeout_ms, timeout_ms); |
| 193 | } |
Damjan Marion | 18bc907 | 2016-12-07 14:07:54 +0100 | [diff] [blame] | 194 | } |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 195 | node->input_main_loops_per_call = 0; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 196 | } |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 197 | else if (is_main == 0 && vector_rate < 2 && |
| 198 | nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] == 0) |
| 199 | { |
| 200 | timeout = 10e-3; |
| 201 | timeout_ms = max_timeout_ms; |
| 202 | node->input_main_loops_per_call = 0; |
| 203 | } |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 204 | else /* busy */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 205 | { |
Dave Barach | 5c20a01 | 2017-06-13 08:48:31 -0400 | [diff] [blame] | 206 | /* Don't come back for a respectable number of dispatch cycles */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 207 | node->input_main_loops_per_call = 1024; |
| 208 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 209 | |
| 210 | /* Allow any signal to wakeup our sleep. */ |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 211 | if (is_main || em->epoll_fd != -1) |
| 212 | { |
| 213 | static sigset_t unblock_all_signals; |
| 214 | n_fds_ready = epoll_pwait (em->epoll_fd, |
| 215 | em->epoll_events, |
| 216 | vec_len (em->epoll_events), |
| 217 | timeout_ms, &unblock_all_signals); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 218 | |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 219 | /* This kludge is necessary to run over absurdly old kernels */ |
| 220 | if (n_fds_ready < 0 && errno == ENOSYS) |
| 221 | { |
| 222 | n_fds_ready = epoll_wait (em->epoll_fd, |
| 223 | em->epoll_events, |
| 224 | vec_len (em->epoll_events), timeout_ms); |
| 225 | } |
| 226 | } |
| 227 | else |
| 228 | { |
| 229 | if (timeout_ms) |
| 230 | usleep (timeout_ms * 1000); |
| 231 | return 0; |
| 232 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | if (n_fds_ready < 0) |
| 236 | { |
| 237 | if (unix_error_is_fatal (errno)) |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 238 | vlib_panic_with_error (vm, clib_error_return_unix (0, "epoll_wait")); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 239 | |
| 240 | /* non fatal error (e.g. EINTR). */ |
| 241 | return 0; |
| 242 | } |
| 243 | |
| 244 | em->epoll_waits += 1; |
| 245 | em->epoll_files_ready += n_fds_ready; |
| 246 | |
| 247 | for (e = em->epoll_events; e < em->epoll_events + n_fds_ready; e++) |
| 248 | { |
| 249 | u32 i = e->data.u32; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 250 | clib_file_t *f = pool_elt_at_index (fm->file_pool, i); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 251 | clib_error_t *errors[4]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 252 | int n_errors = 0; |
| 253 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 254 | if (PREDICT_TRUE (!(e->events & EPOLLERR))) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 255 | { |
| 256 | if (e->events & EPOLLIN) |
| 257 | { |
| 258 | errors[n_errors] = f->read_function (f); |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 259 | f->read_events++; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 260 | n_errors += errors[n_errors] != 0; |
| 261 | } |
| 262 | if (e->events & EPOLLOUT) |
| 263 | { |
| 264 | errors[n_errors] = f->write_function (f); |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 265 | f->write_events++; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 266 | n_errors += errors[n_errors] != 0; |
| 267 | } |
| 268 | } |
| 269 | else |
| 270 | { |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 271 | if (f->error_function) |
| 272 | { |
| 273 | errors[n_errors] = f->error_function (f); |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 274 | f->error_events++; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 275 | n_errors += errors[n_errors] != 0; |
| 276 | } |
Ole Troan | 4b12b3c | 2016-01-27 23:37:58 +0200 | [diff] [blame] | 277 | else |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 278 | close (f->file_descriptor); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 279 | } |
| 280 | |
| 281 | ASSERT (n_errors < ARRAY_LEN (errors)); |
| 282 | for (i = 0; i < n_errors; i++) |
| 283 | { |
| 284 | unix_save_error (um, errors[i]); |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | return 0; |
| 289 | } |
| 290 | |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 291 | static uword |
| 292 | linux_epoll_input (vlib_main_t * vm, |
| 293 | vlib_node_runtime_t * node, vlib_frame_t * frame) |
| 294 | { |
| 295 | u32 thread_index = vlib_get_thread_index (); |
| 296 | |
| 297 | if (thread_index == 0) |
| 298 | return linux_epoll_input_inline (vm, node, frame, 0); |
| 299 | else |
| 300 | return linux_epoll_input_inline (vm, node, frame, thread_index); |
| 301 | } |
| 302 | |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 303 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 304 | VLIB_REGISTER_NODE (linux_epoll_input_node,static) = { |
| 305 | .function = linux_epoll_input, |
| 306 | .type = VLIB_NODE_TYPE_PRE_INPUT, |
| 307 | .name = "unix-epoll-input", |
| 308 | }; |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 309 | /* *INDENT-ON* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 310 | |
| 311 | clib_error_t * |
| 312 | linux_epoll_input_init (vlib_main_t * vm) |
| 313 | { |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 314 | linux_epoll_main_t *em; |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 315 | clib_file_main_t *fm = &file_main; |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 316 | vlib_thread_main_t *tm = vlib_get_thread_main (); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 317 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 318 | |
Damjan Marion | ceab788 | 2018-01-19 20:56:12 +0100 | [diff] [blame] | 319 | vec_validate_aligned (linux_epoll_mains, tm->n_vlib_mains, |
| 320 | CLIB_CACHE_LINE_BYTES); |
| 321 | |
| 322 | vec_foreach (em, linux_epoll_mains) |
| 323 | { |
| 324 | /* Allocate some events. */ |
| 325 | vec_resize (em->epoll_events, VLIB_FRAME_SIZE); |
| 326 | |
| 327 | if (linux_epoll_mains == em) |
| 328 | { |
| 329 | em->epoll_fd = epoll_create (1); |
| 330 | if (em->epoll_fd < 0) |
| 331 | return clib_error_return_unix (0, "epoll_create"); |
| 332 | } |
| 333 | else |
| 334 | em->epoll_fd = -1; |
| 335 | } |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 336 | |
Damjan Marion | 56dd543 | 2017-09-08 19:52:02 +0200 | [diff] [blame] | 337 | fm->file_update = linux_epoll_file_update; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 338 | |
| 339 | return 0; |
| 340 | } |
| 341 | |
| 342 | VLIB_INIT_FUNCTION (linux_epoll_input_init); |
| 343 | |
| 344 | #endif /* HAVE_LINUX_EPOLL */ |
| 345 | |
| 346 | static clib_error_t * |
| 347 | unix_input_init (vlib_main_t * vm) |
| 348 | { |
| 349 | return vlib_call_init_function (vm, linux_epoll_input_init); |
| 350 | } |
| 351 | |
| 352 | VLIB_INIT_FUNCTION (unix_input_init); |
Dave Barach | 9b8ffd9 | 2016-07-08 08:13:45 -0400 | [diff] [blame] | 353 | |
| 354 | /* |
| 355 | * fd.io coding-style-patch-verification: ON |
| 356 | * |
| 357 | * Local Variables: |
| 358 | * eval: (c-set-style "gnu") |
| 359 | * End: |
| 360 | */ |