Home
last modified time | relevance | path

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

/freebsd-13.1/sys/fs/tmpfs/
H A Dtmpfs_vfsops.c334 off_t nodes_max, size_max, maxfilesize; in tmpfs_mount() local
405 if (vfs_getopt_size(mp->mnt_optnew, "maxfilesize", &maxfilesize) != 0) in tmpfs_mount()
406 maxfilesize = 0; in tmpfs_mount()
446 tmp->tm_maxfilesize = maxfilesize > 0 ? maxfilesize : OFF_MAX; in tmpfs_mount()
/freebsd-13.1/sys/kern/
H A Dvfs_default.c944 off_t maxfilesize = 0; in vop_stdallocate() local
983 maxfilesize = sfs->f_maxfilesize; in vop_stdallocate()
987 if (maxfilesize) { in vop_stdallocate()
988 if (offset > maxfilesize || len > maxfilesize || in vop_stdallocate()
989 offset + len > maxfilesize) { in vop_stdallocate()
/freebsd-13.1/sys/ufs/ffs/
H A Dffs_vfsops.c1312 off_t maxfilesize; local
1344 maxfilesize = (uint64_t)0x80000000 * fs->fs_bsize - 1;
1345 if (fs->fs_maxfilesize > maxfilesize)
1346 fs->fs_maxfilesize = maxfilesize;
/freebsd-13.1/include/rpcsvc/
H A Dnfs_prot.x1066 size3 maxfilesize; member