diff options
author | phk <phk@FreeBSD.org> | 2003-01-03 06:32:15 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-01-03 06:32:15 +0000 |
commit | daf6948653371fc707e009c01cb68aaf25092743 (patch) | |
tree | c1a67015350cd075392cc71ce5ac0f487b1e3711 /sys/nfsclient | |
parent | cd377db9e281126ef0a7198c61f61ba5ebfea726 (diff) | |
download | FreeBSD-src-daf6948653371fc707e009c01cb68aaf25092743.zip FreeBSD-src-daf6948653371fc707e009c01cb68aaf25092743.tar.gz |
Convert calls to BUF_STRATEGY to VOP_STRATEGY calls. This is a no-op since
all BUF_STRATEGY did in the first place was call VOP_STRATEGY.
Diffstat (limited to 'sys/nfsclient')
-rw-r--r-- | sys/nfsclient/nfs_vnops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/nfsclient/nfs_vnops.c b/sys/nfsclient/nfs_vnops.c index ad5c357..51148d6 100644 --- a/sys/nfsclient/nfs_vnops.c +++ b/sys/nfsclient/nfs_vnops.c @@ -2952,7 +2952,7 @@ nfs_writebp(struct buf *bp, int force, struct thread *td) if (force) bp->b_flags |= B_WRITEINPROG; BUF_KERNPROC(bp); - BUF_STRATEGY(bp); + VOP_STRATEGY(bp->b_vp, bp); if( (oldflags & B_ASYNC) == 0) { int rtval = bufwait(bp); |