Home
last modified time | relevance | path

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

/freebsd-14-stable/sys/fs/tmpfs/
HDtmpfs_vfsops.c333 off_t nodes_max, size_max, maxfilesize, ea_max_size; in tmpfs_mount() local
403 if (vfs_getopt_size(mp->mnt_optnew, "inodes", &nodes_max) != 0) in tmpfs_mount()
404 nodes_max = 0; in tmpfs_mount()
433 if (nodes_max <= 3) { in tmpfs_mount()
435 nodes_max = pages * nodes_per_page; in tmpfs_mount()
437 nodes_max = INT_MAX; in tmpfs_mount()
439 if (nodes_max > INT_MAX) in tmpfs_mount()
440 nodes_max = INT_MAX; in tmpfs_mount()
441 MPASS(nodes_max >= 3); in tmpfs_mount()
448 tmp->tm_nodes_max = nodes_max; in tmpfs_mount()