blob: fae123b9fbeedf43f413cc8ae36e3e0760c723a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* $NetBSD: vmparam.h,v 1.6 2000/06/09 05:33:04 soda Exp $ */
/* $OpenBSD: vmparam.h,v 1.3 1997/04/19 17:19:59 pefo Exp $ */
/* NetBSD: vmparam.h,v 1.5 1994/10/26 21:10:10 cgd Exp */
#include <mips/vmparam.h>
/*
* Maximum number of contigous physical memory segment.
*/
#define VM_PHYSSEG_MAX 16
#define VM_NFREELIST 1
#define VM_FREELIST_DEFAULT 0
#if 0 /* changed in OpenBSD */
#define USRTEXT 0x00400000
#endif
#ifndef KSEG2IOBUFSIZE
#define KSEG2IOBUFSIZE kseg2iobufsize /* reserve PTEs for KSEG2 I/O space */
extern vsize_t kseg2iobufsize;
#endif
|