X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fplugins%2Fnat%2Fin2out_ed.c;h=f0bbe0b656ed8cd386330b219beb44bbcc629a04;hb=6bb080f1e;hp=d78e552d3ba758245b97d4820af14313490dad8a;hpb=2f1563129ad8d34d365f5ef8620ff76ff7b08e70;p=vpp.git diff --git a/src/plugins/nat/in2out_ed.c b/src/plugins/nat/in2out_ed.c index d78e552d3ba..f0bbe0b656e 100644 --- a/src/plugins/nat/in2out_ed.c +++ b/src/plugins/nat/in2out_ed.c @@ -318,7 +318,9 @@ slow_path_ed (snat_main_t * sm, } } - if (PREDICT_FALSE (nat44_maximum_sessions_exceeded (sm, thread_index))) + // TODO: based on fib index do a lookup + if (PREDICT_FALSE + (nat44_ed_maximum_sessions_exceeded (sm, rx_fib_index, thread_index))) { if (!nat_global_lru_free_one (sm, thread_index, now)) { @@ -812,7 +814,9 @@ nat44_ed_in2out_unknown_proto (snat_main_t * sm, } else { - if (PREDICT_FALSE (nat44_maximum_sessions_exceeded (sm, thread_index))) + if (PREDICT_FALSE + (nat44_ed_maximum_sessions_exceeded + (sm, rx_fib_index, thread_index))) { b->error = node->errors[NAT_IN2OUT_ED_ERROR_MAX_SESSIONS_EXCEEDED]; nat_ipfix_logging_max_sessions (thread_index, sm->max_translations);