Home
last modified time | relevance | path

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

/Linux-v5.15/net/netfilter/
Dnf_tables_core.c167 struct nft_jumpstack jumpstack[NFT_JUMP_STACK_SIZE]; in nft_do_chain() local
224 jumpstack[stackptr].chain = chain; in nft_do_chain()
225 jumpstack[stackptr].rules = rules + 1; in nft_do_chain()
245 chain = jumpstack[stackptr].chain; in nft_do_chain()
246 rules = jumpstack[stackptr].rules; in nft_do_chain()
Dx_tables.c1206 if (info->jumpstack != NULL) { in xt_free_table_info()
1208 kvfree(info->jumpstack[cpu]); in xt_free_table_info()
1209 kvfree(info->jumpstack); in xt_free_table_info()
1332 i->jumpstack = kvzalloc(size, GFP_KERNEL); in xt_jumpstack_alloc()
1334 i->jumpstack = kzalloc(size, GFP_KERNEL); in xt_jumpstack_alloc()
1335 if (i->jumpstack == NULL) in xt_jumpstack_alloc()
1354 i->jumpstack[cpu] = kvmalloc_node(size, GFP_KERNEL, in xt_jumpstack_alloc()
1356 if (i->jumpstack[cpu] == NULL) in xt_jumpstack_alloc()
/Linux-v5.15/net/ipv6/netfilter/
Dip6_tables.c260 struct ip6t_entry *e, **jumpstack; in ip6t_do_table() local
287 jumpstack = (struct ip6t_entry **)private->jumpstack[cpu]; in ip6t_do_table()
297 jumpstack += private->stacksize * __this_cpu_read(nf_skb_duplicated); in ip6t_do_table()
349 e = ip6t_next_entry(jumpstack[--stackidx]); in ip6t_do_table()
358 jumpstack[stackidx++] = e; in ip6t_do_table()
/Linux-v5.15/net/ipv4/netfilter/
Dip_tables.c236 struct ipt_entry *e, **jumpstack; in ipt_do_table() local
264 jumpstack = (struct ipt_entry **)private->jumpstack[cpu]; in ipt_do_table()
274 jumpstack += private->stacksize * __this_cpu_read(nf_skb_duplicated); in ipt_do_table()
325 e = jumpstack[--stackidx]; in ipt_do_table()
336 jumpstack[stackidx++] = e; in ipt_do_table()
Darp_tables.c190 struct arpt_entry *e, **jumpstack; in arpt_do_table() local
209 jumpstack = (struct arpt_entry **)private->jumpstack[cpu]; in arpt_do_table()
249 e = jumpstack[--stackidx]; in arpt_do_table()
260 jumpstack[stackidx++] = e; in arpt_do_table()
/Linux-v5.15/include/linux/netfilter/
Dx_tables.h265 void ***jumpstack; member