X86_CR4_PGE
| X86_CR4_PGE | X86_CR4_PCE | X86_CR4_OSFXSR | X86_CR4_PCIDE \
native_write_cr4(cr4 ^ X86_CR4_PGE);
__write_cr4(saved_cr4 & ~X86_CR4_PGE);
__write_cr4(cr4 & ~X86_CR4_PGE);
| X86_CR4_OSXMMEXCPT | X86_CR4_PGE | X86_CR4_TSD | X86_CR4_FSGSBASE \
#define X86_CR4_TLBFLUSH_BITS (X86_CR4_PGE | X86_CR4_PCIDE | X86_CR4_PAE | X86_CR4_SMEP)
#define X86_CR4_PDPTR_BITS (X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PAE | X86_CR4_SMEP)
cr4_fixed1_update(X86_CR4_PGE, edx, feature_bit(PGE));
if (((cr4 ^ old_cr4) & X86_CR4_PGE) ||
cr4_set_bits_and_update_boot(X86_CR4_PGE);
cr4 &= ~(X86_CR4_PGE | X86_CR4_PSE | X86_CR4_PCE);
X86_CR4_MCE | X86_CR4_PGE | X86_CR4_PCE | \