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_MOUNT.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_MOUNT.9')
-rw-r--r-- | share/man/man9/VFS_MOUNT.9 | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/share/man/man9/VFS_MOUNT.9 b/share/man/man9/VFS_MOUNT.9 index 8fd2ac44a3b4..be00b6884139 100644 --- a/share/man/man9/VFS_MOUNT.9 +++ b/share/man/man9/VFS_MOUNT.9 @@ -33,7 +33,7 @@ .Dt VFS_MOUNT 9 .Sh NAME .Nm VFS_MOUNT -.Nd mount a filesystem +.Nd mount a file system .Sh SYNOPSIS .In sys/param.h .In sys/mount.h @@ -41,44 +41,44 @@ .Ft int .Fn VFS_MOUNT "struct mount *mp" "char *path" "caddr_t data" "struct nameidata *ndp" "struct thread *td" .Sh DESCRIPTION -Mount a filesystem into the system's namespace. +Mount a file system into the system's namespace. .Pp Its arguments are: .Bl -tag -width data .It Ar mp -Structure representing the filesystem. +Structure representing the file system. .It Ar path -Pathname where the filesystem is being mounted. +Pathname where the file system is being mounted. .It Ar data -Filesystem specific data. This should be read into the kernel using +File system specific data. This should be read into the kernel using .Xr copyin 9 . .It Ar ndp Contains the result of a .Xr namei 9 call on the pathname of the mountpoint. .It Ar td -Thread which is mounting the filesystem. +Thread which is mounting the file system. .El .Pp -This is called both to mount new filesystems and to change the -attributes of an existing filesystem. If the +This is called both to mount new file systems and to change the +attributes of an existing file system. If the .Dv MNT_UPDATE flag is set in .Fa mp->mnt_flag -then the filesystem should update its internal state from the value of +then the file system should update its internal state from the value of .Fa mp->mnt_flag . -This can be used, for instance, to convert a read-only filesystem to +This can be used, for instance, to convert a read-only file system to read-write. It is also used by .Xr mountd 8 -to update the NFS export information for the filesystem. +to update the NFS export information for the file system. .Pp If the .Dv MNT_UPDATE -flag is not specified, then this is a newly mounted filesystem. The -filesystem code should allocate and initialize +flag is not specified, then this is a newly mounted file system. The +file system code should allocate and initialize any private data needed to represent -the filesystem (it can use the +the file system (it can use the .Fa mp->mnt_data field to store this information). .Sh SEE ALSO |