From: mlarkin Date: Mon, 12 Feb 2018 00:59:28 +0000 (+0000) Subject: Typo in a comment (CR$_VMXE instead of CR4_VMXE). No functional change. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c66ecf39250ad871006a009d1eeaff02db1b03e1;p=openbsd Typo in a comment (CR$_VMXE instead of CR4_VMXE). No functional change. --- diff --git a/sys/arch/amd64/amd64/vmm.c b/sys/arch/amd64/amd64/vmm.c index f5a6fc0dd91..2993abf6af8 100644 --- a/sys/arch/amd64/amd64/vmm.c +++ b/sys/arch/amd64/amd64/vmm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmm.c,v 1.183 2018/02/02 08:24:28 pd Exp $ */ +/* $OpenBSD: vmm.c,v 1.184 2018/02/12 00:59:28 mlarkin Exp $ */ /* * Copyright (c) 2014 Mike Larkin * @@ -2571,7 +2571,7 @@ vcpu_reset_regs_vmx(struct vcpu *vcpu, struct vcpu_reg_state *vrs) * Determine which bits in CR4 have to be set to a fixed * value as per Intel SDM A.8. * CR4 bits in the vrs parameter must match these, except - * CR$_VMXE - we add that here since it must always be set. + * CR4_VMXE - we add that here since it must always be set. */ want1 = (curcpu()->ci_vmm_cap.vcc_vmx.vmx_cr4_fixed0) & (curcpu()->ci_vmm_cap.vcc_vmx.vmx_cr4_fixed1);