Home
last modified time | relevance | path

Searched refs:lpm_config (Results 1 – 3 of 3) sorted by relevance

/dpdk/lib/table/
H A Drte_table_lpm.c56 struct rte_lpm_config lpm_config; in rte_table_lpm_create() local
103 lpm_config.max_rules = p->n_rules; in rte_table_lpm_create()
104 lpm_config.number_tbl8s = p->number_tbl8s; in rte_table_lpm_create()
105 lpm_config.flags = p->flags; in rte_table_lpm_create()
106 lpm->lpm = rte_lpm_create(p->name, socket_id, &lpm_config); in rte_table_lpm_create()
/dpdk/examples/ip_fragmentation/
H A Dmain.c784 struct rte_lpm_config lpm_config; in init_mem() local
832 lpm_config.max_rules = LPM_MAX_RULES; in init_mem()
833 lpm_config.number_tbl8s = 256; in init_mem()
834 lpm_config.flags = 0; in init_mem()
836 lpm = rte_lpm_create(buf, socket, &lpm_config); in init_mem()
/dpdk/examples/ip_reassembly/
H A Dmain.c909 struct rte_lpm_config lpm_config; in init_mem() local
929 lpm_config.max_rules = LPM_MAX_RULES; in init_mem()
930 lpm_config.number_tbl8s = 256; in init_mem()
931 lpm_config.flags = 0; in init_mem()
933 lpm = rte_lpm_create(buf, socket, &lpm_config); in init_mem()