diff options
| author | Mike Pritchard <mpp@FreeBSD.org> | 1997-01-28 06:12:54 +0000 |
|---|---|---|
| committer | Mike Pritchard <mpp@FreeBSD.org> | 1997-01-28 06:12:54 +0000 |
| commit | ad2c737e4fda16c3c3ee4c52782b12fda3af0bb2 (patch) | |
| tree | 53a0df66abbf5663afbec9234ef66672ff6c4672 | |
| parent | b6febe7acf16089463b9f074171ec1c4ac75ccc9 (diff) | |
Notes
| -rw-r--r-- | share/man/man5/fstab.5 | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/share/man/man5/fstab.5 b/share/man/man5/fstab.5 index 1e51904b6e3b..4aa829c90ce4 100644 --- a/share/man/man5/fstab.5 +++ b/share/man/man5/fstab.5 @@ -204,7 +204,8 @@ a value of zero is returned and .Xr fsck 8 will assume that the filesystem does not need to be checked. .Bd -literal -#define FSTAB_RW "rw" /* read-write device */ +#define FSTAB_RW "rw" /* read/write device */ +#define FSTAB_RQ "rq" /* read/write with quotas */ #define FSTAB_RO "ro" /* read-only device */ #define FSTAB_SW "sw" /* swap device */ #define FSTAB_XX "xx" /* ignore totally */ @@ -212,11 +213,11 @@ will assume that the filesystem does not need to be checked. struct fstab { char *fs_spec; /* block special device name */ char *fs_file; /* filesystem path prefix */ - char *fs_vfstype; /* type of filesystem */ - char *fs_mntops; /* comma separated mount options */ - char *fs_type; /* rw, ro, sw, or xx */ + char *fs_vfstype; /* File system type, ufs, nfs */ + char *fs_mntops; /* Mount options ala -o */ + char *fs_type; /* FSTAB_* from fs_mntops */ int fs_freq; /* dump frequency, in days */ - int fs_passno; /* pass number on parallel dump */ + int fs_passno; /* pass number on parallel fsck */ }; .Ed .Pp |
