diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-04-07 22:41:53 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-04-07 22:41:53 +0000 |
commit | c800258dc2e3603ab4f631b99d0b2a2f8644eceb (patch) | |
tree | c1be24bc6250c68a09798adb3049e0150fa5a20a /sys/arch/sgi/include/vmparam.h | |
parent | 004f4a346ebdae01ba80cfb78180ad6729aa53e6 (diff) |
Allow for up to 32 memory segments.
Diffstat (limited to 'sys/arch/sgi/include/vmparam.h')
-rw-r--r-- | sys/arch/sgi/include/vmparam.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/arch/sgi/include/vmparam.h b/sys/arch/sgi/include/vmparam.h index 24909bbf04f..ba4d5e73e58 100644 --- a/sys/arch/sgi/include/vmparam.h +++ b/sys/arch/sgi/include/vmparam.h @@ -1,5 +1,10 @@ -/* $OpenBSD: vmparam.h,v 1.1 2004/08/06 21:12:19 pefo Exp $ */ +/* $OpenBSD: vmparam.h,v 1.2 2008/04/07 22:41:52 miod Exp $ */ -/* Use Mips generic include file */ +#ifndef _SGI_VMPARAM_H_ +#define _SGI_VMPARAM_H_ + +#define VM_PHYSSEG_MAX 32 /* Max number of physical memory segments */ #include <mips64/vmparam.h> + +#endif /* _SGI_VMPARAM_H_ */ |