Searched refs:fstype (Results 176 - 187 of 187) sorted by relevance

12345678

/illumos-gate/usr/src/uts/common/fs/udfs/
H A Dudf_vfsops.c1912 udfinit(int fstype, char *name) argument
1930 error = vfs_setfsops(fstype, udf_vfsops_template, NULL);
1938 (void) vfs_freevfsops_by_type(fstype);
1943 udf_fstype = fstype;
/illumos-gate/usr/src/cmd/hal/hald/solaris/
H A Ddevinfo_storage.c1015 hal_device_property_set_string (d, "volume.fstype", "");
1453 const char *fstype; local
1482 fstype = hal_device_property_get_string (d, "volume.fstype");
1484 if (is_partition && (partition_number > 0) && (strcmp (fstype, "pcfs") == 0)) {
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocksubr.c219 sockinit(int fstype, char *name) argument
228 error = vfs_setfsops(fstype, sock_vfsops_template, NULL);
305 (void) vfs_freevfsops_by_type(fstype);
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_vfsops.c2104 zfs_vfsinit(int fstype, char *name) argument
2108 zfsfstype = fstype;
2113 error = vfs_setfsops(fstype, zfs_vfsops_template, &zfs_vfsops);
H A Dzfs_ctldir.c902 margs.fstype = "zfs";
/illumos-gate/usr/src/cmd/svr4pkg/hdrs/
H A Dlibinst.h272 char *fstype, char *remote_name));
/illumos-gate/usr/src/uts/common/c2/
H A Daudit_event.c1722 char *fstype, *hostname; local
1728 long fstype; /* char * */ member in struct:a
1733 u_fstype = (uintptr_t)uap->fstype;
1737 fstype = kmem_alloc(MAXNAMELEN, KM_SLEEP);
1738 if (copyinstr((caddr_t)u_fstype, (caddr_t)fstype, MAXNAMELEN, &len))
1742 au_uwrite(au_to_text(fstype));
1744 if (strncmp(fstype, "nfs", 3) == 0) {
1770 kmem_free(fstype, MAXNAMELEN);
/illumos-gate/usr/src/uts/common/fs/
H A Dvnode.c83 * the same fstype index that is used to index into the vfssw table.
156 * fstype - Index into vsanchor_fstype[], same as index into vfssw[]
614 * If possible, determine which vopstats by fstype to use and
620 int fstype = 0; /* Index into vfssw[] */ local
627 * Set up the fstype. We go to so much trouble because all versions
628 * of NFS use the same fstype in their vfs even though they have
633 fstype = vswp - vfssw; /* Gets us the index */
635 fstype = vfsp->vfs_fstype;
639 * Point to the per-fstype vopstats. The only valid values are
643 if (fstype >
[all...]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs3_vfsops.c544 error = copystr(uap->fstype, name, FSTYPSZ, &n);
548 error = copyinstr(uap->fstype, name, FSTYPSZ, &n);
H A Dnfs_vfsops.c561 error = copystr(uap->fstype, name, FSTYPSZ, &n);
563 error = copyinstr(uap->fstype, name, FSTYPSZ, &n);
H A Dnfs4_stub_vnops.c1908 /* fstype-independent mount options not covered elsewhere */
1913 uap->fstype = MNTTYPE_NFS4;
/illumos-gate/usr/src/uts/common/os/
H A Dmodsysfile.c1477 setbootfstype(char *fstype) argument
1479 (void) copystr(fstype, rootfs.bo_fstype, BO_MAXFSNAME, NULL);
1480 BMDPRINTF(("rootfs fstype: %s\n", rootfs.bo_fstype));

Completed in 1121 milliseconds

12345678