Searched refs:MAX_RW_COUNT (Results 1 – 4 of 4) sorted by relevance
459 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 …]
869 if (unlikely(len > MAX_RW_COUNT)) in do_splice_to()870 len = MAX_RW_COUNT; in do_splice_to()
1051 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()
2332 #define MAX_RW_COUNT (INT_MAX & PAGE_MASK) macro