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.c329 off_t nodes_max, size_max, maxfilesize, ea_max_size; in tmpfs_mount() local
360 if (vfs_getopt_size(opts, "inodes", &nodes_max) == 0 && in tmpfs_mount()
361 nodes_max != 0 && nodes_max != tmp->tm_nodes_max) in tmpfs_mount()
426 if (vfs_getopt_size(opts, "inodes", &nodes_max) != 0) in tmpfs_mount()
427 nodes_max = 0; in tmpfs_mount()
456 if (nodes_max <= 3) { in tmpfs_mount()
458 nodes_max = pages * nodes_per_page; in tmpfs_mount()
460 nodes_max = INT_MAX; in tmpfs_mount()
462 if (nodes_max > INT_MAX) in tmpfs_mount()
463 nodes_max = INT_MAX; in tmpfs_mount()
[all …]