Commit a3d7b7dd authored by H. Peter Anvin's avatar H. Peter Anvin

x86, asm, cleanup: Replace open-coded control register values with symbolic

Clean up an unnecessary open-coded control register values.
Signed-off-by: default avatarH. Peter Anvin <hpa@linux.intel.com>
Link: http://lkml.kernel.org/n/tip-um7za1nzf6brb17o0h4om6e3@git.kernel.org
parent d1fbefcb
...@@ -167,7 +167,7 @@ static void post_set(void) ...@@ -167,7 +167,7 @@ static void post_set(void)
setCx86(CX86_CCR3, ccr3); setCx86(CX86_CCR3, ccr3);
/* Enable caches */ /* Enable caches */
write_cr0(read_cr0() & 0xbfffffff); write_cr0(read_cr0() & ~X86_CR0_CD);
/* Restore value of CR4 */ /* Restore value of CR4 */
if (cpu_has_pge) if (cpu_has_pge)
......
...@@ -701,7 +701,7 @@ static void post_set(void) __releases(set_atomicity_lock) ...@@ -701,7 +701,7 @@ static void post_set(void) __releases(set_atomicity_lock)
mtrr_wrmsr(MSR_MTRRdefType, deftype_lo, deftype_hi); mtrr_wrmsr(MSR_MTRRdefType, deftype_lo, deftype_hi);
/* Enable caches */ /* Enable caches */
write_cr0(read_cr0() & 0xbfffffff); write_cr0(read_cr0() & ~X86_CR0_CD);
/* Restore value of CR4 */ /* Restore value of CR4 */
if (cpu_has_pge) if (cpu_has_pge)
......
...@@ -186,7 +186,7 @@ identity_mapped: ...@@ -186,7 +186,7 @@ identity_mapped:
movl CP_PA_PGD(%ebx), %eax movl CP_PA_PGD(%ebx), %eax
movl %eax, %cr3 movl %eax, %cr3
movl %cr0, %eax movl %cr0, %eax
orl $(1<<31), %eax orl $X86_CR0_PG, %eax
movl %eax, %cr0 movl %eax, %cr0
lea PAGE_SIZE(%edi), %esp lea PAGE_SIZE(%edi), %esp
movl %edi, %eax movl %edi, %eax
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment