Home
last modified time | relevance | path

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

/arch/powerpc/kernel/
Dptrace.c311 } vrsave; in vr_get() local
312 memset(&vrsave, 0, sizeof(vrsave)); in vr_get()
313 vrsave.word = target->thread.vrsave; in vr_get()
314 ret = user_regset_copyout(&pos, &count, &kbuf, &ubuf, &vrsave, in vr_get()
341 } vrsave; in vr_set() local
342 memset(&vrsave, 0, sizeof(vrsave)); in vr_set()
343 vrsave.word = target->thread.vrsave; in vr_set()
344 ret = user_regset_copyin(&pos, &count, &kbuf, &ubuf, &vrsave, in vr_set()
347 target->thread.vrsave = vrsave.word; in vr_set()
Dsignal_64.c112 err |= __put_user(current->thread.vrsave, (u32 __user *)&v_regs[33]); in setup_sigcontext()
221 err |= __get_user(current->thread.vrsave, (u32 __user *)&v_regs[33]); in restore_sigcontext()
223 current->thread.vrsave = 0; in restore_sigcontext()
Dsignal_32.c442 if (__put_user(current->thread.vrsave, (u32 __user *)&frame->mc_vregs[32])) in save_user_regs()
548 if (__get_user(current->thread.vrsave, (u32 __user *)&sr->mc_vregs[32])) in restore_user_regs()
Dasm-offsets.c82 DEFINE(THREAD_VRSAVE, offsetof(struct thread_struct, vrsave)); in main()
Dprocess.c756 current->thread.vrsave = 0; in start_thread()
/arch/powerpc/include/asm/
Dprocessor.h187 unsigned long vrsave; member