diff options
Diffstat (limited to 'sys/nfsclient/nfs_bio.c')
-rw-r--r-- | sys/nfsclient/nfs_bio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/nfsclient/nfs_bio.c b/sys/nfsclient/nfs_bio.c index c124e64..379419e 100644 --- a/sys/nfsclient/nfs_bio.c +++ b/sys/nfsclient/nfs_bio.c @@ -1032,14 +1032,14 @@ nfs_getcacheblk(struct vnode *vp, daddr_t bn, int size, struct thread *td) nmp = VFSTONFS(mp); if (nmp->nm_flag & NFSMNT_INT) { - bp = getblk(vp, bn, size, PCATCH, 0); + bp = getblk(vp, bn, size, PCATCH, 0, 0); while (bp == NULL) { if (nfs_sigintr(nmp, NULL, td)) return (NULL); - bp = getblk(vp, bn, size, 0, 2 * hz); + bp = getblk(vp, bn, size, 0, 2 * hz, 0); } } else { - bp = getblk(vp, bn, size, 0, 0); + bp = getblk(vp, bn, size, 0, 0, 0); } if (vp->v_type == VREG) { |