Searched refs:new_ssp (Results 1 - 2 of 2) sorted by relevance
/kernel/linux/linux-6.6/tools/testing/selftests/x86/ |
H A D | test_shadow_stack.c | 132 void try_shstk(unsigned long new_ssp) in try_shstk() argument 136 printf("[INFO]\tnew_ssp = %lx, *new_ssp = %lx\n", in try_shstk() 137 new_ssp, *((unsigned long *)new_ssp)); in try_shstk() 140 printf("[INFO]\tchanging ssp from %lx to %lx\n", ssp, new_ssp); in try_shstk() 142 asm volatile("rstorssp (%0)\n":: "r" (new_ssp)); in try_shstk()
|
/kernel/linux/linux-6.6/arch/x86/kernel/ |
H A D | process.c | 167 unsigned long new_ssp; in copy_thread() local 207 * is disabled, new_ssp will remain 0, and fpu_clone() will know not to in copy_thread() 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()
|
Completed in 3 milliseconds