Searched refs:maxfilesize (Results 1 – 4 of 4) sorted by relevance
332 off_t nodes_max, size_max, maxfilesize, ea_max_size; in tmpfs_mount() local406 if (vfs_getopt_size(mp->mnt_optnew, "maxfilesize", &maxfilesize) != 0) in tmpfs_mount()407 maxfilesize = 0; in tmpfs_mount()451 tmp->tm_maxfilesize = maxfilesize > 0 ? maxfilesize : OFF_MAX; in tmpfs_mount()
333 uint64_t maxfilesize; in ffs_oldfscompat_read() local369 maxfilesize = (uint64_t)0x80000000 * fs->fs_bsize - 1; in ffs_oldfscompat_read()370 if (fs->fs_maxfilesize > maxfilesize) in ffs_oldfscompat_read()371 fs->fs_maxfilesize = maxfilesize; in ffs_oldfscompat_read()528 uint64_t maxfilesize, sizepb; in validate_sblock() local722 maxfilesize = fs->fs_bsize * UFS_NDADDR - 1; in validate_sblock()725 maxfilesize += sizepb; in validate_sblock()727 WCHK(fs->fs_maxfilesize, >, maxfilesize, %jd); in validate_sblock()
811 off_t maxfilesize = 0; in vop_stdallocate() local 850 maxfilesize = sfs->f_maxfilesize; in vop_stdallocate() 854 if (maxfilesize) { in vop_stdallocate() 855 if (offset > maxfilesize || len > maxfilesize || in vop_stdallocate() 856 offset + len > maxfilesize) { in vop_stdallocate() 864 * Test offset + len against the filesystem's maxfilesize. in vop_stdallocate()
1057 size3 maxfilesize; member