aboutsummaryrefslogtreecommitdiff
path: root/sys/nfs4client
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2004-03-11 18:02:36 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2004-03-11 18:02:36 +0000
commit4d453ef101089f345bc040c8f7559c257f64d6d9 (patch)
tree24546ef169a9ce1a21318822c62c8a981c08e1a7 /sys/nfs4client
parent2b348f7429a63b6525aea0288b31bc2c337bc3fb (diff)
downloadsrc-4d453ef101089f345bc040c8f7559c257f64d6d9.tar.gz
src-4d453ef101089f345bc040c8f7559c257f64d6d9.zip
Properly vector all bwrite() and BUF_WRITE() calls through the same path
and s/BUF_WRITE()/bwrite()/ since it now does the same as bwrite().
Notes
Notes: svn path=/head/; revision=126853
Diffstat (limited to 'sys/nfs4client')
-rw-r--r--sys/nfs4client/nfs4_vnops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nfs4client/nfs4_vnops.c b/sys/nfs4client/nfs4_vnops.c
index 15889d502ddc..5b9ea3bb1366 100644
--- a/sys/nfs4client/nfs4_vnops.c
+++ b/sys/nfs4client/nfs4_vnops.c
@@ -2858,7 +2858,7 @@ loop:
else
bp->b_flags |= B_ASYNC | B_WRITEINPROG;
splx(s);
- BUF_WRITE(bp);
+ bwrite(bp);
goto loop;
}
splx(s);