Home
last modified time | relevance | path

Searched refs:fstab (Results 1 – 23 of 23) sorted by relevance

/titanic_50/usr/src/lib/libbc/libc/gen/common/
H A Dfstab.c34 static struct fstab *pfs;
38 fstabscan(struct fstab *fs) in fstabscan()
93 struct fstab *
99 return ((struct fstab *)0); in getfsent()
101 pfs = (struct fstab *)malloc(sizeof (struct fstab)); in getfsent()
107 return ((struct fstab *)0); in getfsent()
111 struct fstab *
114 struct fstab *fsp; in getfsspec()
117 return ((struct fstab *)0); in getfsspec()
121 return ((struct fstab *)0); in getfsspec()
[all …]
/titanic_50/usr/src/lib/libbc/inc/include/
H A Dfstab.h48 struct fstab{ struct
56 struct fstab *getfsent(); argument
57 struct fstab *getfsspec();
58 struct fstab *getfsfile();
59 struct fstab *getfstype();
/titanic_50/usr/src/cmd/fs.d/ufs/quot/
H A Dquot.c192 FILE *fstab; in quotall() local
198 fstab = fopen(MNTTAB, "r"); in quotall()
199 if (fstab == NULL) { in quotall()
203 while (getmntent(fstab, &mntp) == NULL) { in quotall()
220 (void) fclose(fstab); in quotall()
226 FILE *fstab; in check() local
250 fstab = fopen(MNTTAB, "r"); in check()
251 if (fstab == NULL) { in check()
255 while (getmntent(fstab, &mntp) == NULL) { in check()
469 FILE *fstab; in getdev() local
[all …]
/titanic_50/usr/src/cmd/hal/tools/
H A Dhal-storage-shared.c162 struct fstab *fstab; in fstab_next() local
164 fstab = getfsent (); in fstab_next()
167 if (mount_point != NULL && fstab != NULL) { in fstab_next()
168 *mount_point = fstab->fs_file; in fstab_next()
171 return fstab ? fstab->fs_spec : NULL; in fstab_next()
/titanic_50/usr/src/cmd/fs.d/ufs/repquota/
H A Drepquota.c439 FILE *fstab; in quotactl() local
449 if ((fstab = fopen(MNTTAB, "r")) == NULL) { in quotactl()
455 while ((status = getmntent(fstab, &mntp)) == NULL) { in quotactl()
472 (void) fclose(fstab); in quotactl()
/titanic_50/usr/src/cmd/zoneadm/
H A Dzoneadm.c2197 verify_fs_special(struct zone_fstab *fstab) in verify_fs_special() argument
2209 if (strcmp(fstab->zone_fs_type, MNTTYPE_ZFS) == 0) in verify_fs_special()
2210 return (verify_fs_zfs(fstab)); in verify_fs_special()
2212 if (stat64(fstab->zone_fs_special, &st) != 0) { in verify_fs_special()
2214 "%s: could not access %s: %s\n"), fstab->zone_fs_dir, in verify_fs_special()
2215 fstab->zone_fs_special, strerror(errno)); in verify_fs_special()
2228 fstab->zone_fs_special); in verify_fs_special()
2250 struct zone_fstab fstab; in verify_filesystems() local
2264 while (zonecfg_getfsent(handle, &fstab) == Z_OK) { in verify_filesystems()
2265 if (!zonecfg_valid_fs_type(fstab.zone_fs_type)) { in verify_filesystems()
[all …]
H A Dzfs.c1245 verify_fs_zfs(struct zone_fstab *fstab) in verify_fs_zfs() argument
1250 if ((zhp = zfs_open(g_zfs, fstab->zone_fs_special, in verify_fs_zfs()
1254 fstab->zone_fs_dir, fstab->zone_fs_special); in verify_fs_zfs()
1261 fstab->zone_fs_dir, fstab->zone_fs_special); in verify_fs_zfs()
1270 fstab->zone_fs_dir, fstab->zone_fs_special); in verify_fs_zfs()
H A Dzoneadm.h130 extern int verify_fs_zfs(struct zone_fstab *fstab);
/titanic_50/usr/src/cmd/fs.d/nfs/rquotad/
H A Drpc.rquotad.c419 FILE *fstab; local
428 if ((fstab = fopen(MNTTAB, "r")) == NULL) {
433 while ((status = getmntent(fstab, &mntp)) == NULL) {
444 fclose(fstab);
/titanic_50/usr/src/cmd/prtvtoc/
H A Dprtvtoc.c102 static char *fstab = VFSTAB; /* Fstab pathname */ variable
127 fstab = optarg; in main()
288 if ((file = fopen(fstab, "r")) == NULL) { in getmntpt()
289 (void) warn(fstab, strerror(errno)); in getmntpt()
/titanic_50/usr/src/cmd/zonecfg/
H A Dzonecfg.c1794 struct zone_fstab fstab; in export_func() local
1928 while (zonecfg_getfsent(handle, &fstab) == Z_OK) { in export_func()
1933 export_prop(of, PT_DIR, fstab.zone_fs_dir); in export_func()
1934 export_prop(of, PT_SPECIAL, fstab.zone_fs_special); in export_func()
1935 export_prop(of, PT_RAW, fstab.zone_fs_raw); in export_func()
1936 export_prop(of, PT_TYPE, fstab.zone_fs_type); in export_func()
1937 for (optptr = fstab.zone_fs_options; optptr != NULL; in export_func()
1956 zonecfg_free_fs_option_list(fstab.zone_fs_options); in export_func()
2655 fill_in_fstab(cmd_t *cmd, struct zone_fstab *fstab, boolean_t fill_in_only) in fill_in_fstab() argument
2663 bzero(fstab, sizeof (*fstab)); in fill_in_fstab()
[all …]
/titanic_50/usr/src/cmd/fs.d/ufs/edquota/
H A Dedquota.c819 FILE *fstab; in quotactl() local
838 if ((fstab = fopen(MNTTAB, "r")) == NULL) { in quotactl()
844 while ((status = getmntent(fstab, &mntp)) == NULL) { in quotactl()
872 (void) fclose(fstab); in quotactl()
/titanic_50/usr/src/cmd/fs.d/ufs/quotacheck/
H A Dquotacheck.c708 FILE *fstab; in quotactl() local
718 if ((fstab = fopen(MNTTAB, "r")) == NULL) { in quotactl()
724 while ((status = getmntent(fstab, &mntp)) == NULL) { in quotactl()
737 fclose(fstab); in quotactl()
/titanic_50/usr/src/cmd/fs.d/ufs/quota/
H A Dquota.c671 FILE *fstab; in quotactl() local
681 if ((fstab = fopen(MNTTAB, "r")) == NULL) { in quotactl()
687 while ((status = getmntent(fstab, &mnt)) == NULL) { in quotactl()
703 fclose(fstab); in quotactl()
/titanic_50/usr/src/lib/libxcurses/h/posix/
H A Dmkslocal.h813 #define M_FSALL "/etc/fstab"
/titanic_50/usr/src/cmd/zoneadmd/
H A Dvplat.c1607 struct zone_fstab *tmp_ptr, *fs_ptr, *fsp, fstab; in mount_filesystems_fsent() local
1617 while (zonecfg_getfsent(handle, &fstab) == Z_OK) { in mount_filesystems_fsent()
1624 strcmp(fstab.zone_fs_type, MNTTYPE_ZFS) == 0) in mount_filesystems_fsent()
1641 fstab.zone_fs_dir, sizeof (fsp->zone_fs_dir)); in mount_filesystems_fsent()
1642 (void) strlcpy(fsp->zone_fs_raw, fstab.zone_fs_raw, in mount_filesystems_fsent()
1644 (void) strlcpy(fsp->zone_fs_type, fstab.zone_fs_type, in mount_filesystems_fsent()
1646 fsp->zone_fs_options = fstab.zone_fs_options; in mount_filesystems_fsent()
1663 (void) strlcat(fsp->zone_fs_special, fstab.zone_fs_special, in mount_filesystems_fsent()
/titanic_50/usr/src/lib/libxcurses/h/
H A Dmks.h244 #define M_FSALL M_ETCDIR(fstab)
/titanic_50/usr/src/lib/libbc/sparc/
H A DMakefile62 fstab.o ftok.o ftw.o getauid.o getauditflags.o \
/titanic_50/usr/src/lib/libast/common/
H A DRELEASE385 05-02-11 port/mnt.c: handle lynxos MOUNTED=/etc/fstab
1043 00-12-25 mnt.c: handle " and ' quoting for fstab
/titanic_50/usr/src/grub/grub-0.97/docs/
H A Dgrub.info-21243 grub> cat /etc/fstab
H A Dgrub.texi2732 grub> @kbd{cat /etc/fstab}
H A Dgrub.info2547 grub> cat /etc/fstab
/titanic_50/usr/src/grub/grub-0.97/
H A DChangeLog1723 problem on Linux with devfs and old device names in /etc/fstab.