diff options
Diffstat (limited to 'arch/x86/kvm/svm/nested.c')
| -rw-r--r-- | arch/x86/kvm/svm/nested.c | 12 | 
1 files changed, 5 insertions, 7 deletions
| diff --git a/arch/x86/kvm/svm/nested.c b/arch/x86/kvm/svm/nested.c index bc9cd7086fa9..add65dd59756 100644 --- a/arch/x86/kvm/svm/nested.c +++ b/arch/x86/kvm/svm/nested.c @@ -138,15 +138,13 @@ void recalc_intercepts(struct vcpu_svm *svm)  		c->intercepts[i] = h->intercepts[i];  	if (g->int_ctl & V_INTR_MASKING_MASK) { -		/* We only want the cr8 intercept bits of L1 */ -		vmcb_clr_intercept(c, INTERCEPT_CR8_READ); -		vmcb_clr_intercept(c, INTERCEPT_CR8_WRITE); -  		/* -		 * Once running L2 with HF_VINTR_MASK, EFLAGS.IF does not -		 * affect any interrupt we may want to inject; therefore, -		 * interrupt window vmexits are irrelevant to L0. +		 * Once running L2 with HF_VINTR_MASK, EFLAGS.IF and CR8 +		 * does not affect any interrupt we may want to inject; +		 * therefore, writes to CR8 are irrelevant to L0, as are +		 * interrupt window vmexits.  		 */ +		vmcb_clr_intercept(c, INTERCEPT_CR8_WRITE);  		vmcb_clr_intercept(c, INTERCEPT_VINTR);  	} |