Searched refs:__put_user_error (Results 1 – 3 of 3) sorted by relevance
/Linux-v6.1/arch/arm64/kernel/ |
D | signal32.c | 109 __put_user_error(magic, &frame->magic, err); in compat_preserve_vfp_context() 110 __put_user_error(size, &frame->size, err); in compat_preserve_vfp_context() 121 __put_user_error(vreg.lo, &frame->ufp.fpregs[i], err); in compat_preserve_vfp_context() 122 __put_user_error(vreg.hi, &frame->ufp.fpregs[i + 1], err); in compat_preserve_vfp_context() 128 __put_user_error(fpscr, &frame->ufp.fpscr, err); in compat_preserve_vfp_context() 135 __put_user_error(fpexc, &frame->ufp_exc.fpexc, err); in compat_preserve_vfp_context() 136 __put_user_error(0, &frame->ufp_exc.fpinst, err); in compat_preserve_vfp_context() 137 __put_user_error(0, &frame->ufp_exc.fpinst2, err); in compat_preserve_vfp_context() 364 __put_user_error(regs->regs[0], &sf->uc.uc_mcontext.arm_r0, err); in compat_setup_sigframe() 365 __put_user_error(regs->regs[1], &sf->uc.uc_mcontext.arm_r1, err); in compat_setup_sigframe() [all …]
|
D | signal.c | 179 __put_user_error(fpsimd->fpsr, &ctx->fpsr, err); in preserve_fpsimd_context() 180 __put_user_error(fpsimd->fpcr, &ctx->fpcr, err); in preserve_fpsimd_context() 183 __put_user_error(FPSIMD_MAGIC, &ctx->head.magic, err); in preserve_fpsimd_context() 184 __put_user_error(sizeof(struct fpsimd_context), &ctx->head.size, err); in preserve_fpsimd_context() 245 __put_user_error(SVE_MAGIC, &ctx->head.magic, err); in preserve_sve_context() 246 __put_user_error(round_up(SVE_SIG_CONTEXT_SIZE(vq), 16), in preserve_sve_context() 248 __put_user_error(vl, &ctx->vl, err); in preserve_sve_context() 249 __put_user_error(flags, &ctx->flags, err); in preserve_sve_context() 375 __put_user_error(ZA_MAGIC, &ctx->head.magic, err); in preserve_za_context() 376 __put_user_error(round_up(ZA_SIG_CONTEXT_SIZE(vq), 16), in preserve_za_context() [all …]
|
/Linux-v6.1/arch/arm64/include/asm/ |
D | uaccess.h | 369 #define __put_user_error(x, ptr, err) \ macro 384 __put_user_error((x), (ptr), __pu_err); \
|