Lines Matching defs:target
120 mnt_fs(const char *target, const char *type, char *buff, size_t bufflen)
124 while (mount("", target, "none", MS_PRIVATE | MS_REC, NULL)) {
128 target, strerror(errno));
132 if (mount(target, target, "none", MS_BIND, NULL)) {
135 target, target, strerror(errno));
142 if (mount(type, target, type, 0, "mode=0700")) {
144 type, type, target, strerror(errno));
151 int mount_tracefs(const char *target)
156 err = mnt_fs(target, "tracefs", err_str, ERR_MAX_LEN);