Home
last modified time | relevance | path

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

/Linux-v5.10/fs/
Dread_write.c434 .iov_len = min_t(size_t, count, MAX_RW_COUNT), in __kernel_read()
490 if (count > MAX_RW_COUNT) in vfs_read()
491 count = MAX_RW_COUNT; in vfs_read()
530 .iov_len = min_t(size_t, count, MAX_RW_COUNT), in __kernel_write()
599 if (count > MAX_RW_COUNT) in vfs_write()
600 count = MAX_RW_COUNT; in vfs_write()
1216 if (count > MAX_RW_COUNT) in do_sendfile()
1217 count = MAX_RW_COUNT; in do_sendfile()
1387 len > MAX_RW_COUNT ? MAX_RW_COUNT : len, 0); in generic_copy_file_range()
1508 min_t(loff_t, MAX_RW_COUNT, len), in vfs_copy_file_range()
Dsplice.c783 if (unlikely(len > MAX_RW_COUNT)) in do_splice_to()
784 len = MAX_RW_COUNT; in do_splice_to()
/Linux-v5.10/lib/
Diov_iter.c1088 if (WARN_ON(unroll > MAX_RW_COUNT)) in iov_iter_revert()
1768 if (len > MAX_RW_COUNT - total_len) { in __import_iovec()
1769 len = MAX_RW_COUNT - total_len; in __import_iovec()
1817 if (len > MAX_RW_COUNT) in import_single_range()
1818 len = MAX_RW_COUNT; in import_single_range()
/Linux-v5.10/include/linux/
Dfs.h2335 #define MAX_RW_COUNT (INT_MAX & PAGE_MASK) macro