Override NFS read and write size to default to 32k for the i386 here
(can be overridden from a config file).
This commit is contained in:
parent
8ec4ee98dd
commit
ecca88089a
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: param.h,v 1.43 2000/09/19 22:21:54 fvdl Exp $ */
|
||||
/* $NetBSD: param.h,v 1.44 2001/04/02 11:48:18 fvdl Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1990 The Regents of the University of California.
|
||||
|
@ -126,6 +126,13 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef NFS_RSIZE
|
||||
#define NFS_RSIZE 32768
|
||||
#endif
|
||||
#ifndef NFS_WSIZE
|
||||
#define NFS_WSIZE 32768
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Minimum and maximum sizes of the kernel malloc arena in PAGE_SIZE-sized
|
||||
* logical pages.
|
||||
|
|
Loading…
Reference in New Issue