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 = current->pid; in alloc_upcall()
54 inp->ih.pgid = task_pgrp_nr(current); in alloc_upcall()
55 inp->ih.uid = 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.c393 unsigned long *rinp, *routp, *rexp, *inp, *outp, *exp; in do_select() local
395 inp = fds->in; outp = fds->out; exp = fds->ex; in do_select()
404 in = *inp++; out = *outp++; ex = *exp++; in do_select()
485 int core_sys_select(int n, fd_set __user *inp, fd_set __user *outp, in core_sys_select() argument
529 if ((ret = get_fd_set(n, inp, fds.in)) || in core_sys_select()
548 if (set_fd_set(n, inp, fds.res_in) || in core_sys_select()
560 SYSCALL_DEFINE5(select, int, n, fd_set __user *, inp, fd_set __user *, outp, in SYSCALL_DEFINE5() argument
578 ret = core_sys_select(n, inp, outp, exp, to); in SYSCALL_DEFINE5()
585 static long do_pselect(int n, fd_set __user *inp, fd_set __user *outp, in do_pselect() argument
613 ret = core_sys_select(n, inp, outp, exp, to); in do_pselect()
[all …]
Dcompat.c1615 int compat_core_sys_select(int n, compat_ulong_t __user *inp, in compat_core_sys_select() argument
1656 if ((ret = compat_get_fd_set(n, inp, fds.in)) || in compat_core_sys_select()
1675 if (compat_set_fd_set(n, inp, fds.res_in) || in compat_core_sys_select()
1686 asmlinkage long compat_sys_select(int n, compat_ulong_t __user *inp, in compat_sys_select() argument
1705 ret = compat_core_sys_select(n, inp, outp, exp, to); in compat_sys_select()
1712 static long do_compat_pselect(int n, compat_ulong_t __user *inp, in do_compat_pselect() argument
1743 ret = compat_core_sys_select(n, inp, outp, exp, to); in do_compat_pselect()
1763 asmlinkage long compat_sys_pselect6(int n, compat_ulong_t __user *inp, in compat_sys_pselect6() argument
1778 return do_compat_pselect(n, inp, outp, exp, tsp, compat_ptr(up), in compat_sys_pselect6()