diff options
author | Mohammed Hawari <mohammed@hawari.fr> | 2020-11-25 14:44:37 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-01-21 13:31:40 +0000 |
commit | b80b640a622eab47f59c0a4f666c2bb4961cb365 (patch) | |
tree | 8a3728aca7109bb8e297ff0b9778e5c9f018dc9e /src/plugins/rdma/input.c | |
parent | aea54eb912e628fc58b74f9b8259ebcc4986a9c3 (diff) |
rdma: adapt to new vnet rxq framework
Change-Id: Id539d36635f0ab9625dc2fc73630be39bead09af
Signed-off-by: Mohammed Hawari <mohammed@hawari.fr>
Type: improvement
Diffstat (limited to 'src/plugins/rdma/input.c')
-rw-r--r-- | src/plugins/rdma/input.c | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/src/plugins/rdma/input.c b/src/plugins/rdma/input.c index d7fbe96bc85..4435d59ebfa 100644 --- a/src/plugins/rdma/input.c +++ b/src/plugins/rdma/input.c @@ -20,6 +20,7 @@ #include <vlib/pci/pci.h> #include <vnet/ethernet/ethernet.h> #include <vnet/devices/devices.h> +#include <vnet/interface/rx_queue_funcs.h> #include <rdma/rdma.h> @@ -1019,24 +1020,25 @@ VLIB_NODE_FN (rdma_input_node) (vlib_main_t * vm, { u32 n_rx = 0; rdma_main_t *rm = &rdma_main; - vnet_device_input_runtime_t *rt = (void *) node->runtime_data; - vnet_device_and_queue_t *dq; - - foreach_device_and_queue (dq, rt->devices_and_queues) - { - rdma_device_t *rd; - rd = vec_elt_at_index (rm->devices, dq->dev_instance); - if (PREDICT_TRUE (rd->flags & RDMA_DEVICE_F_ADMIN_UP) == 0) - continue; - - if (PREDICT_TRUE (rd->flags & RDMA_DEVICE_F_ERROR)) - continue; - - if (PREDICT_TRUE (rd->flags & RDMA_DEVICE_F_MLX5DV)) - n_rx += rdma_device_input_inline (vm, node, frame, rd, dq->queue_id, 1); - else - n_rx += rdma_device_input_inline (vm, node, frame, rd, dq->queue_id, 0); - } + vnet_hw_if_rxq_poll_vector_t *pv; + pv = vnet_hw_if_get_rxq_poll_vector (vm, node); + for (int i = 0; i < vec_len (pv); i++) + { + rdma_device_t *rd; + rd = vec_elt_at_index (rm->devices, pv[i].dev_instance); + if (PREDICT_TRUE (rd->flags & RDMA_DEVICE_F_ADMIN_UP) == 0) + continue; + + if (PREDICT_TRUE (rd->flags & RDMA_DEVICE_F_ERROR)) + continue; + + if (PREDICT_TRUE (rd->flags & RDMA_DEVICE_F_MLX5DV)) + n_rx += + rdma_device_input_inline (vm, node, frame, rd, pv[i].queue_id, 1); + else + n_rx += + rdma_device_input_inline (vm, node, frame, rd, pv[i].queue_id, 0); + } return n_rx; } |