Trim whitespace at EoL, use tabs instead of spaces for indent.
PR: 235004 Submitted by: Jose Luis Duran <jlduran@gmail.com> MFC after: 3 days
This commit is contained in:
parent
be8dd1428e
commit
f1dc49f33a
@ -81,7 +81,7 @@ __FBSDID("$FreeBSD$");
|
||||
(PROCBASED_INT_WINDOW_EXITING | \
|
||||
PROCBASED_NMI_WINDOW_EXITING)
|
||||
|
||||
#define PROCBASED_CTLS_ONE_SETTING \
|
||||
#define PROCBASED_CTLS_ONE_SETTING \
|
||||
(PROCBASED_SECONDARY_CONTROLS | \
|
||||
PROCBASED_MWAIT_EXITING | \
|
||||
PROCBASED_MONITOR_EXITING | \
|
||||
@ -428,7 +428,7 @@ vmx_allow_x2apic_msrs(struct vmx *vmx)
|
||||
|
||||
for (i = 0; i < 8; i++)
|
||||
error += guest_msr_ro(vmx, MSR_APIC_TMR0 + i);
|
||||
|
||||
|
||||
for (i = 0; i < 8; i++)
|
||||
error += guest_msr_ro(vmx, MSR_APIC_IRR0 + i);
|
||||
|
||||
@ -576,7 +576,7 @@ vmx_disable(void *arg __unused)
|
||||
static int
|
||||
vmx_cleanup(void)
|
||||
{
|
||||
|
||||
|
||||
if (pirvec >= 0)
|
||||
lapic_ipi_free(pirvec);
|
||||
|
||||
@ -1097,7 +1097,7 @@ static int
|
||||
vmx_handle_cpuid(struct vm *vm, int vcpu, struct vmxctx *vmxctx)
|
||||
{
|
||||
int handled, func;
|
||||
|
||||
|
||||
func = vmxctx->guest_rax;
|
||||
|
||||
handled = x86_emulate_cpuid(vm, vcpu,
|
||||
@ -3096,7 +3096,7 @@ vmx_get_intr_shadow(struct vmx *vmx, int vcpu, int running, uint64_t *retval)
|
||||
uint64_t gi;
|
||||
int error;
|
||||
|
||||
error = vmcs_getreg(&vmx->vmcs[vcpu], running,
|
||||
error = vmcs_getreg(&vmx->vmcs[vcpu], running,
|
||||
VMCS_IDENT(VMCS_GUEST_INTERRUPTIBILITY), &gi);
|
||||
*retval = (gi & HWINTR_BLOCKING) ? 1 : 0;
|
||||
return (error);
|
||||
@ -3140,8 +3140,8 @@ vmx_shadow_reg(int reg)
|
||||
switch (reg) {
|
||||
case VM_REG_GUEST_CR0:
|
||||
shreg = VMCS_CR0_SHADOW;
|
||||
break;
|
||||
case VM_REG_GUEST_CR4:
|
||||
break;
|
||||
case VM_REG_GUEST_CR4:
|
||||
shreg = VMCS_CR4_SHADOW;
|
||||
break;
|
||||
default:
|
||||
@ -3212,7 +3212,7 @@ vmx_setreg(void *arg, int vcpu, int reg, uint64_t val)
|
||||
if (shadow > 0) {
|
||||
/*
|
||||
* Store the unmodified value in the shadow
|
||||
*/
|
||||
*/
|
||||
error = vmcs_setreg(&vmx->vmcs[vcpu], running,
|
||||
VMCS_IDENT(shadow), val);
|
||||
}
|
||||
@ -3395,7 +3395,7 @@ vmx_setcap(void *arg, int vcpu, int type, int val)
|
||||
}
|
||||
}
|
||||
|
||||
return (retval);
|
||||
return (retval);
|
||||
}
|
||||
|
||||
struct vlapic_vtx {
|
||||
@ -3698,7 +3698,7 @@ vmx_vlapic_init(void *arg, int vcpuid)
|
||||
struct vmx *vmx;
|
||||
struct vlapic *vlapic;
|
||||
struct vlapic_vtx *vlapic_vtx;
|
||||
|
||||
|
||||
vmx = arg;
|
||||
|
||||
vlapic = malloc(sizeof(struct vlapic_vtx), M_VLAPIC, M_WAITOK | M_ZERO);
|
||||
|
Loading…
Reference in New Issue
Block a user