summaryrefslogtreecommitdiffstats
path: root/sys/dev/vnd.c
diff options
context:
space:
mode:
authorpedro <pedro@openbsd.org>2006-10-03 19:49:06 +0000
committerpedro <pedro@openbsd.org>2006-10-03 19:49:06 +0000
commit06a6ab3ae595bf2e915ab914ec2caf19ad0a962e (patch)
treebcc096ee3123cfb91b8258fc1f9371f8520d1021 /sys/dev/vnd.c
parentmake sure to call SLIST_INIT on sc->rx_freelist. (diff)
downloadwireguard-openbsd-06a6ab3ae595bf2e915ab914ec2caf19ad0a962e.tar.xz
wireguard-openbsd-06a6ab3ae595bf2e915ab914ec2caf19ad0a962e.zip
Introduce daddr64_t and use it for physical block numbers
Okay weingart@, "I'm game with putting my name on it" dlg@
Diffstat (limited to 'sys/dev/vnd.c')
-rw-r--r--sys/dev/vnd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/vnd.c b/sys/dev/vnd.c
index a8d132a8641..ee199b83748 100644
--- a/sys/dev/vnd.c
+++ b/sys/dev/vnd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vnd.c,v 1.63 2006/09/20 13:51:19 pedro Exp $ */
+/* $OpenBSD: vnd.c,v 1.64 2006/10/03 19:49:06 pedro Exp $ */
/* $NetBSD: vnd.c,v 1.26 1996/03/30 23:06:11 christos Exp $ */
/*
@@ -549,7 +549,7 @@ vndstrategy(bp)
flags = bp->b_flags | B_CALL;
for (resid = bp->b_resid; resid; resid -= sz) {
struct vnode *vp;
- daddr_t nbn;
+ daddr64_t nbn;
int off, s, nra;
nra = 0;