Pārlūkot izejas kodu

x86: mtrr_cleanup try gran_size to less than 1M, v3

J.A. Magallón reported:

 >> Also, on a 64 bit box with 4Gb, it gives this:
 >>
 >> cicely:~# cat /proc/mtrr
 >> reg00: base=0x00000000 (   0MB), size=4096MB: write-back, count=1
 >> reg01: base=0x100000000 (4096MB), size=1024MB: write-back, count=1
 >> reg02: base=0x140000000 (5120MB), size= 512MB: write-back, count=1
 >> reg03: base=0x160000000 (5632MB), size= 256MB: write-back, count=1
 >> reg04: base=0x80000000 (2048MB), size=2048MB: uncachable, count=1

boundary handling has a problem ... fix it.

Reported-by: J.A. Magallón <jamagallon@ono.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Yinghai Lu 16 gadi atpakaļ
vecāks
revīzija
834836ee6a
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      arch/x86/kernel/cpu/mtrr/main.c

+ 1 - 1
arch/x86/kernel/cpu/mtrr/main.c

@@ -1044,7 +1044,7 @@ second_try:
 		hole_sizek = range0_sizek - state->range_sizek - second_sizek;
 
 		/* hole size should be less than half of range0 size */
-		if (hole_sizek > (range0_sizek >> 1) &&
+		if (hole_sizek >= (range0_sizek >> 1) &&
 		    range0_sizek >= chunk_sizek) {
 			range0_sizek -= chunk_sizek;
 			second_sizek = 0;