Searched refs:YAFFS_MAX_FILE_SIZE (Results 1 – 2 of 2) sorted by relevance
1096 } else if (nbyte > YAFFS_MAX_FILE_SIZE) { in yaffsfs_do_read()1119 if (pos < 0 || pos > YAFFS_MAX_FILE_SIZE || in yaffsfs_do_read()1120 nbyte > YAFFS_MAX_FILE_SIZE || in yaffsfs_do_read()1121 endPos < 0 || endPos > YAFFS_MAX_FILE_SIZE) { in yaffsfs_do_read()1232 if (pos < 0 || pos > YAFFS_MAX_FILE_SIZE || in yaffsfs_do_write()1233 nbyte > YAFFS_MAX_FILE_SIZE || in yaffsfs_do_write()1234 endPos < 0 || endPos > YAFFS_MAX_FILE_SIZE) { in yaffsfs_do_write()1339 else if (new_size < 0 || new_size > YAFFS_MAX_FILE_SIZE) in yaffs_truncate()1366 else if (new_size < 0 || new_size > YAFFS_MAX_FILE_SIZE) in yaffs_ftruncate()1390 else if (offset > YAFFS_MAX_FILE_SIZE) in yaffs_lseek()[all …]
33 #define YAFFS_MAX_FILE_SIZE (0x800000000LL - 1) macro