Home
last modified time | relevance | path

Searched refs:jumpstack (Results 1 – 4 of 4) sorted by relevance

/linux/net/netfilter/
H A Dnf_tables_core.c258 struct nft_jumpstack jumpstack[NFT_JUMP_STACK_SIZE]; in nft_do_chain() local
319 jumpstack[stackptr].rule = nft_rule_next(rule); in nft_do_chain()
334 rule = jumpstack[stackptr].rule; in nft_do_chain()
H A Dx_tables.c1207 if (info->jumpstack != NULL) { in xt_free_table_info()
1209 kvfree(info->jumpstack[cpu]); in xt_free_table_info()
1210 kvfree(info->jumpstack); in xt_free_table_info()
1334 i->jumpstack = kvzalloc(size, GFP_KERNEL); in xt_jumpstack_alloc()
1336 i->jumpstack = kzalloc(size, GFP_KERNEL); in xt_jumpstack_alloc()
1337 if (i->jumpstack == NULL) in xt_jumpstack_alloc()
1352 * see the jumpstack setup in ipt_do_table() for more details. in xt_jumpstack_alloc()
1356 i->jumpstack[cpu] = kvmalloc_node(size, GFP_KERNEL, in xt_jumpstack_alloc()
1358 if (i->jumpstack[cpu] == NULL) in xt_jumpstack_alloc()
/linux/net/ipv4/netfilter/
H A Dip_tables.c235 struct ipt_entry *e, **jumpstack; in ipt_do_table() local
263 jumpstack = (struct ipt_entry **)private->jumpstack[cpu]; in ipt_do_table()
265 /* Switch to alternate jumpstack if we're being invoked via TEE. in ipt_do_table()
267 * clobber the jumpstack. in ipt_do_table()
273 jumpstack += private->stacksize * current->in_nf_duplicate; in ipt_do_table()
324 e = jumpstack[--stackidx]; in ipt_do_table()
335 jumpstack[stackidx++] = e; in ipt_do_table()
/linux/include/linux/netfilter/
H A Dx_tables.h255 void ***jumpstack; member