Searched refs:MAX_RW_COUNT (Results 1 – 5 of 5) sorted by relevance
450 if (count > MAX_RW_COUNT) in vfs_read()451 count = MAX_RW_COUNT; in vfs_read()504 if (count > MAX_RW_COUNT) in __kernel_write()505 count = MAX_RW_COUNT; in __kernel_write()546 if (count > MAX_RW_COUNT) in vfs_write()547 count = MAX_RW_COUNT; in vfs_write()817 if (len > MAX_RW_COUNT - ret) { in rw_copy_check_uvector()818 len = MAX_RW_COUNT - ret; in rw_copy_check_uvector()888 if (len > MAX_RW_COUNT - tot_len) in compat_rw_copy_check_uvector()889 len = MAX_RW_COUNT - tot_len; in compat_rw_copy_check_uvector()[all …]
873 if (unlikely(len > MAX_RW_COUNT)) in do_splice_to()874 len = MAX_RW_COUNT; in do_splice_to()
987 if (WARN_ON(unroll > MAX_RW_COUNT)) in iov_iter_revert()1568 if (len > MAX_RW_COUNT) in import_single_range()1569 len = MAX_RW_COUNT; in import_single_range()
661 BUILD_BUG_ON(MAX_RW_COUNT > UINT_MAX); in xfs_reflink_end_cow()
2250 #define MAX_RW_COUNT (INT_MAX & PAGE_MASK) macro