Home
last modified time | relevance | path

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

/freebsd-12.1/sys/fs/tmpfs/
H A Dtmpfs_vfsops.c374 off_t nodes_max, size_max, maxfilesize; in tmpfs_mount() local
431 if (vfs_getopt_size(mp->mnt_optnew, "inodes", &nodes_max) != 0) in tmpfs_mount()
432 nodes_max = 0; in tmpfs_mount()
457 if (nodes_max <= 3) { in tmpfs_mount()
459 nodes_max = pages * nodes_per_page; in tmpfs_mount()
461 nodes_max = INT_MAX; in tmpfs_mount()
463 if (nodes_max > INT_MAX) in tmpfs_mount()
464 nodes_max = INT_MAX; in tmpfs_mount()
465 MPASS(nodes_max >= 3); in tmpfs_mount()
472 tmp->tm_nodes_max = nodes_max; in tmpfs_mount()