Searched refs:uinfo (Results 1 – 4 of 4) sorted by relevance
/kernel/ |
D | signal.c | 3650 siginfo_t __user *, uinfo, in SYSCALL_DEFINE4() argument 3673 if (ret > 0 && uinfo) { in SYSCALL_DEFINE4() 3674 if (copy_siginfo_to_user(uinfo, &info)) in SYSCALL_DEFINE4() 3683 siginfo_t __user *, uinfo, in SYSCALL_DEFINE4() argument 3705 if (ret > 0 && uinfo) { in SYSCALL_DEFINE4() 3706 if (copy_siginfo_to_user(uinfo, &info)) in SYSCALL_DEFINE4() 3716 struct compat_siginfo __user *, uinfo, in COMPAT_SYSCALL_DEFINE4() argument 3737 if (ret > 0 && uinfo) { in COMPAT_SYSCALL_DEFINE4() 3738 if (copy_siginfo_to_user32(uinfo, &info)) in COMPAT_SYSCALL_DEFINE4() 3747 struct compat_siginfo __user *, uinfo, in COMPAT_SYSCALL_DEFINE4() argument [all …]
|
D | ptrace.c | 777 compat_siginfo_t __user *uinfo = compat_ptr(data); in ptrace_peek_siginfo() local 779 if (copy_siginfo_to_user32(uinfo, &info)) { in ptrace_peek_siginfo() 787 siginfo_t __user *uinfo = (siginfo_t __user *) data; in ptrace_peek_siginfo() local 789 if (copy_siginfo_to_user(uinfo, &info)) { in ptrace_peek_siginfo()
|
/kernel/bpf/ |
D | syscall.c | 3918 struct bpf_prog_info __user *uinfo = u64_to_user_ptr(attr->info.info); in bpf_prog_get_info_by_fd() local 3927 err = bpf_check_uarg_tail_zero(USER_BPFPTR(uinfo), sizeof(info), info_len); in bpf_prog_get_info_by_fd() 3933 if (copy_from_user(&info, uinfo, info_len)) in bpf_prog_get_info_by_fd() 4195 if (copy_to_user(uinfo, &info, info_len) || in bpf_prog_get_info_by_fd() 4207 struct bpf_map_info __user *uinfo = u64_to_user_ptr(attr->info.info); in bpf_map_get_info_by_fd() local 4212 err = bpf_check_uarg_tail_zero(USER_BPFPTR(uinfo), sizeof(info), info_len); in bpf_map_get_info_by_fd() 4240 if (copy_to_user(uinfo, &info, info_len) || in bpf_map_get_info_by_fd() 4252 struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info); in bpf_btf_get_info_by_fd() local 4256 err = bpf_check_uarg_tail_zero(USER_BPFPTR(uinfo), sizeof(*uinfo), info_len); in bpf_btf_get_info_by_fd() 4268 struct bpf_link_info __user *uinfo = u64_to_user_ptr(attr->info.info); in bpf_link_get_info_by_fd() local [all …]
|
D | btf.c | 6970 struct bpf_btf_info __user *uinfo; in btf_get_info_by_fd() local 6978 uinfo = u64_to_user_ptr(attr->info.info); in btf_get_info_by_fd() 6983 if (copy_from_user(&info, uinfo, info_copy)) in btf_get_info_by_fd() 7019 if (copy_to_user(uinfo, &info, info_copy) || in btf_get_info_by_fd()
|