diff options
author | Klement Sekera <ksekera@cisco.com> | 2021-03-03 22:14:55 +0100 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2021-03-07 17:57:32 +0000 |
commit | 76401c5767ecdf701f4c77beee0b721c485321d5 (patch) | |
tree | 0c0c80f4362aabdb6a3565f77e6395724a6cb2fc /src/plugins/nat/nat44-ed/nat44_ed_handoff.c | |
parent | e79bbe918b2afa12943ea99b8323dd8f3aef73ab (diff) |
nat: fix worker selection
Use correct ports from SVR. Perform lookup of existing session for all
cases to pick any created bypasses and derive correct thread indexes.
Type: fix
Change-Id: I1e3814c9e13cd4d9b8d65f514f7e9ab42df3c22e
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Diffstat (limited to 'src/plugins/nat/nat44-ed/nat44_ed_handoff.c')
-rw-r--r-- | src/plugins/nat/nat44-ed/nat44_ed_handoff.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/nat/nat44-ed/nat44_ed_handoff.c b/src/plugins/nat/nat44-ed/nat44_ed_handoff.c index 6715ce2f2c4..e286df93a6e 100644 --- a/src/plugins/nat/nat44-ed/nat44_ed_handoff.c +++ b/src/plugins/nat/nat44-ed/nat44_ed_handoff.c @@ -157,10 +157,10 @@ nat44_worker_handoff_fn_inline (vlib_main_t * vm, if (is_in2out) { - ti[0] = sm->worker_in2out_cb (ip0, rx_fib_index0, is_output); - ti[1] = sm->worker_in2out_cb (ip1, rx_fib_index1, is_output); - ti[2] = sm->worker_in2out_cb (ip2, rx_fib_index2, is_output); - ti[3] = sm->worker_in2out_cb (ip3, rx_fib_index3, is_output); + ti[0] = sm->worker_in2out_cb (b[0], ip0, rx_fib_index0, is_output); + ti[1] = sm->worker_in2out_cb (b[1], ip1, rx_fib_index1, is_output); + ti[2] = sm->worker_in2out_cb (b[2], ip2, rx_fib_index2, is_output); + ti[3] = sm->worker_in2out_cb (b[3], ip3, rx_fib_index3, is_output); } else { @@ -218,7 +218,7 @@ nat44_worker_handoff_fn_inline (vlib_main_t * vm, if (is_in2out) { - ti[0] = sm->worker_in2out_cb (ip0, rx_fib_index0, is_output); + ti[0] = sm->worker_in2out_cb (b[0], ip0, rx_fib_index0, is_output); } else { |