Home
last modified time | relevance | path

Searched refs:mntfromname (Results 1 – 2 of 2) sorted by relevance

/freebsd/sbin/mount/
H A Dmount.c206 const char *mntfromname, **vfslist, *vfstype; in main() local
358 mntfromname = NULL; in main()
375 mntfromname = mntbuf->f_mntfromname; in main()
382 mntfromname = fs->fs_spec; in main()
389 mntfromname = mntbuf->f_mntfromname; in main()
393 rval = mountfs(mntbuf->f_fstypename, mntfromname, in main()
895 const char *mntfromname; in putfsent() local
899 mntfromname = ent->f_mntfromname; in putfsent()
910 if (strncmp(mntfromname, "<below>:", 8) == 0 || in putfsent()
911 strncmp(mntfromname, "<above>:", 8) == 0) { in putfsent()
[all …]
/freebsd/sys/compat/linux/
H A Dlinux_file.c1078 char *fstypename, *mntonname, *mntfromname, *data; in linux_mount() local
1083 mntfromname = malloc(MNAMELEN, M_TEMP, M_WAITOK); in linux_mount()
1090 error = copyinstr(args->specialfile, mntfromname, MNAMELEN - 1, NULL); in linux_mount()
1094 mntfromname[0] = '\0'; in linux_mount()
1110 strcpy(mntfromname, "/dev/fuse"); in linux_mount()
1149 ma = mount_arg(ma, "from", mntfromname, -1); in linux_mount()
1154 free(mntfromname, M_TEMP); in linux_mount()