Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2020 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/vnet.h> |
| 17 | #include <vnet/devices/devices.h> |
| 18 | #include <vnet/feature/feature.h> |
| 19 | #include <vnet/ip/ip.h> |
| 20 | #include <vnet/ethernet/ethernet.h> |
| 21 | #include <vnet/interface/rx_queue_funcs.h> |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 22 | #include <vnet/interface/tx_queue_funcs.h> |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 23 | #include <vlib/unix/unix.h> |
| 24 | |
| 25 | VLIB_REGISTER_LOG_CLASS (if_rxq_log, static) = { |
| 26 | .class_name = "interface", |
| 27 | .subclass_name = "runtime", |
| 28 | }; |
| 29 | |
| 30 | #define log_debug(fmt, ...) vlib_log_debug (if_rxq_log.class, fmt, __VA_ARGS__) |
| 31 | #define log_err(fmt, ...) vlib_log_err (if_rxq_log.class, fmt, __VA_ARGS__) |
| 32 | |
| 33 | static char *node_state_str[] = { |
| 34 | [VLIB_NODE_STATE_DISABLED] = "disabled", |
| 35 | [VLIB_NODE_STATE_POLLING] = "polling", |
| 36 | [VLIB_NODE_STATE_INTERRUPT] = "interrupt", |
| 37 | }; |
| 38 | |
| 39 | static int |
| 40 | poll_data_sort (void *a1, void *a2) |
| 41 | { |
| 42 | vnet_hw_if_rxq_poll_vector_t *pv1 = a1; |
| 43 | vnet_hw_if_rxq_poll_vector_t *pv2 = a2; |
| 44 | |
| 45 | if (pv1->dev_instance > pv2->dev_instance) |
| 46 | return 1; |
| 47 | else if (pv1->dev_instance < pv2->dev_instance) |
| 48 | return -1; |
| 49 | else if (pv1->queue_id > pv2->queue_id) |
| 50 | return 1; |
| 51 | else if (pv1->queue_id < pv2->queue_id) |
| 52 | return -1; |
| 53 | else |
| 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | void |
| 58 | vnet_hw_if_update_runtime_data (vnet_main_t *vnm, u32 hw_if_index) |
| 59 | { |
| 60 | vlib_main_t *vm = vlib_get_main (); |
| 61 | vnet_interface_main_t *im = &vnm->interface_main; |
| 62 | vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); |
| 63 | u32 node_index = hi->input_node_index; |
| 64 | vnet_hw_if_rx_queue_t *rxq; |
| 65 | vnet_hw_if_rxq_poll_vector_t *pv, **d = 0; |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 66 | vnet_hw_if_output_node_runtime_t *new_out_runtimes = 0; |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 67 | vlib_node_state_t *per_thread_node_state = 0; |
Damjan Marion | 6ffb7c6 | 2021-03-26 13:06:13 +0100 | [diff] [blame] | 68 | u32 n_threads = vlib_get_n_threads (); |
Florin Coras | 982e44f | 2021-03-19 13:12:41 -0700 | [diff] [blame] | 69 | u16 *per_thread_node_adaptive = 0; |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 70 | int something_changed_on_rx = 0; |
| 71 | int something_changed_on_tx = 0; |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 72 | clib_bitmap_t *pending_int = 0; |
| 73 | int last_int = -1; |
| 74 | |
| 75 | log_debug ("update node '%U' triggered by interface %v", |
| 76 | format_vlib_node_name, vm, node_index, hi->name); |
| 77 | |
| 78 | vec_validate (d, n_threads - 1); |
| 79 | vec_validate_init_empty (per_thread_node_state, n_threads - 1, |
| 80 | VLIB_NODE_STATE_DISABLED); |
Florin Coras | 982e44f | 2021-03-19 13:12:41 -0700 | [diff] [blame] | 81 | vec_validate_init_empty (per_thread_node_adaptive, n_threads - 1, 0); |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 82 | |
| 83 | /* find out desired node state on each thread */ |
| 84 | pool_foreach (rxq, im->hw_if_rx_queues) |
| 85 | { |
| 86 | u32 ti = rxq->thread_index; |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 87 | vnet_hw_interface_t *rxq_hi; |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 88 | |
| 89 | ASSERT (rxq->mode != VNET_HW_IF_RX_MODE_UNKNOWN); |
| 90 | ASSERT (rxq->mode != VNET_HW_IF_RX_MODE_DEFAULT); |
| 91 | |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 92 | rxq_hi = vnet_get_hw_interface (vnm, rxq->hw_if_index); |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 93 | |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 94 | if (rxq_hi->input_node_index != node_index) |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 95 | continue; |
| 96 | |
| 97 | if (rxq->mode == VNET_HW_IF_RX_MODE_POLLING) |
Florin Coras | 982e44f | 2021-03-19 13:12:41 -0700 | [diff] [blame] | 98 | { |
| 99 | per_thread_node_state[ti] = VLIB_NODE_STATE_POLLING; |
| 100 | per_thread_node_adaptive[ti] = 0; |
| 101 | } |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 102 | |
| 103 | if (per_thread_node_state[ti] == VLIB_NODE_STATE_POLLING) |
| 104 | continue; |
| 105 | |
| 106 | if (rxq->mode == VNET_HW_IF_RX_MODE_INTERRUPT || |
| 107 | rxq->mode == VNET_HW_IF_RX_MODE_ADAPTIVE) |
| 108 | per_thread_node_state[ti] = VLIB_NODE_STATE_INTERRUPT; |
Florin Coras | 982e44f | 2021-03-19 13:12:41 -0700 | [diff] [blame] | 109 | |
| 110 | if (rxq->mode == VNET_HW_IF_RX_MODE_ADAPTIVE) |
| 111 | per_thread_node_adaptive[ti] = 1; |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | /* construct per-thread polling vectors */ |
| 115 | pool_foreach (rxq, im->hw_if_rx_queues) |
| 116 | { |
| 117 | u32 ti = rxq->thread_index; |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 118 | vnet_hw_interface_t *rxq_hi; |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 119 | |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 120 | rxq_hi = vnet_get_hw_interface (vnm, rxq->hw_if_index); |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 121 | |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 122 | if (rxq_hi->input_node_index != node_index) |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 123 | continue; |
| 124 | |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 125 | if (rxq->mode == VNET_HW_IF_RX_MODE_INTERRUPT || |
| 126 | rxq->mode == VNET_HW_IF_RX_MODE_ADAPTIVE) |
| 127 | last_int = clib_max (last_int, rxq - im->hw_if_rx_queues); |
| 128 | |
| 129 | if (per_thread_node_state[ti] != VLIB_NODE_STATE_POLLING) |
| 130 | continue; |
| 131 | |
| 132 | vec_add2_aligned (d[ti], pv, 1, CLIB_CACHE_LINE_BYTES); |
| 133 | pv->dev_instance = rxq->dev_instance; |
| 134 | pv->queue_id = rxq->queue_id; |
| 135 | } |
| 136 | |
| 137 | /* sort poll vectors and compare them with active ones to avoid |
| 138 | * unnecesary barrier */ |
| 139 | for (int i = 0; i < n_threads; i++) |
| 140 | { |
Damjan Marion | 6ffb7c6 | 2021-03-26 13:06:13 +0100 | [diff] [blame] | 141 | vlib_main_t *ovm = vlib_get_main_by_index (i); |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 142 | vlib_node_state_t old_state; |
| 143 | vec_sort_with_function (d[i], poll_data_sort); |
| 144 | |
Damjan Marion | 6ffb7c6 | 2021-03-26 13:06:13 +0100 | [diff] [blame] | 145 | old_state = vlib_node_get_state (ovm, node_index); |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 146 | if (per_thread_node_state[i] != old_state) |
| 147 | { |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 148 | something_changed_on_rx = 1; |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 149 | log_debug ("state changed for node %U on thread %u from %s to %s", |
| 150 | format_vlib_node_name, vm, node_index, i, |
| 151 | node_state_str[old_state], |
| 152 | node_state_str[per_thread_node_state[i]]); |
| 153 | } |
| 154 | |
| 155 | /* check if something changed */ |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 156 | if (something_changed_on_rx == 0) |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 157 | { |
| 158 | vnet_hw_if_rx_node_runtime_t *rt; |
Damjan Marion | 6ffb7c6 | 2021-03-26 13:06:13 +0100 | [diff] [blame] | 159 | rt = vlib_node_get_runtime_data (ovm, node_index); |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 160 | if (vec_len (rt->rxq_poll_vector) != vec_len (d[i])) |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 161 | something_changed_on_rx = 1; |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 162 | else if (memcmp (d[i], rt->rxq_poll_vector, |
| 163 | vec_len (d[i]) * sizeof (*d))) |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 164 | something_changed_on_rx = 1; |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 165 | if (clib_interrupt_get_n_int (rt->rxq_interrupts) != last_int + 1) |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 166 | something_changed_on_rx = 1; |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 167 | } |
| 168 | } |
| 169 | |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 170 | new_out_runtimes = |
| 171 | vec_dup_aligned (hi->output_node_thread_runtimes, CLIB_CACHE_LINE_BYTES); |
| 172 | vec_validate_aligned (new_out_runtimes, n_threads, CLIB_CACHE_LINE_BYTES); |
| 173 | |
| 174 | for (int i = 0; i < vec_len (hi->tx_queue_indices); i++) |
| 175 | { |
| 176 | u32 thread_index; |
| 177 | u32 queue_index = hi->tx_queue_indices[i]; |
| 178 | vnet_hw_if_tx_queue_t *txq = vnet_hw_if_get_tx_queue (vnm, queue_index); |
| 179 | |
| 180 | clib_bitmap_foreach (thread_index, txq->threads) |
| 181 | { |
| 182 | vnet_hw_if_output_node_runtime_t *rt; |
| 183 | rt = vec_elt_at_index (new_out_runtimes, thread_index); |
| 184 | if ((rt->frame.queue_id != txq->queue_id) || |
| 185 | (rt->frame.shared_queue != txq->shared_queue)) |
| 186 | { |
| 187 | log_debug ("tx queue data changed for interface %v, thread %u " |
| 188 | "(queue_id %u -> %u, shared_queue %u -> %u)", |
| 189 | hi->name, thread_index, rt->frame.queue_id, |
| 190 | txq->queue_id, rt->frame.shared_queue, |
| 191 | txq->shared_queue); |
| 192 | something_changed_on_tx = 1; |
| 193 | } |
| 194 | } |
| 195 | } |
| 196 | |
| 197 | if (something_changed_on_rx || something_changed_on_tx) |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 198 | { |
| 199 | int with_barrier; |
| 200 | |
| 201 | if (vlib_worker_thread_barrier_held ()) |
| 202 | { |
| 203 | with_barrier = 0; |
| 204 | log_debug ("%s", "already running under the barrier"); |
| 205 | } |
| 206 | else |
| 207 | with_barrier = 1; |
| 208 | |
| 209 | if (with_barrier) |
| 210 | vlib_worker_thread_barrier_sync (vm); |
| 211 | |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 212 | if (something_changed_on_rx) |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 213 | { |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 214 | for (int i = 0; i < n_threads; i++) |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 215 | { |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 216 | vlib_main_t *vm = vlib_get_main_by_index (i); |
| 217 | vnet_hw_if_rx_node_runtime_t *rt; |
| 218 | rt = vlib_node_get_runtime_data (vm, node_index); |
| 219 | pv = rt->rxq_poll_vector; |
| 220 | rt->rxq_poll_vector = d[i]; |
| 221 | d[i] = pv; |
| 222 | |
| 223 | if (rt->rxq_interrupts) |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 224 | { |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 225 | void *in = rt->rxq_interrupts; |
| 226 | int int_num = -1; |
| 227 | while ((int_num = clib_interrupt_get_next (in, int_num)) != |
| 228 | -1) |
| 229 | { |
| 230 | clib_interrupt_clear (in, int_num); |
| 231 | pending_int = clib_bitmap_set (pending_int, int_num, 1); |
| 232 | last_int = clib_max (last_int, int_num); |
| 233 | } |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 234 | } |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 235 | |
| 236 | vlib_node_set_state (vm, node_index, per_thread_node_state[i]); |
| 237 | vlib_node_set_flag (vm, node_index, VLIB_NODE_FLAG_ADAPTIVE_MODE, |
| 238 | per_thread_node_adaptive[i]); |
| 239 | |
| 240 | if (last_int >= 0) |
| 241 | clib_interrupt_resize (&rt->rxq_interrupts, last_int + 1); |
| 242 | else |
| 243 | clib_interrupt_free (&rt->rxq_interrupts); |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 244 | } |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 245 | } |
| 246 | if (something_changed_on_tx) |
| 247 | { |
| 248 | vnet_hw_if_output_node_runtime_t *t; |
| 249 | t = hi->output_node_thread_runtimes; |
| 250 | hi->output_node_thread_runtimes = new_out_runtimes; |
| 251 | new_out_runtimes = t; |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | if (with_barrier) |
| 255 | vlib_worker_thread_barrier_release (vm); |
| 256 | } |
| 257 | else |
| 258 | log_debug ("skipping update of node '%U', no changes detected", |
| 259 | format_vlib_node_name, vm, node_index); |
| 260 | |
| 261 | if (pending_int) |
| 262 | { |
| 263 | int i; |
| 264 | clib_bitmap_foreach (i, pending_int) |
| 265 | { |
| 266 | vnet_hw_if_rx_queue_set_int_pending (vnm, i); |
| 267 | } |
| 268 | clib_bitmap_free (pending_int); |
| 269 | } |
| 270 | |
| 271 | for (int i = 0; i < n_threads; i++) |
| 272 | vec_free (d[i]); |
| 273 | |
| 274 | vec_free (d); |
| 275 | vec_free (per_thread_node_state); |
Florin Coras | 982e44f | 2021-03-19 13:12:41 -0700 | [diff] [blame] | 276 | vec_free (per_thread_node_adaptive); |
Damjan Marion | 1bd6cbb | 2021-04-15 13:12:51 +0200 | [diff] [blame^] | 277 | vec_free (new_out_runtimes); |
Damjan Marion | 9410053 | 2020-11-06 23:25:57 +0100 | [diff] [blame] | 278 | } |