From 7522f3082d8a249e7ab59381dd35212d52ab398a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Sun, 30 Mar 2008 14:25:01 +0000 Subject: [PATCH] reduced MTRR min size to 512KB git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24679 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/arch/x86/arch_vm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/kernel/arch/x86/arch_vm.cpp b/src/system/kernel/arch/x86/arch_vm.cpp index a7486fce93..74ae535405 100644 --- a/src/system/kernel/arch/x86/arch_vm.cpp +++ b/src/system/kernel/arch/x86/arch_vm.cpp @@ -207,7 +207,7 @@ set_memory_type(int32 id, uint64 base, uint64 length, uint32 type) #define MTRR_MAX_SOLUTIONS 5 // usually MTRR count is eight, keep a few for other needs -#define MTRR_MIN_SIZE 0x100000 // 1 MB +#define MTRR_MIN_SIZE 0x80000 // 512 KB static int64 sSolutions[MTRR_MAX_SOLUTIONS]; static int32 sSolutionCount; static int64 sPropositions[MTRR_MAX_SOLUTIONS];