Home
last modified time | relevance | path

Searched refs:MAX_RW_COUNT (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.4/fs/
Dread_write.c459 if (count > MAX_RW_COUNT) in vfs_read()
460 count = MAX_RW_COUNT; in vfs_read()
513 if (count > MAX_RW_COUNT) in __kernel_write()
514 count = MAX_RW_COUNT; in __kernel_write()
555 if (count > MAX_RW_COUNT) in vfs_write()
556 count = MAX_RW_COUNT; in vfs_write()
828 if (len > MAX_RW_COUNT - ret) { in rw_copy_check_uvector()
829 len = MAX_RW_COUNT - ret; in rw_copy_check_uvector()
899 if (len > MAX_RW_COUNT - tot_len) in compat_rw_copy_check_uvector()
900 len = MAX_RW_COUNT - tot_len; in compat_rw_copy_check_uvector()
[all …]
Dsplice.c869 if (unlikely(len > MAX_RW_COUNT)) in do_splice_to()
870 len = MAX_RW_COUNT; in do_splice_to()
/Linux-v5.4/lib/
Diov_iter.c1051 if (WARN_ON(unroll > MAX_RW_COUNT)) in iov_iter_revert()
1686 if (len > MAX_RW_COUNT) in import_single_range()
1687 len = MAX_RW_COUNT; in import_single_range()
/Linux-v5.4/include/linux/
Dfs.h2332 #define MAX_RW_COUNT (INT_MAX & PAGE_MASK) macro