Home
last modified time | relevance | path

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

/Linux-v4.19/Documentation/kdump/
Dgdbmacros.txt26 set var $stackp = $next_t.thread.sp
27 set var $stack_top = ($stackp & ~($stacksize - 1)) + $stacksize
29 while ($stackp < $stack_top)
30 if (*($stackp) > _stext && *($stackp) < _sinittext)
31 info symbol *($stackp)
33 set $stackp += 4
40 set var $stackp = $next_t.thread.sp
41 set var $stack_top = ($stackp & ~($stacksize - 1)) + stacksize
43 while ($stackp < $stack_top)
44 if (*($stackp) > _stext && *($stackp) < _sinittext)
[all …]
/Linux-v4.19/net/sched/
Dematch.c502 int stackp = 0, match_idx = 0, res = 0; in __tcf_em_tree_match() local
511 if (unlikely(stackp >= CONFIG_NET_EMATCH_STACK)) in __tcf_em_tree_match()
514 stack[stackp++] = match_idx; in __tcf_em_tree_match()
528 if (stackp > 0) { in __tcf_em_tree_match()
529 match_idx = stack[--stackp]; in __tcf_em_tree_match()
/Linux-v4.19/fs/overlayfs/
Dnamei.c318 struct dentry *upperdentry, struct ovl_path **stackp) in ovl_check_origin_fh() argument
339 if (!*stackp) in ovl_check_origin_fh()
340 *stackp = kmalloc(sizeof(struct ovl_path), GFP_KERNEL); in ovl_check_origin_fh()
341 if (!*stackp) { in ovl_check_origin_fh()
345 **stackp = (struct ovl_path){ in ovl_check_origin_fh()
361 struct ovl_path **stackp, unsigned int *ctrp) in ovl_check_origin() argument
369 err = ovl_check_origin_fh(ofs, fh, false, upperdentry, stackp); in ovl_check_origin()
Doverlayfs.h299 struct dentry *upperdentry, struct ovl_path **stackp);
/Linux-v4.19/arch/mips/include/asm/
Dstackframe.h142 .macro set_saved_sp stackp temp temp2
145 LONG_S \stackp, kernelsp(\temp)
189 .macro set_saved_sp stackp temp temp2
190 LONG_S \stackp, kernelsp
/Linux-v4.19/
DMakefile694 stackp-flags-$(CONFIG_CC_HAS_STACKPROTECTOR_NONE) := -fno-stack-protector
695 stackp-flags-$(CONFIG_STACKPROTECTOR) := -fstack-protector
696 stackp-flags-$(CONFIG_STACKPROTECTOR_STRONG) := -fstack-protector-strong
698 KBUILD_CFLAGS += $(stackp-flags-y)