aboutsummaryrefslogtreecommitdiff
path: root/sys/nfsserver
diff options
context:
space:
mode:
authorJeff Roberson <jeff@FreeBSD.org>2002-09-25 02:39:39 +0000
committerJeff Roberson <jeff@FreeBSD.org>2002-09-25 02:39:39 +0000
commitd3b85e1c8b39cc3a629e386a7d342a90667c4e9d (patch)
treedeaabdb49178722c03b51d40e69e058c24f167b0 /sys/nfsserver
parent8926aed6975e6660f406def2f2462b7994e8e9d2 (diff)
downloadsrc-d3b85e1c8b39cc3a629e386a7d342a90667c4e9d.tar.gz
src-d3b85e1c8b39cc3a629e386a7d342a90667c4e9d.zip
- Use incore() instead of gbincore() so we don't have to acquire the
vnode interlock.
Notes
Notes: svn path=/head/; revision=103940
Diffstat (limited to 'sys/nfsserver')
-rw-r--r--sys/nfsserver/nfs_serv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nfsserver/nfs_serv.c b/sys/nfsserver/nfs_serv.c
index edf757528805..feeadf5baade 100644
--- a/sys/nfsserver/nfs_serv.c
+++ b/sys/nfsserver/nfs_serv.c
@@ -3701,7 +3701,7 @@ nfsrv_commit(struct nfsrv_descript *nfsd, struct nfssvc_sock *slp,
* should not be set if B_INVAL is set there could be
* a race here since we haven't locked the buffer).
*/
- if ((bp = gbincore(vp, lblkno)) != NULL &&
+ if ((bp = incore(vp, lblkno)) != NULL &&
(bp->b_flags & (B_DELWRI|B_INVAL)) == B_DELWRI) {
if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT)) {
BUF_LOCK(bp, LK_EXCLUSIVE | LK_SLEEPFAIL);