Home
last modified time | relevance | path

Searched refs:inp (Results 1 – 3 of 3) sorted by relevance

/fs/coda/
Dupcall.c46 union inputArgs *inp; in alloc_upcall() local
48 CODA_ALLOC(inp, union inputArgs *, size); in alloc_upcall()
49 if (!inp) in alloc_upcall()
52 inp->ih.opcode = opcode; in alloc_upcall()
53 inp->ih.pid = task_pid_nr_ns(current, &init_pid_ns); in alloc_upcall()
54 inp->ih.pgid = task_pgrp_nr_ns(current, &init_pid_ns); in alloc_upcall()
55 inp->ih.uid = from_kuid(&init_user_ns, current_fsuid()); in alloc_upcall()
57 return (void*)inp; in alloc_upcall()
62 inp = (union inputArgs *)alloc_upcall(op, insize); \
63 if (IS_ERR(inp)) { return PTR_ERR(inp); }\
[all …]
/fs/
Dselect.c434 unsigned long *rinp, *routp, *rexp, *inp, *outp, *exp; in do_select() local
437 inp = fds->in; outp = fds->out; exp = fds->ex; in do_select()
444 in = *inp++; out = *outp++; ex = *exp++; in do_select()
552 int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp, in core_sys_select() argument
603 if ((ret = get_fd_set(n, inp, fds.in)) || in core_sys_select()
622 if (set_fd_set(n, inp, fds.res_in) || in core_sys_select()
634 SYSCALL_DEFINE5(select, int, n, fd_set __user *, inp, fd_set __user *, outp, in SYSCALL_DEFINE5() argument
652 ret = core_sys_select(n, inp, outp, exp, to); in SYSCALL_DEFINE5()
658 static long do_pselect(int n, fd_set __user *inp, fd_set __user *outp, in do_pselect() argument
688 ret = core_sys_select(n, inp, outp, exp, to); in do_pselect()
[all …]
Dcompat.c1223 int compat_core_sys_select(int n, compat_ulong_t __user *inp, in compat_core_sys_select() argument
1264 if ((ret = compat_get_fd_set(n, inp, fds.in)) || in compat_core_sys_select()
1283 if (compat_set_fd_set(n, inp, fds.res_in) || in compat_core_sys_select()
1294 COMPAT_SYSCALL_DEFINE5(select, int, n, compat_ulong_t __user *, inp, in COMPAT_SYSCALL_DEFINE5() argument
1313 ret = compat_core_sys_select(n, inp, outp, exp, to); in COMPAT_SYSCALL_DEFINE5()
1321 compat_uptr_t inp; member
1333 return compat_sys_select(a.n, compat_ptr(a.inp), compat_ptr(a.outp), in COMPAT_SYSCALL_DEFINE1()
1337 static long do_compat_pselect(int n, compat_ulong_t __user *inp, in do_compat_pselect() argument
1368 ret = compat_core_sys_select(n, inp, outp, exp, to); in do_compat_pselect()
1388 COMPAT_SYSCALL_DEFINE6(pselect6, int, n, compat_ulong_t __user *, inp, in COMPAT_SYSCALL_DEFINE6() argument
[all …]