Home
last modified time | relevance | path

Searched refs:new_stack (Results 1 – 8 of 8) sorted by relevance

/linux-4.4.14/arch/sparc/kernel/
Dprocess_32.c313 char *new_stack; local
331 new_stack = task_stack_page(p) + THREAD_SIZE;
332 new_stack -= STACKFRAME_SZ + TRACEREG_SZ;
333 childregs = (struct pt_regs *) (new_stack + STACKFRAME_SZ);
342 ti->ksp = (unsigned long) new_stack;
348 memset(new_stack, 0, STACKFRAME_SZ + TRACEREG_SZ);
359 memcpy(new_stack, (char *)regs - STACKFRAME_SZ, STACKFRAME_SZ + TRACEREG_SZ);
/linux-4.4.14/arch/blackfin/include/asm/
Dbfrom.h43 static inline void bfrom_SoftReset(void *new_stack) in bfrom_SoftReset() argument
58 [stack] "p"(new_stack) in bfrom_SoftReset()
/linux-4.4.14/arch/x86/kernel/
Dtraps.c558 struct bad_iret_stack *new_stack = in fixup_bad_iret() local
563 memmove(&new_stack->regs.ip, (void *)s->regs.sp, 5*8); in fixup_bad_iret()
566 memmove(new_stack, s, offsetof(struct bad_iret_stack, regs.ip)); in fixup_bad_iret()
568 BUG_ON(!user_mode(&new_stack->regs)); in fixup_bad_iret()
569 return new_stack; in fixup_bad_iret()
/linux-4.4.14/arch/um/os-Linux/skas/
Dprocess.c442 int copy_context_skas0(unsigned long new_stack, int pid) in copy_context_skas0() argument
447 struct stub_data *child_data = (struct stub_data *) new_stack; in copy_context_skas0()
449 int new_fd = phys_mapping(to_phys((void *)new_stack), &new_offset); in copy_context_skas0()
/linux-4.4.14/tools/perf/util/
Dthread-stack.c110 struct thread_stack_entry *new_stack; in thread_stack__grow() local
116 new_stack = realloc(ts->stack, sz); in thread_stack__grow()
117 if (!new_stack) in thread_stack__grow()
120 ts->stack = new_stack; in thread_stack__grow()
/linux-4.4.14/arch/alpha/boot/
Dbootp.c29 extern void move_stack(unsigned long new_stack);
Dbootpz.c51 extern void move_stack(unsigned long new_stack);
/linux-4.4.14/arch/parisc/kernel/
Dirq.c464 void call_on_stack(unsigned long p1, void *func, unsigned long new_stack);