diff options
author | Florin Coras <fcoras@cisco.com> | 2017-11-29 00:07:11 -0500 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-11-29 11:59:46 +0000 |
commit | 93e658058033e251b98d18a1f0717a07a85adfc2 (patch) | |
tree | 469bda92e663851b7925aa60fd8677d38a5e6a86 /src/vnet/session/session_node.c | |
parent | c6fb36fc2eb43c6158b390918d295f2c8eba737b (diff) |
session: fix preallocation of local endpoint table
Change-Id: I67a73e31bda9e497859297fcc1765e880572884a
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/session/session_node.c')
-rw-r--r-- | src/vnet/session/session_node.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vnet/session/session_node.c b/src/vnet/session/session_node.c index f647360ea5b..08baa447864 100644 --- a/src/vnet/session/session_node.c +++ b/src/vnet/session/session_node.c @@ -629,7 +629,10 @@ skip_dequeue: /* Can retransmit for closed sessions but can't do anything if * session is not ready or closed */ if (PREDICT_FALSE (s0->session_state < SESSION_STATE_READY)) - continue; + { + vec_add1 (smm->pending_event_vector[my_thread_index], *e0); + continue; + } /* Spray packets in per session type frames, since they go to * different nodes */ rv = (smm->session_tx_fns[s0->session_type]) (vm, node, smm, e0, s0, |