Lines Matching refs:mnt_optnew
341 if (vfs_filteropt(mp->mnt_optnew, tmpfs_opts)) in tmpfs_mount()
346 if (vfs_filteropt(mp->mnt_optnew, tmpfs_updateopts) != 0) in tmpfs_mount()
349 if (vfs_getopt_size(mp->mnt_optnew, "size", &size_max) == 0) { in tmpfs_mount()
360 if (vfs_getopt_size(mp->mnt_optnew, "easize", &ea_max_size) == 0) { in tmpfs_mount()
363 if (vfs_flagopt(mp->mnt_optnew, "ro", NULL, 0) && in tmpfs_mount()
367 } else if (!vfs_flagopt(mp->mnt_optnew, "ro", NULL, 0) && in tmpfs_mount()
375 tmp->tm_nomtime = vfs_getopt(mp->mnt_optnew, "nomtime", NULL, in tmpfs_mount()
394 vfs_scanopt(mp->mnt_optnew, "gid", "%d", &root_gid) != 1) in tmpfs_mount()
397 vfs_scanopt(mp->mnt_optnew, "uid", "%d", &root_uid) != 1) in tmpfs_mount()
400 vfs_scanopt(mp->mnt_optnew, "mode", "%ho", &root_mode) != 1) in tmpfs_mount()
402 if (vfs_getopt_size(mp->mnt_optnew, "inodes", &nodes_max) != 0) in tmpfs_mount()
404 if (vfs_getopt_size(mp->mnt_optnew, "size", &size_max) != 0) in tmpfs_mount()
406 if (vfs_getopt_size(mp->mnt_optnew, "maxfilesize", &maxfilesize) != 0) in tmpfs_mount()
408 if (vfs_getopt_size(mp->mnt_optnew, "easize", &ea_max_size) != 0) in tmpfs_mount()
410 nonc = vfs_getopt(mp->mnt_optnew, "nonc", NULL, NULL) == 0; in tmpfs_mount()
411 nomtime = vfs_getopt(mp->mnt_optnew, "nomtime", NULL, NULL) == 0; in tmpfs_mount()
412 pgread = vfs_getopt(mp->mnt_optnew, "pgread", NULL, NULL) == 0; in tmpfs_mount()