mirror of
https://github.com/memtest86plus/memtest86plus.git
synced 2024-11-23 08:26:23 -06:00
Don't turn the cache off in test 0 when performing dummy runs.
This should fix the slow startup on multi-socket machines (issue #16).
This commit is contained in:
parent
f8b82eb0bd
commit
3245b6d916
@ -107,9 +107,9 @@ int run_test(int my_cpu, int test, int stage, int iterations)
|
||||
switch (test) {
|
||||
// Address test, walking ones.
|
||||
case 0:
|
||||
cache_off();
|
||||
if (my_cpu >= 0) cache_off();
|
||||
ticks += test_addr_walk1(my_cpu);
|
||||
cache_on();
|
||||
if (my_cpu >= 0) cache_on();
|
||||
BAILOUT;
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user