X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fplugins%2Fmap%2Fmap.c;h=2f13336b568a273c7ec8223daf30049f5c961b32;hb=refs%2Fchanges%2F08%2F17808%2F2;hp=47af8947fb9d2933d88c6995cb6b17c7686301a0;hpb=49ff6d1e16f24272eafe4044186aae32f0e7054d;p=vpp.git diff --git a/src/plugins/map/map.c b/src/plugins/map/map.c index 47af8947fb9..2f13336b568 100644 --- a/src/plugins/map/map.c +++ b/src/plugins/map/map.c @@ -1048,7 +1048,7 @@ show_map_stats_command_fn (vlib_main_t * vm, unformat_input_t * input, map_main_t *mm = &map_main; map_domain_t *d; int domains = 0, rules = 0, domaincount = 0, rulecount = 0; - if (pool_elts (mm->domains) <= 1) + if (pool_elts (mm->domains) == 0) { vlib_cli_output (vm, "No MAP domains are configured..."); return 0; @@ -2245,12 +2245,6 @@ map_init (vlib_main_t * vm) fib_node_register_type (FIB_NODE_TYPE_MAP_E, &map_vft); #endif - /* Create empty domain that's used in case of error */ - map_domain_t *d; - pool_get_aligned (mm->domains, d, CLIB_CACHE_LINE_BYTES); - memset (d, 0, sizeof (*d)); - d->ip6_src_len = 64; - /* LPM lookup tables */ mm->ip4_prefix_tbl = lpm_table_init (LPM_TYPE_KEY32); mm->ip6_prefix_tbl = lpm_table_init (LPM_TYPE_KEY128);