projects
/
sdk
/
emulator
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b6f3296
)
vmware-vga: Accept unaligned I/O accesses
author
Jan Kiszka
<jan.kiszka@siemens.com>
Sat, 22 Jun 2013 06:07:02 +0000
(08:07 +0200)
committer
Paolo Bonzini
<pbonzini@redhat.com>
Thu, 4 Jul 2013 15:42:43 +0000
(17:42 +0200)
Before switching to the memory core dispatcher, we need to make sure
that this pv-device will continue to receive unaligned portio accesses.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
hw/display/vmware_vga.c
patch
|
blob
|
history
diff --git
a/hw/display/vmware_vga.c
b/hw/display/vmware_vga.c
index fd3569d8c9f0f5ed2a9f608a6f0e8eccddaa6471..ec416816008acfed90e60194c68a4b8bad8a369e 100644
(file)
--- a/
hw/display/vmware_vga.c
+++ b/
hw/display/vmware_vga.c
@@
-1241,6
+1241,10
@@
static const MemoryRegionOps vmsvga_io_ops = {
.valid = {
.min_access_size = 4,
.max_access_size = 4,
+ .unaligned = true,
+ },
+ .impl = {
+ .unaligned = true,
},
};