Home | History | Annotate | Download | only in mount

Lines Matching refs:fs_type

59 static const char *fs_type;
78 const char **fs_type;
85 {&char_dev, &mntpoint, &fs_type, 0, ENOTBLK, NULL, NULL},
86 {&device, &mntpoint, &fs_type, 0, EBUSY, do_mount, do_umount},
87 {&device, &mntpoint, &fs_type, MS_REMOUNT | MS_RDONLY, EBUSY,
89 {&null, &mntpoint, &fs_type, 0, EINVAL, NULL, NULL},
91 {&device, &mntpoint, &fs_type, MS_REMOUNT, EINVAL, NULL, NULL},
92 {&fault, &mntpoint, &fs_type, 0, EFAULT, NULL, NULL},
94 {&device, &long_path, &fs_type, 0, ENAMETOOLONG, NULL, NULL},
95 {&device, &nonexistent, &fs_type, 0, ENOENT, NULL, NULL},
96 {&device, &file, &fs_type, 0, ENOTDIR, NULL, NULL},
106 TEST(mount(*tc->device, *tc->mntpoint, *tc->fs_type, tc->flag, NULL));
149 if (mount(device, mntpoint, fs_type, 0, NULL))
184 fs_type = tst_dev_fs_type();
190 tst_mkfs(cleanup, device, fs_type, NULL, NULL);