diff options
author | Klement Sekera <ksekera@cisco.com> | 2019-10-07 09:48:06 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-10-07 12:04:22 +0000 |
commit | 364b20a6ad1676741cfc360bdaec32b199cf49d6 (patch) | |
tree | fb691f51bd02104febbdbd27fcc3b140bd4994e4 | |
parent | 91f68837fadfa343ca2add4d3f307dda0b0c8c27 (diff) |
ip: reassembly add missing goto
Type: fix
Fixes: de34c35fc73226943538149fae9dbc5cfbdc6e75
Change-Id: I256ef153b3b27a1f7ab7daa45015a2ec4bc84076
Signed-off-by: Klement Sekera <ksekera@cisco.com>
-rw-r--r-- | src/vnet/ip/reass/ip6_sv_reass.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/ip/reass/ip6_sv_reass.c b/src/vnet/ip/reass/ip6_sv_reass.c index ce6f22cb361..0f5e0e29975 100644 --- a/src/vnet/ip/reass/ip6_sv_reass.c +++ b/src/vnet/ip/reass/ip6_sv_reass.c @@ -589,6 +589,7 @@ ip6_sv_reassembly_inline (vlib_main_t * vm, next0 = IP6_SV_REASSEMBLY_NEXT_HANDOFF; vnet_buffer (b0)->ip.reass.owner_thread_index = kv.v.thread_index; + goto packet_enqueue; } if (!reass) |