Home
last modified time | relevance | path

Searched refs:new_ssp (Results 1 – 2 of 2) sorted by relevance

/linux/tools/testing/selftests/x86/
H A Dtest_shadow_stack.c133 void try_shstk(unsigned long new_ssp) in try_shstk() argument
138 new_ssp, *((unsigned long *)new_ssp)); in try_shstk()
141 printf("[INFO]\tchanging ssp from %lx to %lx\n", ssp, new_ssp); in try_shstk()
143 asm volatile("rstorssp (%0)\n":: "r" (new_ssp)); in try_shstk()
/linux/arch/x86/kernel/
H A Dprocess.c167 unsigned long new_ssp; in copy_thread() local
210 new_ssp = shstk_alloc_thread_stack(p, clone_flags, args->stack_size); in copy_thread()
211 if (IS_ERR_VALUE(new_ssp)) in copy_thread()
212 return PTR_ERR((void *)new_ssp); in copy_thread()
214 fpu_clone(p, clone_flags, args->fn, new_ssp); in copy_thread()