diff options
author | Mohammed Hawari <mohammed@hawari.fr> | 2020-12-11 19:36:37 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-01-22 09:06:47 +0000 |
commit | 9fecbe1841dbdb6d29fbeae4c3d7ebc728e9692a (patch) | |
tree | ce0db37dd41a08eb1fdf16c1b97ffd6eeebf4864 /src/vnet/interface/rx_queue_funcs.h | |
parent | e848c8fb8c18bd04d7e27b9574fc8163a4c31d85 (diff) |
interface: fix rx-placement api/cli for new infra
Change-Id: Ic977ffe761efc2129c61aec581da5479fe4838da
Type: fix
Signed-off-by: Mohammed Hawari <mohammed@hawari.fr>
Diffstat (limited to 'src/vnet/interface/rx_queue_funcs.h')
-rw-r--r-- | src/vnet/interface/rx_queue_funcs.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/vnet/interface/rx_queue_funcs.h b/src/vnet/interface/rx_queue_funcs.h index 08d717bb68c..f3dd65a39f7 100644 --- a/src/vnet/interface/rx_queue_funcs.h +++ b/src/vnet/interface/rx_queue_funcs.h @@ -90,6 +90,37 @@ vnet_hw_if_get_rx_queue_thread_index (vnet_main_t *vnm, u32 queue_index) return rxq->thread_index; } +static_always_inline int +vnet_hw_if_rxq_cmp_cli_api (vnet_hw_if_rx_queue_t **a, + vnet_hw_if_rx_queue_t **b) +{ + vnet_main_t *vnm; + vnet_hw_interface_t *hif_a; + vnet_hw_interface_t *hif_b; + + if (*a == *b) + return 0; + + if (a[0]->thread_index != b[0]->thread_index) + return 2 * (a[0]->thread_index > b[0]->thread_index) - 1; + + vnm = vnet_get_main (); + hif_a = vnet_get_hw_interface (vnm, a[0]->hw_if_index); + hif_b = vnet_get_hw_interface (vnm, b[0]->hw_if_index); + + if (hif_a->input_node_index != hif_b->input_node_index) + return 2 * (hif_a->input_node_index > hif_b->input_node_index) - 1; + + if (a[0]->hw_if_index != b[0]->hw_if_index) + return 2 * (a[0]->hw_if_index > b[0]->hw_if_index) - 1; + + if (a[0]->queue_id != b[0]->queue_id) + return 2 * (a[0]->queue_id > b[0]->queue_id) - 1; + + ASSERT (0); + return ~0; +} + /* * fd.io coding-style-patch-verification: ON * |