Home
last modified time | relevance | path

Searched refs:vref (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/fs.d/
H A Dvolcopy.c66 struct vfstab vget, vref; in main() local
191 vfsnull(&vref); in main()
192 vref.vfs_special = argv[2]; in main()
193 ii = getvfsany(fd, &vget, &vref); in main()
196 vfsnull(&vref); in main()
197 vref.vfs_fsckdev = argv[2]; in main()
198 ii = getvfsany(fd, &vget, &vref); in main()
H A Dff.c281 struct vfstab vget, vref; in lookup() local
287 vfsnull(&vref); in lookup()
288 vref.vfs_special = special; in lookup()
289 ret = getvfsany(fd, &vget, &vref); in lookup()
292 vfsnull(&vref); in lookup()
293 vref.vfs_fsckdev = special; in lookup()
294 ret = getvfsany(fd, &vget, &vref); in lookup()
H A Dswitchout.c364 struct vfstab vget, vref; in lookup() local
371 vfsnull(&vref); in lookup()
372 vref.vfs_special = special; in lookup()
373 ret = getvfsany(fd, &vget, &vref); in lookup()
376 vfsnull(&vref); in lookup()
377 vref.vfs_fsckdev = special; in lookup()
378 ret = getvfsany(fd, &vget, &vref); in lookup()
H A Dfsck.c221 struct vfstab vget, vref; in main() local
428 vfsnull(&vref); in main()
446 vref.vfs_mountp = argv[optind]; in main()
448 &vref)) == -1 || in main()
451 vref.vfs_mountp = NULL; in main()
470 vref.vfs_fsckdev = argv[optind]; in main()
498 &vref)) == -1 || in main()
501 vref.vfs_fsckdev = NULL; in main()
516 vref.vfs_special = argv[optind]; in main()
518 &vref)) == -1 || in main()
[all …]
H A Dmount.c231 struct vfstab vget, vref; in main() local
442 vfsnull(&vref); in main()
443 vref.vfs_special = special; in main()
444 vref.vfs_mountp = mountp; in main()
445 vref.vfs_fstype = fstype; in main()
448 while ((ret = getvfsany(fd, &vget, &vref)) > 0) in main()
456 special = vref.vfs_special = mountp; in main()
457 mountp = vref.vfs_mountp = NULL; in main()
459 while ((ret = getvfsany(fd, &vget, &vref)) > 0) in main()