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 /lib/libc/sys/mmap.2 | |
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 'lib/libc/sys/mmap.2')
-rw-r--r-- | lib/libc/sys/mmap.2 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libc/sys/mmap.2 b/lib/libc/sys/mmap.2 index e78520dc9f20..f336df595787 100644 --- a/lib/libc/sys/mmap.2 +++ b/lib/libc/sys/mmap.2 @@ -145,7 +145,7 @@ this option any VM pages you dirty may be flushed to disk every so often (every 30-60 seconds usually) which can create performance problems if you do not need that to occur (such as when you are using shared file-backed mmap regions for IPC purposes). -Note that VM/filesystem coherency is +Note that VM/file system coherency is maintained whether you use .Dv MAP_NOSYNC or not. @@ -197,9 +197,9 @@ The .Xr msync 2 system call is obsolete since .Bx -implements a coherent filesystem buffer cache. +implements a coherent file system buffer cache. However, it may be -used to associate dirty VM pages with filesystem buffers and thus cause +used to associate dirty VM pages with file system buffers and thus cause them to be flushed to physical media sooner rather then later. .It Dv MAP_PRIVATE Modifications are private. @@ -346,8 +346,8 @@ this gives .Fx a maximum of 8TB filesizes. It is actually bugs in -the filesystem code that causes the limit to be further restricted to +the file system code that causes the limit to be further restricted to 1TB (loss of precision when doing blockno calculations). .Pp -Another reason for the 2GB limit is that filesystem metadata can +Another reason for the 2GB limit is that file system metadata can reside at negative offsets. |