Symbol: tcfg
sys/dev/bxe/bxe.c
9942
struct tstorm_eth_function_common_config *tcfg,
sys/dev/bxe/bxe.c
9951
ecore_storm_memset_struct(sc, addr, size, (uint32_t *)tcfg);
sys/dev/bxe/bxe.c
9958
struct tstorm_eth_function_common_config tcfg = { 0 };
sys/dev/bxe/bxe.c
9961
storm_memset_func_cfg(sc, &tcfg, p->func_id);
sys/netpfil/ipfw/ip_fw_nat.c
496
struct cfg_nat *ptr, *tcfg;
sys/netpfil/ipfw/ip_fw_nat.c
546
tcfg = NULL;
sys/netpfil/ipfw/ip_fw_nat.c
548
tcfg = lookup_nat_name(&chain->nat, ucfg->name);
sys/netpfil/ipfw/ip_fw_nat.c
550
if (tcfg != NULL)
sys/netpfil/ipfw/ip_fw_nat.c
551
LIST_REMOVE(tcfg, _next);
sys/netpfil/ipfw/ip_fw_nat.c
558
if (tcfg != NULL)
sys/netpfil/ipfw/ip_fw_table.c
1998
find_table_algo(struct tables_config *tcfg, struct tid_info *ti, char *name)
sys/netpfil/ipfw/ip_fw_table.c
2008
if (ti->atype > tcfg->algo_count)
sys/netpfil/ipfw/ip_fw_table.c
2010
return (tcfg->algo[ti->atype]);
sys/netpfil/ipfw/ip_fw_table.c
2015
return (tcfg->def_algo[ti->type]);
sys/netpfil/ipfw/ip_fw_table.c
2020
for (i = 1; i <= tcfg->algo_count; i++) {
sys/netpfil/ipfw/ip_fw_table.c
2021
ta = tcfg->algo[i];
sys/netpfil/ipfw/ip_fw_table.c
2055
struct tables_config *tcfg;
sys/netpfil/ipfw/ip_fw_table.c
2073
tcfg = CHAIN_TO_TCFG(ch);
sys/netpfil/ipfw/ip_fw_table.c
2075
KASSERT(tcfg->algo_count < 255, ("Increase algo array size"));
sys/netpfil/ipfw/ip_fw_table.c
2077
tcfg->algo[++tcfg->algo_count] = ta_new;
sys/netpfil/ipfw/ip_fw_table.c
2078
ta_new->idx = tcfg->algo_count;
sys/netpfil/ipfw/ip_fw_table.c
2082
tcfg->def_algo[ta_new->type] == NULL)
sys/netpfil/ipfw/ip_fw_table.c
2083
tcfg->def_algo[ta_new->type] = ta_new;
sys/netpfil/ipfw/ip_fw_table.c
2098
struct tables_config *tcfg;
sys/netpfil/ipfw/ip_fw_table.c
2101
tcfg = CHAIN_TO_TCFG(ch);
sys/netpfil/ipfw/ip_fw_table.c
2103
KASSERT(idx <= tcfg->algo_count, ("algo idx %d out of range 1..%d",
sys/netpfil/ipfw/ip_fw_table.c
2104
idx, tcfg->algo_count));
sys/netpfil/ipfw/ip_fw_table.c
2106
ta = tcfg->algo[idx];
sys/netpfil/ipfw/ip_fw_table.c
2109
if (tcfg->def_algo[ta->type] == ta)
sys/netpfil/ipfw/ip_fw_table.c
2110
tcfg->def_algo[ta->type] = NULL;
sys/netpfil/ipfw/ip_fw_table.c
2128
struct tables_config *tcfg;
sys/netpfil/ipfw/ip_fw_table.c
2140
tcfg = CHAIN_TO_TCFG(ch);
sys/netpfil/ipfw/ip_fw_table.c
2141
count = tcfg->algo_count;
sys/netpfil/ipfw/ip_fw_table.c
2158
ta = tcfg->algo[n];
sys/netpfil/ipfw/ip_fw_table.c
2789
struct tables_config *tcfg;
sys/netpfil/ipfw/ip_fw_table.c
2795
tcfg = malloc(sizeof(struct tables_config), M_IPFW, M_WAITOK | M_ZERO);
sys/netpfil/ipfw/ip_fw_table.c
2796
tcfg->namehash = ipfw_objhash_create(V_fw_tables_max,
sys/netpfil/ipfw/ip_fw_table.c
2798
ch->tblcfg = tcfg;
sys/netpfil/ipfw/ip_fw_table_value.c
180
struct tables_config *tcfg;
sys/netpfil/ipfw/ip_fw_table_value.c
195
tcfg = CHAIN_TO_TCFG(ch);
sys/netpfil/ipfw/ip_fw_table_value.c
197
val_size = tcfg->val_size * 2;
sys/netpfil/ipfw/ip_fw_table_value.c
210
if (tcfg->val_size >= val_size)
sys/netpfil/ipfw/ip_fw_table_value.c
217
memcpy(valuestate, pval, sizeof(struct table_value) * tcfg->val_size);
sys/netpfil/ipfw/ip_fw_table_value.c
227
val_size_old = tcfg->val_size;
sys/netpfil/ipfw/ip_fw_table_value.c
228
tcfg->val_size = val_size;
sys/netpfil/ipfw/ip_fw_table_value.c
654
struct tables_config *tcfg;
sys/netpfil/ipfw/ip_fw_table_value.c
659
tcfg = ch->tblcfg;
sys/netpfil/ipfw/ip_fw_table_value.c
661
tcfg->val_size = VALDATA_START_SIZE;
sys/netpfil/ipfw/ip_fw_table_value.c
662
tcfg->valhash = ipfw_objhash_create(tcfg->val_size, VALDATA_HASH_SIZE);
sys/netpfil/ipfw/ip_fw_table_value.c
663
ipfw_objhash_set_funcs(tcfg->valhash, hash_table_value,