From 9902fcd3e06dae893264f7681e82a2b73141546c Mon Sep 17 00:00:00 2001 From: Matus Fabian Date: Wed, 21 Dec 2016 23:58:46 -0800 Subject: SNAT: Remove the oldest translation fix (VPP-568) Fixed bug and add test. Change-Id: Ibe70dfc81e6c264223050d316cf6a2a3a0e1524e Signed-off-by: Matus Fabian --- plugins/snat-plugin/snat/in2out.c | 2 +- plugins/snat-plugin/snat/snat.c | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'plugins') diff --git a/plugins/snat-plugin/snat/in2out.c b/plugins/snat-plugin/snat/in2out.c index d7b647ef..c78fdd76 100644 --- a/plugins/snat-plugin/snat/in2out.c +++ b/plugins/snat-plugin/snat/in2out.c @@ -203,7 +203,7 @@ static u32 slow_path (snat_main_t *sm, vlib_buffer_t *b0, /* Get the session */ s = pool_elt_at_index (sm->per_thread_data[cpu_index].sessions, session_index); - } while (!snat_is_session_static (s)); + } while (snat_is_session_static (s)); /* Remove in2out, out2in keys */ kv0.key = s->in2out.as_u64; diff --git a/plugins/snat-plugin/snat/snat.c b/plugins/snat-plugin/snat/snat.c index ad350d6a..b3b2097a 100644 --- a/plugins/snat-plugin/snat/snat.c +++ b/plugins/snat-plugin/snat/snat.c @@ -974,13 +974,13 @@ vl_api_snat_show_config_t_handler REPLY_MACRO2(VL_API_SNAT_SHOW_CONFIG_REPLY, ({ - rmp->translation_buckets = htons (sm->translation_buckets); - rmp->translation_memory_size = htons (sm->translation_memory_size); - rmp->user_buckets = htons (sm->user_buckets); - rmp->user_memory_size = htons (sm->user_memory_size); - rmp->max_translations_per_user = htons (sm->max_translations_per_user); - rmp->outside_vrf_id = htons (sm->outside_vrf_id); - rmp->inside_vrf_id = htons (sm->inside_vrf_id); + rmp->translation_buckets = htonl (sm->translation_buckets); + rmp->translation_memory_size = htonl (sm->translation_memory_size); + rmp->user_buckets = htonl (sm->user_buckets); + rmp->user_memory_size = htonl (sm->user_memory_size); + rmp->max_translations_per_user = htonl (sm->max_translations_per_user); + rmp->outside_vrf_id = htonl (sm->outside_vrf_id); + rmp->inside_vrf_id = htonl (sm->inside_vrf_id); rmp->static_mapping_only = sm->static_mapping_only; rmp->static_mapping_connection_tracking = sm->static_mapping_connection_tracking; -- cgit 1.2.3-korg