Searched refs:MAX_RW_COUNT (Results 1 – 4 of 4) sorted by relevance
408 return count > MAX_RW_COUNT ? MAX_RW_COUNT : count; in rw_verify_area()509 if (count > MAX_RW_COUNT) in __kernel_write()510 count = MAX_RW_COUNT; in __kernel_write()763 if (len > MAX_RW_COUNT - ret) { in rw_copy_check_uvector()764 len = MAX_RW_COUNT - ret; in rw_copy_check_uvector()
605 if (len > MAX_RW_COUNT - tot_len) in compat_rw_copy_check_uvector()606 len = MAX_RW_COUNT - tot_len; in compat_rw_copy_check_uvector()
842 if (len > MAX_RW_COUNT) in import_single_range()843 len = MAX_RW_COUNT; in import_single_range()
2013 #define MAX_RW_COUNT (INT_MAX & PAGE_CACHE_MASK) macro