Home
last modified time | relevance | path

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

/linux-6.15/fs/xfs/scrub/
H A Dxfile.c116 if (count > MAX_RW_COUNT) in xfile_load()
179 if (count > MAX_RW_COUNT) in xfile_store()
/linux-6.15/fs/
H A Dread_write.c508 .iov_len = min_t(size_t, count, MAX_RW_COUNT), in __kernel_read()
564 if (count > MAX_RW_COUNT) in vfs_read()
565 count = MAX_RW_COUNT; in vfs_read()
633 .iov_len = min_t(size_t, count, MAX_RW_COUNT), in __kernel_write()
678 if (count > MAX_RW_COUNT) in vfs_write()
679 count = MAX_RW_COUNT; in vfs_write()
1328 if (count > MAX_RW_COUNT) in do_sendfile()
1329 count = MAX_RW_COUNT; in do_sendfile()
1591 min_t(loff_t, MAX_RW_COUNT, len), in vfs_copy_file_range()
1626 min_t(size_t, len, MAX_RW_COUNT), 0); in vfs_copy_file_range()
H A Dsplice.c968 if (unlikely(len > MAX_RW_COUNT)) in do_splice_read()
969 len = MAX_RW_COUNT; in do_splice_read()
1253 min_t(size_t, len, MAX_RW_COUNT), in splice_file_range()
H A Dseq_file.c35 if (unlikely(size > MAX_RW_COUNT)) in seq_buf_alloc()
H A Dnamespace.c5905 if (unlikely(*seq_size > MAX_RW_COUNT)) in retry_statmount()
/linux-6.15/lib/
H A Diov_iter.c615 if (WARN_ON(unroll > MAX_RW_COUNT)) in iov_iter_revert()
1159 if (maxsize > MAX_RW_COUNT) in __iov_iter_get_pages_alloc()
1160 maxsize = MAX_RW_COUNT; in __iov_iter_get_pages_alloc()
1485 if (len > MAX_RW_COUNT - total_len) { in __import_iovec()
1486 len = MAX_RW_COUNT - total_len; in __import_iovec()
1533 if (len > MAX_RW_COUNT) in import_ubuf()
1534 len = MAX_RW_COUNT; in import_ubuf()
1907 maxsize = min_t(size_t, min_t(size_t, maxsize, i->count), MAX_RW_COUNT); in iov_iter_extract_pages()
/linux-6.15/io_uring/
H A Drsrc.c1030 if (unlikely(len > MAX_RW_COUNT)) in validate_fixed_range()
1363 if (total_len > MAX_RW_COUNT) in io_vec_fill_bvec()
1453 if (total_len > MAX_RW_COUNT) in io_kern_bvec_size()
H A Dkbuf.c544 buf->len = min_t(__u32, pbuf->len, MAX_RW_COUNT); in io_add_buffers()
/linux-6.15/fs/cachefiles/
H A Dio.c636 stream->sreq_max_len = MAX_RW_COUNT; in cachefiles_prepare_write_subreq()
/linux-6.15/include/linux/
H A Dfs.h2762 #define MAX_RW_COUNT (INT_MAX & PAGE_MASK) macro