aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-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 d5d268717e16..a1526cdf0860 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;