reduced MTRR min size to 512KB

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24679 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2008-03-30 14:25:01 +00:00
parent a79869d9c4
commit 7522f3082d

View File

@ -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];