From 4b18ba9da39a3751f39fc254b3ea56174e5fb1e0 Mon Sep 17 00:00:00 2001 From: pooka Date: Wed, 3 Dec 2008 14:56:05 +0000 Subject: [PATCH] nfsd_use_loan: int -> bool --- sys/nfs/nfs_serv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/nfs/nfs_serv.c b/sys/nfs/nfs_serv.c index 116c9ef5205f..c2abfa462445 100644 --- a/sys/nfs/nfs_serv.c +++ b/sys/nfs/nfs_serv.c @@ -1,4 +1,4 @@ -/* $NetBSD: nfs_serv.c,v 1.140 2008/11/27 14:04:58 pooka Exp $ */ +/* $NetBSD: nfs_serv.c,v 1.141 2008/12/03 14:56:05 pooka Exp $ */ /* * Copyright (c) 1989, 1993 @@ -55,7 +55,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: nfs_serv.c,v 1.140 2008/11/27 14:04:58 pooka Exp $"); +__KERNEL_RCSID(0, "$NetBSD: nfs_serv.c,v 1.141 2008/12/03 14:56:05 pooka Exp $"); #include #include @@ -96,7 +96,7 @@ extern struct nfsstats nfsstats; extern const nfstype nfsv2_type[9]; extern const nfstype nfsv3_type[9]; int nfsrvw_procrastinate = NFS_GATHERDELAY * 1000; -int nfsd_use_loan = 1; /* use page-loan for READ OP */ +bool nfsd_use_loan = true; /* use page-loan for READ OP */ #define nqsrv_getl(vp, rw) /* nothing */