Home
last modified time | relevance | path

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

/Linux-v4.19/net/netfilter/
Dnf_tables_core.c147 struct nft_jumpstack jumpstack[NFT_JUMP_STACK_SIZE]; in nft_do_chain() local
202 jumpstack[stackptr].chain = chain; in nft_do_chain()
203 jumpstack[stackptr].rules = rules + 1; in nft_do_chain()
224 chain = jumpstack[stackptr].chain; in nft_do_chain()
225 rules = jumpstack[stackptr].rules; in nft_do_chain()
Dx_tables.c1195 if (info->jumpstack != NULL) { in xt_free_table_info()
1197 kvfree(info->jumpstack[cpu]); in xt_free_table_info()
1198 kvfree(info->jumpstack); in xt_free_table_info()
1306 i->jumpstack = kvzalloc(size, GFP_KERNEL); in xt_jumpstack_alloc()
1308 i->jumpstack = kzalloc(size, GFP_KERNEL); in xt_jumpstack_alloc()
1309 if (i->jumpstack == NULL) in xt_jumpstack_alloc()
1328 i->jumpstack[cpu] = kvmalloc_node(size, GFP_KERNEL, in xt_jumpstack_alloc()
1330 if (i->jumpstack[cpu] == NULL) in xt_jumpstack_alloc()
/Linux-v4.19/net/ipv6/netfilter/
Dip6_tables.c263 struct ip6t_entry *e, **jumpstack; in ip6t_do_table() local
289 jumpstack = (struct ip6t_entry **)private->jumpstack[cpu]; in ip6t_do_table()
299 jumpstack += private->stacksize * __this_cpu_read(nf_skb_duplicated); in ip6t_do_table()
351 e = ip6t_next_entry(jumpstack[--stackidx]); in ip6t_do_table()
360 jumpstack[stackidx++] = e; in ip6t_do_table()
/Linux-v4.19/net/ipv4/netfilter/
Dip_tables.c239 struct ipt_entry *e, **jumpstack; in ipt_do_table() local
267 jumpstack = (struct ipt_entry **)private->jumpstack[cpu]; in ipt_do_table()
277 jumpstack += private->stacksize * __this_cpu_read(nf_skb_duplicated); in ipt_do_table()
328 e = jumpstack[--stackidx]; in ipt_do_table()
339 jumpstack[stackidx++] = e; in ipt_do_table()
Darp_tables.c189 struct arpt_entry *e, **jumpstack; in arpt_do_table() local
208 jumpstack = (struct arpt_entry **)private->jumpstack[cpu]; in arpt_do_table()
248 e = jumpstack[--stackidx]; in arpt_do_table()
259 jumpstack[stackidx++] = e; in arpt_do_table()
/Linux-v4.19/include/linux/netfilter/
Dx_tables.h265 void ***jumpstack; member