Searched defs:vtab (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/prtvtoc/
H A Dprtvtoc.c245 struct vfstab vtab; local
297 while (getvfsent(file, &vtab) == 0) {
298 item = vtab.vfs_special;
299 if ((item == NULL) || (vtab.vfs_mountp == NULL))
328 list[parttn(minor(sb.st_rdev))] = safe_strdup(vtab.vfs_mountp);
/illumos-gate/usr/src/uts/common/fs/dev/
H A Dsdev_subr.c389 vn_setops(vp, sdev_get_vop(dv)); /* from internal vtab */
514 static struct sdev_vop_table vtab[] = variable in typeref:struct:sdev_vop_table
571 for (i = 0; vtab[i].vt_name; i++) {
572 if (strcmp(vtab[i].vt_name, path) == 0)
573 return (&vtab[i]);
574 if (vtab[i].vt_flags & SDEV_SUBDIR) {
575 vlen = strlen(vtab[i].vt_name);
576 if ((strncmp(vtab[i].vt_name, path,
578 return (&vtab[i]);
586 * sets a directory's vnodeops if the directory is in the vtab;
[all...]
/illumos-gate/usr/src/cmd/fs.d/
H A Ddf.c1751 struct vfstab vtab; local
1757 status = getvfsspec(fp, &vtab, special);
1763 if (F_option && ! EQ(FSType, vtab.vfs_fstype))
1765 "warning: %s is of type %s", special, vtab.vfs_fstype);
1766 return (new_string(vtab.vfs_fstype));

Completed in 322 milliseconds