Home
last modified time | relevance | path

Searched refs:fs_type (Results 1 – 25 of 107) sorted by relevance

12345

/third_party/ltp/lib/
Dtst_supported_fs_types.c36 static int has_mkfs(const char *fs_type) in has_mkfs() argument
41 if (strstr(fs_type, "tmpfs")) { in has_mkfs()
46 sprintf(buf, "mkfs.%s >/dev/null 2>&1", fs_type); in has_mkfs()
51 tst_res(TINFO, "mkfs.%s does not exist", fs_type); in has_mkfs()
55 tst_res(TINFO, "mkfs.%s does exist", fs_type); in has_mkfs()
59 int tst_fs_in_skiplist(const char *fs_type, const char *const *skiplist) in tst_fs_in_skiplist() argument
67 if (!strcmp(fs_type, skiplist[i])) in tst_fs_in_skiplist()
74 static enum tst_fs_impl has_kernel_support(const char *fs_type) in has_kernel_support() argument
86 ret = mount("/dev/zero", template, fs_type, 0, NULL); in has_kernel_support()
90 tst_res(TINFO, "Kernel supports %s", fs_type); in has_kernel_support()
[all …]
Dtst_mkfs.c26 const char *dev, const char *fs_type, in tst_mkfs_() argument
41 if (!fs_type) { in tst_mkfs_()
47 if (!strcmp(fs_type, "tmpfs")) { in tst_mkfs_()
53 snprintf(mkfs, sizeof(mkfs), "mkfs.%s", fs_type); in tst_mkfs_()
98 dev, fs_type, fs_opts_str, extra_opts_str); in tst_mkfs_()
117 const char *fs_type; in tst_dev_fs_type() local
119 fs_type = getenv("LTP_DEV_FS_TYPE"); in tst_dev_fs_type()
121 if (fs_type) in tst_dev_fs_type()
122 return fs_type; in tst_dev_fs_type()
Dtst_fs_link_count.c111 long fs_type; in tst_fs_fill_subdirs_() local
123 fs_type = tst_fs_type(cleanup, dir); in tst_fs_fill_subdirs_()
127 if (fs_type == subdir_limit_whitelist[i]) in tst_fs_fill_subdirs_()
132 "%s filesystem", tst_fs_type_name(fs_type)); in tst_fs_fill_subdirs_()
173 tst_fs_type_name(fs_type)); in tst_fs_fill_subdirs_()
Dtst_test.c997 const char *fs_type) in prepare_and_mount_ro_fs() argument
1001 if (mount(dev, mntpoint, fs_type, 0, NULL)) { in prepare_and_mount_ro_fs()
1003 dev, mntpoint, fs_type); in prepare_and_mount_ro_fs()
1016 SAFE_MOUNT(dev, mntpoint, fs_type, MS_REMOUNT | MS_RDONLY, NULL); in prepare_and_mount_ro_fs()
1066 char *buf, size_t buf_size, const char *fs_type) in limit_tmpfs_mount_size() argument
1070 if (strcmp(fs_type, "tmpfs")) in limit_tmpfs_mount_size()
1091 static const char *get_device_name(const char *fs_type) in get_device_name() argument
1093 if (!strcmp(fs_type, "tmpfs")) in get_device_name()
1105 SAFE_MKFS(tdev.dev, tdev.fs_type, tst_test->dev_fs_opts, in prepare_device()
1111 tdev.fs_type); in prepare_device()
[all …]
/third_party/ltp/testcases/kernel/syscalls/mount/
Dmount02.c59 static const char *fs_type; variable
78 const char **fs_type; member
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},
[all …]
Dmount06.c53 static const char *fs_type; variable
72 SAFE_MOUNT(cleanup, device, mntpoint_src, fs_type, 0, NULL); in main()
74 TEST(mount(mntpoint_src, mntpoint_des, fs_type, MS_MOVE, NULL)); in main()
124 fs_type = tst_dev_fs_type(); in setup()
130 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
Dmount01.c40 static const char *fs_type; variable
54 TEST(mount(device, MNTPOINT, fs_type, 0, NULL)); in main()
80 fs_type = tst_dev_fs_type(); in setup()
86 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
Dmount04.c38 static const char *fs_type; variable
46 TEST(mount(device, mntpoint, fs_type, 0, NULL)); in verify_mount()
95 fs_type = tst_dev_fs_type(); in setup()
101 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
/third_party/ltp/testcases/commands/mkfs/
Dmkfs01.sh84 local fs_type=$2
89 if [ -n "$fs_type" ]; then
90 mkfs_op="-t $fs_type"
93 if [ "$fs_type" = "xfs" ] || [ "$fs_type" = "btrfs" ]; then
96 if [ "$fs_type" = "ext3" ] || [ "$fs_type" = "ext4" ]; then
103 if [ $? -eq 0 ] && [ "$fs_type" = "ntfs" ]; then
109 if [ "$fs_type" = "xfs" ] || [ "$fs_type" = "btrfs" ]; then
129 mkfs_verify_type "$fs_type" "$device"
138 mkfs_verify_size "$fs_type" "$size"
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_state_fs_linear_llvm.c137 struct lp_type fs_type, in llvm_fragment_body() argument
167 lp_build_tgsi_aos(gallivm, shader->base.tokens, fs_type, in llvm_fragment_body()
174 lp_build_nir_aos(gallivm, clone, fs_type, in llvm_fragment_body()
203 LLVMTypeRef vec_type = lp_build_vec_type(gallivm, fs_type); in llvm_fragment_body()
215 LLVMValueRef src1 = lp_build_zero(gallivm, fs_type); in llvm_fragment_body()
220 fs_type, in llvm_fragment_body()
259 struct lp_type fs_type; in llvmpipe_fs_variant_linear_llvm() local
260 memset(&fs_type, 0, sizeof fs_type); in llvmpipe_fs_variant_linear_llvm()
261 fs_type.floating = FALSE; in llvmpipe_fs_variant_linear_llvm()
262 fs_type.sign = FALSE; in llvmpipe_fs_variant_linear_llvm()
[all …]
/third_party/ltp/testcases/kernel/syscalls/rename/
Drename11.c57 static const char *fs_type; variable
101 fs_type = tst_dev_fs_type(); in setup()
107 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
110 SAFE_MOUNT(cleanup, device, MNTPOINT, fs_type, 0, NULL); in setup()
152 SAFE_MOUNT(cleanup, device, MNTPOINT, fs_type, MS_REMOUNT | MS_RDONLY, in test_erofs()
161 SAFE_MOUNT(cleanup, device, MNTPOINT, fs_type, MS_REMOUNT, NULL); in test_erofs()
/third_party/libuv/test/
Dtest-fs-readdir.c51 ASSERT(req->fs_type == UV_FS_CLOSEDIR); in empty_closedir_cb()
62 ASSERT(req->fs_type == UV_FS_READDIR); in empty_readdir_cb()
78 ASSERT(req->fs_type == UV_FS_OPENDIR); in empty_opendir_cb()
119 ASSERT(opendir_req.fs_type == UV_FS_OPENDIR); in TEST_IMPL()
172 ASSERT(req->fs_type == UV_FS_OPENDIR); in non_existing_opendir_cb()
192 ASSERT(opendir_req.fs_type == UV_FS_OPENDIR); in TEST_IMPL()
224 ASSERT(req->fs_type == UV_FS_OPENDIR); in file_opendir_cb()
245 ASSERT(opendir_req.fs_type == UV_FS_OPENDIR); in TEST_IMPL()
286 ASSERT(req->fs_type == UV_FS_READDIR); in non_empty_readdir_cb()
327 ASSERT(req->fs_type == UV_FS_OPENDIR); in non_empty_opendir_cb()
[all …]
/third_party/ltp/testcases/kernel/syscalls/statvfs/
Dstatvfs01.c27 long fs_type; in run() local
30 fs_type = tst_fs_type(TEST_PATH); in run()
35 if (fs_type == TST_VFAT_MAGIC || fs_type == TST_EXFAT_MAGIC) in run()
/third_party/ltp/testcases/kernel/syscalls/umount2/
Dumount2_01.c46 static const char *fs_type; variable
74 fs_type = tst_dev_fs_type(); in setup()
80 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
93 SAFE_MOUNT(cleanup, device, MNTPOINT, fs_type, 0, NULL); in umount2_verify()
124 SAFE_MOUNT(cleanup, device, MNTPOINT, fs_type, 0, NULL); in umount2_verify()
Dumount2_03.c44 static const char *fs_type; variable
95 fs_type = tst_dev_fs_type(); in setup()
101 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
112 SAFE_MOUNT(cleanup, device, MNTPOINT, fs_type, 0, NULL); in test_umount2()
/third_party/node/src/
Dnode_dir.cc74 #define FS_DIR_ASYNC_TRACE_BEGIN0(fs_type, id) \ argument
76 get_dir_func_name_by_type(fs_type), \
78 #define FS_DIR_ASYNC_TRACE_END0(fs_type, id) \ argument
80 get_dir_func_name_by_type(fs_type), \
83 #define FS_DIR_ASYNC_TRACE_BEGIN1(fs_type, id, name, value) \ argument
85 get_dir_func_name_by_type(fs_type), \
90 #define FS_DIR_ASYNC_TRACE_END1(fs_type, id, name, value) \ argument
92 get_dir_func_name_by_type(fs_type), \
177 req->fs_type, req_wrap, "result", static_cast<int>(req->result)) in AfterClose()
243 req->fs_type, req_wrap, "result", static_cast<int>(req->result)) in AfterDirRead()
[all …]
/third_party/ltp/testcases/kernel/syscalls/read/
Dread02.c45 static long fs_type; variable
68 tst_fs_type_name(fs_type)); in verify_read()
109 fs_type = tst_fs_type("."); in setup()
110 if (fs_type != TST_TMPFS_MAGIC) in setup()
/third_party/ltp/testcases/kernel/syscalls/linkat/
Dlinkat02.c54 static const char *fs_type; variable
147 fs_type = tst_dev_fs_type(); in setup()
169 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
172 SAFE_MOUNT(cleanup, device, "mntpoint", fs_type, 0, NULL); in setup()
190 SAFE_MOUNT(cleanup, device, "mntpoint", fs_type, in setup_erofs()
/third_party/ltp/include/
Dtst_mkfs.h16 const char *dev, const char *fs_type,
19 #define SAFE_MKFS(device, fs_type, fs_opts, extra_opts) \ argument
20 tst_mkfs_(__FILE__, __LINE__, NULL, device, fs_type, \
/third_party/ltp/testcases/kernel/syscalls/lchown/
Dlchown03.c89 const char *fs_type; in setup() local
99 fs_type = tst_dev_fs_type(); in setup()
110 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
112 SAFE_MOUNT(cleanup, device, TEST_EROFS, fs_type, MS_RDONLY, NULL); in setup()
/third_party/ltp/testcases/kernel/syscalls/renameat2/
Drenameat202.c45 static long fs_type; variable
88 fs_type = tst_fs_type(cleanup, "."); in setup()
126 if (TEST_ERRNO == EINVAL && TST_BTRFS_MAGIC == fs_type) { in renameat2_verify()
129 tst_fs_type_name(fs_type)); in renameat2_verify()
Drenameat201.c54 static long fs_type; variable
110 fs_type = tst_fs_type(cleanup, "."); in setup()
141 && fs_type == TST_BTRFS_MAGIC) { in renameat2_verify()
144 tst_fs_type_name(fs_type)); in renameat2_verify()
/third_party/ltp/testcases/kernel/syscalls/mknod/
Dmknod07.c114 const char *fs_type; in setup() local
122 fs_type = tst_dev_fs_type(); in setup()
128 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
134 SAFE_MOUNT(cleanup, device, MNT_POINT, fs_type, MS_RDONLY, NULL); in setup()
/third_party/ltp/testcases/kernel/syscalls/renameat/
Drenameat01.c133 const char *fs_type; in setup() local
142 fs_type = tst_dev_fs_type(); in setup()
178 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
180 SAFE_MOUNT(cleanup, device, MNTPOINT, fs_type, 0, NULL); in setup()
183 SAFE_MOUNT(cleanup, device, MNTPOINT, fs_type, MS_REMOUNT | MS_RDONLY, in setup()
/third_party/ltp/testcases/kernel/syscalls/mknodat/
Dmknodat02.c106 const char *fs_type; in setup() local
114 fs_type = tst_dev_fs_type(); in setup()
120 tst_mkfs(cleanup, device, fs_type, NULL, NULL); in setup()
128 SAFE_MOUNT(cleanup, device, MNT_POINT, fs_type, MS_RDONLY, NULL); in setup()

12345