diff options
author | Damjan Marion <damarion@cisco.com> | 2019-02-02 00:15:27 +0100 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-02-02 00:45:09 +0000 |
commit | 652d2e139443cea073da9b7bef8ee21e41a14111 (patch) | |
tree | dc477b1151b19b636e01bfc207258e0555dc9b2f /src/plugins/ixge | |
parent | 9bb20b310280a3c9604f9dd24fbb6757d7f9ca65 (diff) |
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 <damarion@cisco.com>
Diffstat (limited to 'src/plugins/ixge')
-rw-r--r-- | src/plugins/ixge/ixge.c | 4 |
1 files changed, 1 insertions, 3 deletions
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; |