diff options
author | Benoît Ganne <bganne@cisco.com> | 2019-11-05 17:46:17 +0100 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-11-15 07:36:27 +0000 |
commit | 103669de7d9a706c87a07dc6d084e2c7b4af7d2a (patch) | |
tree | 53079a85e8136c2c85d0c9264f9c17902e7831f4 | |
parent | dea724f7968ab56f188d8389691d4966a7969468 (diff) |
rdma: fix next node rx redirect
Type: fix
Change-Id: I694db40c3a0361852d01b84c7a45e32e39e9f4af
Signed-off-by: Benoît Ganne <bganne@cisco.com>
(cherry picked from commit 972d71da8683259c238b3b0e69665655f2d35b70)
-rw-r--r-- | src/plugins/rdma/device.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/plugins/rdma/device.c b/src/plugins/rdma/device.c index 6c48a97f5bf..23887eaf253 100644 --- a/src/plugins/rdma/device.c +++ b/src/plugins/rdma/device.c @@ -749,15 +749,9 @@ rdma_set_interface_next_node (vnet_main_t * vnm, u32 hw_if_index, rdma_main_t *rm = &rdma_main; vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index); rdma_device_t *rd = pool_elt_at_index (rm->devices, hw->dev_instance); - - /* Shut off redirection */ - if (node_index == ~0) - { - rd->per_interface_next_index = node_index; - return; - } - rd->per_interface_next_index = + ~0 == + node_index ? VNET_DEVICE_INPUT_NEXT_ETHERNET_INPUT : vlib_node_add_next (vlib_get_main (), rdma_input_node.index, node_index); } |