summaryrefslogtreecommitdiff
path: root/sys/nfsserver
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2008-10-12 20:06:59 +0000
committerRobert Watson <rwatson@FreeBSD.org>2008-10-12 20:06:59 +0000
commit63a1c6ba59a552f37ae8fb9c9b3801e4c57233b8 (patch)
tree6d71c06535eadceb36697f6fde3a461829e6c0b0 /sys/nfsserver
parentac2456bfc3c57bca25ed5fc9171ed872a6014eb7 (diff)
Notes
Diffstat (limited to 'sys/nfsserver')
-rw-r--r--sys/nfsserver/nfs_serv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfsserver/nfs_serv.c b/sys/nfsserver/nfs_serv.c
index 901a4bd8f887..a117cb8911eb 100644
--- a/sys/nfsserver/nfs_serv.c
+++ b/sys/nfsserver/nfs_serv.c
@@ -1174,7 +1174,7 @@ nfsrv_write(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
uiop->uio_td = NULL;
uiop->uio_offset = off;
error = VOP_WRITE(vp, uiop, ioflags, cred);
- /* XXXRW: unlocked write. */
+ /* Unlocked write. */
nfsrvstats.srvvop_writes++;
FREE((caddr_t)iv, M_TEMP);
}
@@ -1488,7 +1488,7 @@ loop1:
}
if (!error) {
error = VOP_WRITE(vp, uiop, ioflags, cred);
- /* XXXRW: unlocked write. */
+ /* Unlocked write. */
nfsrvstats.srvvop_writes++;
vn_finished_write(mntp);
}