diff options
author | John Lo <loj@cisco.com> | 2017-07-12 19:56:45 -0400 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2017-07-13 11:52:24 +0000 |
commit | b2fd6cb586fe69082cc12995910c65843fc5bb4a (patch) | |
tree | 6ff8c02296daf90b786c26685862c5155a2cb5aa /src/vnet/l2/l2_output_classify.c | |
parent | 8ae1873a3f3368a942a1b02e7d4b60b005364a90 (diff) |
Fix crash with worker threads on 4K VXLAN/BD setup (VPP-907)
Cleanup mapping of interface output node for the l2-output node
when interface is configured to L2 or L3 modes. The mapping is
now always done in the main thread as part of API/CLI processing,
instead of initiate mapping in the forwarding path which can be
in the worker threads.
Change-Id: Ia789493e7d9f5c76d68edfaf34db43f3e3f53506
Signed-off-by: John Lo <loj@cisco.com>
(cherry picked from commit bea5ebf205e0bec922bf26c6c1a6a9392b4cad67)
Diffstat (limited to 'src/vnet/l2/l2_output_classify.c')
-rw-r--r-- | src/vnet/l2/l2_output_classify.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/vnet/l2/l2_output_classify.c b/src/vnet/l2/l2_output_classify.c index c1bdaddc06e..869b0656355 100644 --- a/src/vnet/l2/l2_output_classify.c +++ b/src/vnet/l2/l2_output_classify.c @@ -497,9 +497,6 @@ l2_output_classify_init (vlib_main_t * vm) rt->l2cm = cm; rt->vcm = cm->vnet_classify_main; - /* Initialize the output node mapping table */ - l2output_init_output_node_vec (&cm->next_nodes.output_node_index_vec); - return 0; } |