Searched refs:jumpstack (Results 1 – 6 of 6) sorted by relevance
258 struct nft_jumpstack jumpstack[NFT_JUMP_STACK_SIZE]; in nft_do_chain() local319 jumpstack[stackptr].rule = nft_rule_next(rule); in nft_do_chain()334 rule = jumpstack[stackptr].rule; in nft_do_chain()
1207 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()1356 i->jumpstack[cpu] = kvmalloc_node(size, GFP_KERNEL, in xt_jumpstack_alloc()1358 if (i->jumpstack[cpu] == NULL) in xt_jumpstack_alloc()
235 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()
191 struct arpt_entry *e, **jumpstack; in arpt_do_table() local210 jumpstack = (struct arpt_entry **)private->jumpstack[cpu]; in arpt_do_table()250 e = jumpstack[--stackidx]; in arpt_do_table()261 jumpstack[stackidx++] = e; in arpt_do_table()
258 struct ip6t_entry *e, **jumpstack; in ip6t_do_table() local 285 jumpstack = (struct ip6t_entry **)private->jumpstack[cpu]; in ip6t_do_table() 287 /* Switch to alternate jumpstack if we're being invoked via TEE. in ip6t_do_table() 289 * clobber the jumpstack. in ip6t_do_table() 295 jumpstack += private->stacksize * current->in_nf_duplicate; in ip6t_do_table() 347 e = ip6t_next_entry(jumpstack[--stackidx]); in ip6t_do_table() 356 jumpstack[stackidx++] = e; in ip6t_do_table()
255 void ***jumpstack; member