summaryrefslogtreecommitdiff
path: root/sys/nfsclient/nfs_vfsops.c
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2007-01-25 13:07:25 +0000
committerBruce Evans <bde@FreeBSD.org>2007-01-25 13:07:25 +0000
commite43982a80157e32edd0b3959552a343fdfd9ad77 (patch)
tree772c0073d1de70b0ce8ca09f64842cc6f2a7c106 /sys/nfsclient/nfs_vfsops.c
parent4ae90ca5340d1d65313016861a46c18712d2de8f (diff)
Notes
Diffstat (limited to 'sys/nfsclient/nfs_vfsops.c')
-rw-r--r--sys/nfsclient/nfs_vfsops.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/sys/nfsclient/nfs_vfsops.c b/sys/nfsclient/nfs_vfsops.c
index 653c946743a6..e1055eab2eeb 100644
--- a/sys/nfsclient/nfs_vfsops.c
+++ b/sys/nfsclient/nfs_vfsops.c
@@ -105,8 +105,8 @@ static int nfs_tprintf_delay = NFS_TPRINTF_DELAY;
SYSCTL_INT(_vfs_nfs, NFS_TPRINTF_DELAY,
downdelayinterval, CTLFLAG_RW, &nfs_tprintf_delay, 0, "");
-static int nfs_iosize(struct nfsmount *nmp);
-static void nfs_decode_args(struct mount *mp, struct nfsmount *nmp, struct nfs_args *argp);
+static void nfs_decode_args(struct mount *mp, struct nfsmount *nmp,
+ struct nfs_args *argp);
static int mountnfs(struct nfs_args *, struct mount *,
struct sockaddr *, char *, struct vnode **,
struct ucred *cred);
@@ -174,7 +174,7 @@ static void nfs_convert_diskless(void);
static void nfs_convert_oargs(struct nfs_args *args,
struct onfs_args *oargs);
-static int
+int
nfs_iosize(struct nfsmount *nmp)
{
int iosize;
@@ -185,10 +185,9 @@ nfs_iosize(struct nfsmount *nmp)
* that it is at least one VM page to avoid wasting buffer
* space.
*/
- iosize = max(nmp->nm_rsize, nmp->nm_wsize);
- if (iosize < PAGE_SIZE)
- iosize = PAGE_SIZE;
- return iosize;
+ iosize = imax(nmp->nm_rsize, nmp->nm_wsize);
+ iosize = imax(iosize, PAGE_SIZE);
+ return (iosize);
}
static void