HomeSort by relevance Sort by last modified time
    Searched refs:mntpoint_src (Results 1 - 2 of 2) sorted by null

  /external/ltp/testcases/kernel/syscalls/mount/
mount06.c 41 #define MNTPOINT_SRC "mnt_src"
56 static char mntpoint_src[PATH_MAX]; variable
72 if (mount(device, mntpoint_src, fs_type, 0, NULL) == -1)
74 mntpoint_src);
76 TEST(mount(mntpoint_src, mntpoint_des, fs_type, MS_MOVE, NULL));
82 if (!ismount(mntpoint_src) && ismount(mntpoint_des))
149 snprintf(mntpoint_src, PATH_MAX, "%s/%s", path_name, MNTPOINT_SRC);
152 SAFE_MKDIR(cleanup, mntpoint_src, DIR_MODE);
mount05.c 50 static const char mntpoint_src[] = "mnt_src"; variable
71 TEST(mount(mntpoint_src, mntpoint_des, fstype, MS_BIND, NULL));
103 SAFE_MKDIR(cleanup, mntpoint_src, DIR_MODE);
109 if (mount(device, mntpoint_src, fstype, 0, NULL) == -1)
121 if (tst_umount(mntpoint_src) != 0)

Completed in 84 milliseconds