Home
last modified time | relevance | path

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

/Linux-v4.19/fs/
Dread_write.c450 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 …]
Dsplice.c873 if (unlikely(len > MAX_RW_COUNT)) in do_splice_to()
874 len = MAX_RW_COUNT; in do_splice_to()
/Linux-v4.19/lib/
Diov_iter.c987 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()
/Linux-v4.19/fs/xfs/
Dxfs_reflink.c661 BUILD_BUG_ON(MAX_RW_COUNT > UINT_MAX); in xfs_reflink_end_cow()
/Linux-v4.19/include/linux/
Dfs.h2250 #define MAX_RW_COUNT (INT_MAX & PAGE_MASK) macro