Lines Matching refs:error
70 unsigned long error = regs->uregs[0];
71 return IS_ERR_VALUE(error) ? error : 0;
95 * @error: negative error code, or zero to indicate success
96 * @val: user return value if @error is zero
99 * If @error is zero, the user sees a successful system call with a
100 * return value of @val. If @error is nonzero, it's a negated errno
108 int error, long val)
110 regs->uregs[0] = (long)error ? error : val;