X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=VNFs%2FDPPD-PROX%2Fprox_lua_types.c;h=1b2373565c14816cae8a0fad5df539660b91ee20;hb=b8f652cf6bd2e8b241a02cb2e455086979abbe15;hp=3ef3d47251691246004f439195c209bf7a8505bc;hpb=5d3bcf89c23b72fcdc0c32306a843bb3a0f64dcf;p=samplevnf.git diff --git a/VNFs/DPPD-PROX/prox_lua_types.c b/VNFs/DPPD-PROX/prox_lua_types.c index 3ef3d472..1b237356 100644 --- a/VNFs/DPPD-PROX/prox_lua_types.c +++ b/VNFs/DPPD-PROX/prox_lua_types.c @@ -418,7 +418,7 @@ int lua_to_next_hop(struct lua_State *L, enum lua_place from, const char *name, uint32_t next_hop_index; uint32_t port_id; uint32_t ip; - uint32_t mpls; + uint32_t mpls = 0; prox_rte_ether_addr mac; int pop; @@ -437,11 +437,11 @@ int lua_to_next_hop(struct lua_State *L, enum lua_place from, const char *name, while (lua_next(L, -2)) { if (lua_to_int(L, TABLE, "id", &next_hop_index) || lua_to_int(L, TABLE, "port_id", &port_id) || - lua_to_ip(L, TABLE, "ip", &ip) || - lua_to_mac(L, TABLE, "mac", &mac) || - lua_to_int(L, TABLE, "mpls", &mpls)) + lua_to_ip(L, TABLE, "ip", &ip)) return -1; + lua_to_mac(L, TABLE, "mac", &mac); + lua_to_int(L, TABLE, "mpls", &mpls); PROX_PANIC(port_id >= PROX_MAX_PORTS, "Port id too high (only supporting %d ports)\n", PROX_MAX_PORTS); PROX_PANIC(next_hop_index >= MAX_HOP_INDEX, "Next-hop to high (only supporting %d next hops)\n", MAX_HOP_INDEX); @@ -504,6 +504,7 @@ int lua_to_next_hop6(struct lua_State *L, enum lua_place from, const char *name, return 0; } +#define MAX_NEW_RULES 128 int lua_to_routes4(struct lua_State *L, enum lua_place from, const char *name, uint8_t socket, struct lpm4 *lpm) { struct ip4_subnet dst; @@ -514,11 +515,12 @@ int lua_to_routes4(struct lua_State *L, enum lua_place from, const char *name, u char lpm_name[64]; int ret; int pop; + static int count = 1; if ((pop = lua_getfrom(L, from, name)) < 0) return -1; - snprintf(lpm_name, sizeof(lpm_name), "IPv4_lpm_s%u", socket); + snprintf(lpm_name, sizeof(lpm_name), "IPv4_lpm_s%u_%d", socket, count++); if (!lua_istable(L, -1)) { set_err("Data is not a table\n"); @@ -531,12 +533,12 @@ int lua_to_routes4(struct lua_State *L, enum lua_place from, const char *name, u lua_pop(L, 1); #if RTE_VERSION >= RTE_VERSION_NUM(16,4,0,1) struct rte_lpm_config conf; - conf.max_rules = 2 * n_tot_rules; + conf.max_rules = 2 * n_tot_rules + MAX_NEW_RULES; conf.number_tbl8s = 256; conf.flags = 0; new_lpm = rte_lpm_create(lpm_name, socket, &conf); #else - new_lpm = rte_lpm_create(lpm_name, socket, 2 * n_tot_rules, 0); + new_lpm = rte_lpm_create(lpm_name, socket, 2 * n_tot_rules + MAX_NEW_RULES, 0); #endif PROX_PANIC(NULL == new_lpm, "Failed to allocate lpm\n");