diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-12-12 17:26:04 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-12-12 17:26:04 +0000 |
commit | 8d5d039f80a8d31947f4e84af20e8a56d0009c32 (patch) | |
tree | 8a8960200349aa661a39654202f6e0adc5e7360e /share/man/man9/vfs_getnewfsid.9 | |
parent | e66cdcd7e074533df2cf60b30ee57b5607535d28 (diff) |
Uniformly refer to a file system as "file system".
Approved by: re
Notes
Notes:
svn path=/head/; revision=107788
Diffstat (limited to 'share/man/man9/vfs_getnewfsid.9')
-rw-r--r-- | share/man/man9/vfs_getnewfsid.9 | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/share/man/man9/vfs_getnewfsid.9 b/share/man/man9/vfs_getnewfsid.9 index f11f4a1754b7..c09f0503c133 100644 --- a/share/man/man9/vfs_getnewfsid.9 +++ b/share/man/man9/vfs_getnewfsid.9 @@ -31,7 +31,7 @@ .Os .Sh NAME .Nm vfs_getnewfsid -.Nd "allocate a new filesystem identifier" +.Nd "allocate a new file system identifier" .Sh SYNOPSIS .In sys/param.h .In sys/mount.h @@ -40,11 +40,11 @@ .Sh DESCRIPTION The .Fn vfs_getnewfsid -function allocates a new filesystem identifier for the mount point given. -Filesystems typically call +function allocates a new file system identifier for the mount point given. +File systems typically call .Fn vfs_getnewfsid in their mount routine in order to acquire a unique ID within the system -which can later be used to uniquely identify the filesystem via calls such as +which can later be used to uniquely identify the file system via calls such as .Xr vfs_getvfs 9 . .Pp The actual @@ -53,8 +53,8 @@ is made up of two 32 bit integers, that are stored in the .Vt statfs structure of .Fa mp . -The first integer is unique in the set of mounted filesystems, -while the second holds the filesystem type. +The first integer is unique in the set of mounted file systems, +while the second holds the file system type. .Bd -literal typedef struct fsid { int32_t val[2]; |