Home
last modified time | relevance | path

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

/linux-4.1.27/Documentation/kdump/
Dgdbmacros.txt25 set var $stackp = $next_t.thread.esp
26 set var $stack_top = ($stackp & ~4095) + 4096
28 while ($stackp < $stack_top)
29 if (*($stackp) > _stext && *($stackp) < _sinittext)
30 info symbol *($stackp)
32 set $stackp += 4
39 set var $stackp = $next_t.thread.esp
40 set var $stack_top = ($stackp & ~4095) + 4096
42 while ($stackp < $stack_top)
43 if (*($stackp) > _stext && *($stackp) < _sinittext)
[all …]
/linux-4.1.27/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-4.1.27/arch/mips/include/asm/
Dstackframe.h103 .macro set_saved_sp stackp temp temp2
106 LONG_S \stackp, kernelsp(\temp)
141 .macro set_saved_sp stackp temp temp2
142 LONG_S \stackp, kernelsp
/linux-4.1.27/
DMakefile655 stackp-flag := -fstack-protector
656 ifeq ($(call cc-option, $(stackp-flag)),)
662 stackp-flag := -fstack-protector-strong
663 ifeq ($(call cc-option, $(stackp-flag)),)
669 stackp-flag := $(call cc-option, -fno-stack-protector)
672 KBUILD_CFLAGS += $(stackp-flag)