mirror of
https://github.com/torvalds/linux.git
synced 2024-12-01 00:21:32 +00:00
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
@ -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…
Reference in New Issue
Block a user