Home
last modified time | relevance | path

Searched refs:MAX_ERRNO (Results 1 – 25 of 29) sorted by relevance

12

/openbmc/linux/lib/
H A Derrseq.c37 #define ERRSEQ_SHIFT ilog2(MAX_ERRNO + 1)
64 BUILD_BUG_ON_NOT_POWER_OF_2(MAX_ERRNO + 1); in errseq_set()
74 if (WARN(unlikely(err == 0 || (unsigned int)-err > MAX_ERRNO), in errseq_set()
82 new = (old & ~(MAX_ERRNO|ERRSEQ_SEEN)) | -err; in errseq_set()
151 return -(cur & MAX_ERRNO); in errseq_check()
203 err = -(new & MAX_ERRNO); in errseq_check_and_advance()
H A Dnotifier-error-inject.c8 *(int *)data = clamp_t(int, val, -MAX_ERRNO, 0); in debugfs_errno_set()
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Derr.h5 #define MAX_ERRNO 4095 macro
6 #define IS_ERR_VALUE(x) (unsigned long)(void *)(x) >= (unsigned long)-MAX_ERRNO
/openbmc/linux/tools/virtio/linux/
H A Derr.h4 #define MAX_ERRNO 4095 macro
6 #define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)
/openbmc/u-boot/include/linux/
H A Derr.h18 #define MAX_ERRNO 4095 macro
22 #define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)
/openbmc/linux/tools/include/linux/
H A Derr.h31 #define MAX_ERRNO 4095 macro
33 #define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)
/openbmc/linux/include/linux/
H A Derr.h18 #define MAX_ERRNO 4095 macro
28 #define IS_ERR_VALUE(x) unlikely((unsigned long)(void *)(x) >= (unsigned long)-MAX_ERRNO)
H A Ddma-fence.h581 WARN_ON(error >= 0 || error < -MAX_ERRNO); in dma_fence_set_error()
H A Dxarray.h204 entry >= xa_mk_internal(-MAX_ERRNO)); in xa_is_err()
/openbmc/linux/fs/cachefiles/
H A Dio.c107 if (off2 < 0 && off2 >= (loff_t)-MAX_ERRNO && off2 != -ENXIO) { in cachefiles_read()
224 if (off < 0 && off >= (loff_t)-MAX_ERRNO) in cachefiles_query_occupancy()
234 if (off2 < 0 && off2 >= (loff_t)-MAX_ERRNO) in cachefiles_query_occupancy()
428 if (off < 0 && off >= (loff_t)-MAX_ERRNO) { in cachefiles_do_prepare_read()
455 if (to < 0 && to >= (loff_t)-MAX_ERRNO) { in cachefiles_do_prepare_read()
544 if (pos < 0 && pos >= (loff_t)-MAX_ERRNO) { in __cachefiles_prepare_write()
565 if (pos < 0 && pos >= (loff_t)-MAX_ERRNO) { in __cachefiles_prepare_write()
/openbmc/linux/tools/include/nolibc/
H A Derrno.h23 #define MAX_ERRNO 4095 macro
/openbmc/linux/tools/testing/scatterlist/linux/
H A Dmm.h132 #define MAX_ERRNO 4095 macro
134 #define IS_ERR_VALUE(x) unlikely((unsigned long)(void *)(x) >= (unsigned long)-MAX_ERRNO)
/openbmc/linux/kernel/
H A Dfail_function.c42 if (retv < (unsigned long)-MAX_ERRNO) in adjust_error_retval()
46 if (retv != 0 && retv < (unsigned long)-MAX_ERRNO) in adjust_error_retval()
H A Dseccomp.c1229 if (data > MAX_ERRNO) in __seccomp_filter()
1230 data = MAX_ERRNO; in __seccomp_filter()
/openbmc/linux/Documentation/translations/zh_CN/core-api/
H A Derrseq.rst25 它被实现为一个无符号的32位值。低位被指定保存错误代码(在1和MAX_ERRNO之间)。高位
/openbmc/linux/fs/btrfs/
H A Dtree-log.h22 #define BTRFS_LOG_FORCE_COMMIT (-(MAX_ERRNO + 1))
/openbmc/linux/rust/kernel/
H A Derror.rs103 if errno < -(bindings::MAX_ERRNO as i32) || errno >= 0 { in from_errno()
/openbmc/linux/arch/powerpc/kernel/
H A Dinterrupt.c279 if (unlikely(r3 >= (unsigned long)-MAX_ERRNO) && is_not_scv) { in syscall_exit_prepare()
/openbmc/linux/arch/mips/kernel/
H A Dmodule.c342 if (sym->st_value >= -MAX_ERRNO) { in __apply_relocate()
/openbmc/linux/Documentation/powerpc/
H A Dsyscall64-abi.rst39 -4095..-1 (i.e., it is >= -MAX_ERRNO (-4095) as an unsigned comparison),
/openbmc/linux/drivers/bcma/
H A Dscan.c269 #define IS_ERR_VALUE_U32(x) ((x) >= (u32)-MAX_ERRNO)
/openbmc/linux/drivers/char/
H A Dmem.c601 if ((unsigned long long)offset >= -MAX_ERRNO) { in memory_lseek()
/openbmc/linux/Documentation/fault-injection/
H A Dfault-injection.rst200 - ERRNO: retval must be -1 to -MAX_ERRNO (-4096).
201 - ERR_NULL: retval must be 0 or -1 to -MAX_ERRNO (-4096).
/openbmc/linux/Documentation/core-api/
H A Derrseq.rst14 designated to hold an error code (between 1 and MAX_ERRNO). The upper bits
/openbmc/linux/security/keys/
H A Dkeyctl.c1347 error >= MAX_ERRNO || in keyctl_reject_key()

12