summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorPedro Martelletto <pedro@cvs.openbsd.org>2006-10-03 19:49:07 +0000
committerPedro Martelletto <pedro@cvs.openbsd.org>2006-10-03 19:49:07 +0000
commitd412cab808d2c2bb6a48febc7f472ecda52afd54 (patch)
tree2ddbe6cda31edaa0df65a54acb57a2d7375118cb /sys/dev
parent872b83967c445e3e387687916d4cf7f7a83e2137 (diff)
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')
-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;