summaryrefslogtreecommitdiff
path: root/sys/nfs/nfs_var.h
diff options
context:
space:
mode:
authorThordur I. Bjornsson <thib@cvs.openbsd.org>2007-06-01 07:13:48 +0000
committerThordur I. Bjornsson <thib@cvs.openbsd.org>2007-06-01 07:13:48 +0000
commit68fd88eac1cb9c4f4521b54e76cd69871c606d50 (patch)
treee6d5ca5c09d6cf406d5a74b3a5f7c2643cb0a830 /sys/nfs/nfs_var.h
parent6fc98f2cf1fdc06c7992f7c24569e46bfddbd277 (diff)
daddr_t -> daddr64_t;
Basically the usage of daddr_t was to math out arguments to nfs_getcacheblk, wich calls getblk(); ok deraadt@
Diffstat (limited to 'sys/nfs/nfs_var.h')
-rw-r--r--sys/nfs/nfs_var.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfs_var.h b/sys/nfs/nfs_var.h
index 9680562d095..8c774ef2164 100644
--- a/sys/nfs/nfs_var.h
+++ b/sys/nfs/nfs_var.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: nfs_var.h,v 1.26 2007/04/19 14:46:44 thib Exp $ */
+/* $OpenBSD: nfs_var.h,v 1.27 2007/06/01 07:13:47 thib Exp $ */
/* $NetBSD: nfs_var.h,v 1.3 1996/02/18 11:53:54 fvdl Exp $ */
/*
@@ -63,7 +63,7 @@ union nethostaddr;
/* nfs_bio.c */
int nfs_bioread(struct vnode *, struct uio *, int, struct ucred *);
int nfs_write(void *);
-struct buf *nfs_getcacheblk(struct vnode *, daddr_t, int, struct proc *);
+struct buf *nfs_getcacheblk(struct vnode *, daddr64_t, int, struct proc *);
int nfs_vinvalbuf(struct vnode *, int, struct ucred *, struct proc *,
int);
int nfs_asyncio(struct buf *);