Skip to content

Commit

Permalink
amd64: disable LA57 by default for now
Browse files Browse the repository at this point in the history
(cherry picked from commit 72a42ec)
  • Loading branch information
kostikbel committed May 3, 2021
1 parent dd93a62 commit df6241f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sys/amd64/amd64/pmap.c
Expand Up @@ -2015,8 +2015,7 @@ pmap_bootstrap_la57(void *arg __unused)

if ((cpu_stdext_feature2 & CPUID_STDEXT2_LA57) == 0)
return;
if (!TUNABLE_INT_FETCH("vm.pmap.la57", &la57))
la57 = 1;
TUNABLE_INT_FETCH("vm.pmap.la57", &la57);
if (!la57)
return;

Expand Down

0 comments on commit df6241f

Please sign in to comment.