提交 a8ee07e0 编写于 作者: J Ján Tomko

qemu: use GUINT32_SWAP_LE_BE

Use this GLib macro instead of bswap_32 from gnulib.
Signed-off-by: NJán Tomko <jtomko@redhat.com>
Reviewed-by: NPeter Krempa <pkrempa@redhat.com>
上级 ec07893a
...@@ -33,7 +33,6 @@ ...@@ -33,7 +33,6 @@
#include <sys/wait.h> #include <sys/wait.h>
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <sys/un.h> #include <sys/un.h>
#include <byteswap.h>
#include "qemu_driver.h" #include "qemu_driver.h"
...@@ -2803,11 +2802,11 @@ struct _virQEMUSaveData { ...@@ -2803,11 +2802,11 @@ struct _virQEMUSaveData {
static inline void static inline void
bswap_header(virQEMUSaveHeaderPtr hdr) bswap_header(virQEMUSaveHeaderPtr hdr)
{ {
hdr->version = bswap_32(hdr->version); hdr->version = GUINT32_SWAP_LE_BE(hdr->version);
hdr->data_len = bswap_32(hdr->data_len); hdr->data_len = GUINT32_SWAP_LE_BE(hdr->data_len);
hdr->was_running = bswap_32(hdr->was_running); hdr->was_running = GUINT32_SWAP_LE_BE(hdr->was_running);
hdr->compressed = bswap_32(hdr->compressed); hdr->compressed = GUINT32_SWAP_LE_BE(hdr->compressed);
hdr->cookieOffset = bswap_32(hdr->cookieOffset); hdr->cookieOffset = GUINT32_SWAP_LE_BE(hdr->cookieOffset);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册