KVM: PPC: Make XER load 32 bit
We have a 32 bit value in the PACA to store XER in. We also do an stw when storing XER in there. But then we load it with ld, completely screwing it up on every entry. Welcome to the Big Endian world. Signed-off-by: Alexander Graf <agraf@suse.de> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
c04a695a44
commit
1bec1677ca
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ slb_do_enter:
|
|||
lwz r11, (PACA_KVM_CR)(r13)
|
||||
mtcr r11
|
||||
|
||||
ld r11, (PACA_KVM_XER)(r13)
|
||||
lwz r11, (PACA_KVM_XER)(r13)
|
||||
mtxer r11
|
||||
|
||||
ld r11, (PACA_KVM_R11)(r13)
|
||||
|
|
Loading…
Add table
Reference in a new issue