diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-05-02 14:21:14 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-05-02 14:21:14 +0000 |
| commit | e911eafcbae5366e66f9560ca18bf60c5f8157a4 (patch) | |
| tree | c11aef2f7af5663393e978cd03a223a2ffbe6c69 /sys/nfs | |
| parent | 74de633578b6bec2359f61c95bbbcb4f50a3599b (diff) | |
Notes
Diffstat (limited to 'sys/nfs')
| -rw-r--r-- | sys/nfs/nfs_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs/nfs_vfsops.c b/sys/nfs/nfs_vfsops.c index 421de7c5723c..4c6c5bd24bcd 100644 --- a/sys/nfs/nfs_vfsops.c +++ b/sys/nfs/nfs_vfsops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vfsops.c 8.3 (Berkeley) 1/4/94 - * $Id: nfs_vfsops.c,v 1.27 1996/02/13 18:16:29 wollman Exp $ + * $Id: nfs_vfsops.c,v 1.28 1996/04/30 23:23:09 bde Exp $ */ #include <sys/param.h> @@ -145,7 +145,7 @@ static int nfs_iosize(nmp) * space. */ iosize = max(nmp->nm_rsize, nmp->nm_wsize); - if (iosize < NBPG) iosize = NBPG; + if (iosize < PAGE_SIZE) iosize = PAGE_SIZE; return iosize; } |
