summaryrefslogtreecommitdiffstats
path: root/sys/dev/vn
diff options
context:
space:
mode:
authordyson <dyson@FreeBSD.org>1995-09-04 14:58:14 +0000
committerdyson <dyson@FreeBSD.org>1995-09-04 14:58:14 +0000
commit912bdf25e65e27fab65e3d7f1bc803890346a3f5 (patch)
tree2ab7a4cea1a72d3527794161dd2fdcaf399723ae /sys/dev/vn
parent3f4ad92abfd77b9640f90ee1b2d4c70c6f216299 (diff)
downloadFreeBSD-src-912bdf25e65e27fab65e3d7f1bc803890346a3f5.zip
FreeBSD-src-912bdf25e65e27fab65e3d7f1bc803890346a3f5.tar.gz
Fixed VOP_BMAP. A new argument was added, and I missed this one.
Submitted by: Bruce Evans (bde@freebsd.org)
Diffstat (limited to 'sys/dev/vn')
-rw-r--r--sys/dev/vn/vn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/vn/vn.c b/sys/dev/vn/vn.c
index d5d2687..a1526cd 100644
--- a/sys/dev/vn/vn.c
+++ b/sys/dev/vn/vn.c
@@ -292,7 +292,7 @@ vnstrategy(struct buf *bp)
int off, s, nra;
nra = 0;
- error = VOP_BMAP(vn->sc_vp, bn / bsize, &vp, &nbn, &nra);
+ error = VOP_BMAP(vn->sc_vp, bn / bsize, &vp, &nbn, &nra, NULL);
if (error == 0 && (long)nbn == -1)
error = EIO;
OpenPOWER on IntegriCloud