Home
last modified time | relevance | path

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

/freebsd/sys/fs/tmpfs/
H A Dtmpfs_vfsops.c332 off_t nodes_max, size_max, maxfilesize, ea_max_size; in tmpfs_mount() local
402 if (vfs_getopt_size(mp->mnt_optnew, "inodes", &nodes_max) != 0) in tmpfs_mount()
403 nodes_max = 0; in tmpfs_mount()
432 if (nodes_max <= 3) { in tmpfs_mount()
434 nodes_max = pages * nodes_per_page; in tmpfs_mount()
436 nodes_max = INT_MAX; in tmpfs_mount()
438 if (nodes_max > INT_MAX) in tmpfs_mount()
439 nodes_max = INT_MAX; in tmpfs_mount()
440 MPASS(nodes_max >= 3); in tmpfs_mount()
447 tmp->tm_nodes_max = nodes_max; in tmpfs_mount()