Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/fs/tmpfs/
Dtmpfs_vfsops.c331 off_t nodes_max, size_max, maxfilesize; in tmpfs_mount() local
393 if (vfs_getopt_size(mp->mnt_optnew, "maxfilesize", &maxfilesize) != 0) in tmpfs_mount()
394 maxfilesize = 0; in tmpfs_mount()
433 tmp->tm_maxfilesize = maxfilesize > 0 ? maxfilesize : OFF_MAX; in tmpfs_mount()
/freebsd-12-stable/sys/kern/
Dvfs_default.c849 off_t maxfilesize = 0; in vop_stdallocate() local
888 maxfilesize = sfs->f_maxfilesize; in vop_stdallocate()
892 if (maxfilesize) { in vop_stdallocate()
893 if (offset > maxfilesize || len > maxfilesize || in vop_stdallocate()
894 offset + len > maxfilesize) { in vop_stdallocate()
/freebsd-12-stable/sys/ufs/ffs/
Dffs_vfsops.c1126 off_t maxfilesize; local
1158 maxfilesize = (uint64_t)0x80000000 * fs->fs_bsize - 1;
1159 if (fs->fs_maxfilesize > maxfilesize)
1160 fs->fs_maxfilesize = maxfilesize;
/freebsd-12-stable/include/rpcsvc/
Dnfs_prot.x1066 size3 maxfilesize; member
/freebsd-12-stable/contrib/amd/libamu/
Dxdr_func.c2031 if (!xdr_am_size3(xdrs, &objp->maxfilesize)) in xdr_am_FSINFO3resok()
2066 if (!xdr_am_size3(xdrs, &objp->maxfilesize)) in xdr_am_FSINFO3resok()
2091 if (!xdr_am_size3(xdrs, &objp->maxfilesize)) in xdr_am_FSINFO3resok()
/freebsd-12-stable/contrib/amd/include/
Dam_xdr_func.h560 am_size3 maxfilesize; member
/freebsd-12-stable/contrib/amd/amd/
Dnfs_subr.c1785 ok->maxfilesize = 0; in am_nfs3_fsinfo_3_svc()