Bump some defaults and maximums to better values.

This commit is contained in:
fvdl 2000-09-19 22:05:55 +00:00
parent 8fd422dede
commit 7f432c74ab
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: nfs.h,v 1.23 2000/09/19 17:04:50 bjh21 Exp $ */
/* $NetBSD: nfs.h,v 1.24 2000/09/19 22:05:55 fvdl Exp $ */
/*
* Copyright (c) 1989, 1993, 1995
* The Regents of the University of California. All rights reserved.
@ -61,10 +61,10 @@
#ifndef NFS_MAXATTRTIMO
#define NFS_MAXATTRTIMO 60
#endif
#define NFS_WSIZE 8192 /* Def. write data size <= 8192 */
#define NFS_RSIZE 8192 /* Def. read data size <= 8192 */
#define NFS_WSIZE 32768 /* Def. write data size */
#define NFS_RSIZE 32768 /* Def. read data size */
#define NFS_READDIRSIZE 8192 /* Def. readdir size */
#define NFS_DEFRAHEAD 1 /* Def. read ahead # blocks */
#define NFS_DEFRAHEAD 2 /* Def. read ahead # blocks */
#define NFS_MAXRAHEAD 4 /* Max. read ahead # blocks */
#define NFS_MAXUIDHASH 64 /* Max. # of hashed uid entries/mp */
#define NFS_MAXASYNCDAEMON 20 /* Max. number async_daemons runable */