From 652d2e139443cea073da9b7bef8ee21e41a14111 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Sat, 2 Feb 2019 00:15:27 +0100 Subject: Deprecate old mutliarch code, phase 1 It is causing compilation sloness with gcc-7 so removing it before it was originally planned. So far macros are left in the tree so we can know which nodes to convert to new multiarch code. Change-Id: Idb14622ca61fdce1eba59723b20d98715b7971e6 Signed-off-by: Damjan Marion --- src/plugins/ixge/ixge.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/plugins/ixge/ixge.c') diff --git a/src/plugins/ixge/ixge.c b/src/plugins/ixge/ixge.c index a3c0c978ab3..8faa9a91ca2 100644 --- a/src/plugins/ixge/ixge.c +++ b/src/plugins/ixge/ixge.c @@ -2238,8 +2238,6 @@ VLIB_REGISTER_NODE (ixge_input_node, static) = { }, }; -VLIB_NODE_FUNCTION_MULTIARCH_CLONE (ixge_input) -CLIB_MULTIARCH_SELECT_FN (ixge_input) /* *INDENT-ON* */ static u8 * @@ -2851,7 +2849,7 @@ ixge_pci_init (vlib_main_t * vm, vlib_pci_dev_handle_t h) if (vec_len (xm->devices) == 1) { - ixge_input_node.function = ixge_input_multiarch_select (); + ixge_input_node.function = ixge_input; } xd->pci_dev_handle = h; -- cgit 1.2.3-korg