aboutsummaryrefslogtreecommitdiffstats
path: root/man2/open.2
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2008-10-29 11:31:22 -0500
committerMichael Kerrisk <mtk.manpages@gmail.com>2008-10-29 14:54:27 -0500
commita439142940e2b58c1655a9af1f91440e10c498ba (patch)
tree84a94f180022f36fc010ad4358f91953c683310e /man2/open.2
parent2250b3eea518329452606abe0134c4908fd60a2d (diff)
downloadman-pages-a439142940e2b58c1655a9af1f91440e10c498ba.tar.gz
open.2: srcfix: add comments re NFS and O_APPEND
Diffstat (limited to 'man2/open.2')
-rw-r--r--man2/open.23
1 files changed, 3 insertions, 0 deletions
diff --git a/man2/open.2 b/man2/open.2
index 24e9046e3d..1d0c91fe18 100644
--- a/man2/open.2
+++ b/man2/open.2
@@ -148,6 +148,9 @@ as if with
.B O_APPEND
may lead to corrupted files on NFS file systems if more than one process
appends data to a file at once.
+.\" For more background, see
+.\" http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=453946
+.\" http://nfs.sourceforge.net/
This is because NFS does not support
appending to a file, so the client kernel has to simulate it, which
can't be done without a race condition.