mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 13:41:30 +00:00
KVM: PPC: Not optimizing MSR_CE and MSR_ME with paravirt.
If there is pending critical or machine check interrupt then guest would like to capture it when guest enable MSR.CE and MSR_ME respectively. Also as mostly MSR_CE and MSR_ME are updated with rfi/rfci/rfmii which anyway traps so removing the the paravirt optimization for MSR.CE and MSR.ME. Signed-off-by: Bharat Bhushan <bharat.bhushan@freescale.com> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
21bd000abf
commit
d35b1075af
2 changed files with 1 additions and 3 deletions
|
@ -109,8 +109,6 @@ The following bits are safe to be set inside the guest:
|
||||||
|
|
||||||
MSR_EE
|
MSR_EE
|
||||||
MSR_RI
|
MSR_RI
|
||||||
MSR_CR
|
|
||||||
MSR_ME
|
|
||||||
|
|
||||||
If any other bit changes in the MSR, please still use mtmsr(d).
|
If any other bit changes in the MSR, please still use mtmsr(d).
|
||||||
|
|
||||||
|
|
|
@ -122,7 +122,7 @@ kvm_emulate_mtmsrd_len:
|
||||||
.long (kvm_emulate_mtmsrd_end - kvm_emulate_mtmsrd) / 4
|
.long (kvm_emulate_mtmsrd_end - kvm_emulate_mtmsrd) / 4
|
||||||
|
|
||||||
|
|
||||||
#define MSR_SAFE_BITS (MSR_EE | MSR_CE | MSR_ME | MSR_RI)
|
#define MSR_SAFE_BITS (MSR_EE | MSR_RI)
|
||||||
#define MSR_CRITICAL_BITS ~MSR_SAFE_BITS
|
#define MSR_CRITICAL_BITS ~MSR_SAFE_BITS
|
||||||
|
|
||||||
.global kvm_emulate_mtmsr
|
.global kvm_emulate_mtmsr
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue