]> git.proxmox.com Git - mirror_qemu.git/commit - migration/migration.c
migration: Don't use *_to_cpup() and cpu_to_*w()
authorPeter Maydell <peter.maydell@linaro.org>
Fri, 10 Jun 2016 16:09:22 +0000 (17:09 +0100)
committerAmit Shah <amit.shah@redhat.com>
Fri, 17 Jun 2016 12:53:49 +0000 (18:23 +0530)
commit4d885131574ba530e48ef90d5c0ca4dffc9c3759
tree97505af60b449095609ceee60bc2451628d87193
parent4acc8fdfd315f7ee474bea28fcbcc4dca9717d13
migration: Don't use *_to_cpup() and cpu_to_*w()

The *_to_cpup() and cpu_to_*w() functions just compose a pointer
dereference with a byteswap. Instead use ld*_p() and st*_p(),
which handle potential pointer misalignment and avoid the need
to cast the pointer.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Amit Shah <amit.shah@redhat.com>
Message-Id: <1465574962-2710-1-git-send-email-peter.maydell@linaro.org>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
migration/migration.c
migration/savevm.c