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

/freebsd-10-stable/sys/fs/tmpfs/
H A Dtmpfs_vfsops.c143 off_t nodes_max, size_max, maxfilesize; local
183 if (vfs_getopt_size(mp->mnt_optnew, "inodes", &nodes_max) != 0)
184 nodes_max = 0;
209 if (nodes_max <= 3) {
211 nodes_max = pages * nodes_per_page;
213 nodes_max = INT_MAX;
215 if (nodes_max > INT_MAX)
216 nodes_max = INT_MAX;
217 MPASS(nodes_max >= 3);
224 tmp->tm_nodes_max = nodes_max;
[all...]

Completed in 100 milliseconds