]> git.proxmox.com Git - mirror_qemu.git/commit
Use Little Endian for Dirty Log
authorAlexander Graf <agraf@suse.de>
Mon, 27 Jul 2009 10:49:56 +0000 (12:49 +0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Mon, 27 Jul 2009 19:09:14 +0000 (14:09 -0500)
commit96c1606b33a64ea6d5e1a988f9eb234a58947002
treea6403dfab325a8729acf580caaa747cc00b96a66
parent1c7936e37730e58a8cc81fea91fd831b1ccf0b73
Use Little Endian for Dirty Log

We currently use host endian long types to store information
in the dirty bitmap.

This works reasonably well on Little Endian targets, because the
u32 after the first contains the next 32 bits. On Big Endian this
breaks completely though, forcing us to be inventive here.

So Ben suggested to always use Little Endian, which looks reasonable.

We only have dirty bitmap implemented in Little Endian targets so far
and since PowerPC would be the first Big Endian platform, we can just
as well switch to Little Endian always with little effort without
breaking existing targets.

This is the userspace part of the patch. It shouldn't change anything
for existing targets, but help PowerPC.

It replaces my older patch called "Use 64bit pointer for dirty log".

Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
kvm-all.c