[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 4/7] vpc: Use QEMU UUID API
From: |
Fam Zheng |
Subject: |
[Qemu-devel] [PATCH 4/7] vpc: Use QEMU UUID API |
Date: |
Tue, 2 Aug 2016 17:18:35 +0800 |
Previously we conditionally generate if footer->uuid, when libuuid is
available. Now that we have a built-in implementation, we can switch to
it.
Signed-off-by: Fam Zheng <address@hidden>
---
block/vpc.c | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/block/vpc.c b/block/vpc.c
index 43707ed..4a60438 100644
--- a/block/vpc.c
+++ b/block/vpc.c
@@ -30,9 +30,7 @@
#include "qemu/module.h"
#include "migration/migration.h"
#include "qemu/bswap.h"
-#if defined(CONFIG_UUID)
-#include <uuid/uuid.h>
-#endif
+#include "qemu/uuid.h"
/**************************************************************/
@@ -980,9 +978,7 @@ static int vpc_create(const char *filename, QemuOpts *opts,
Error **errp)
footer->type = cpu_to_be32(disk_type);
-#if defined(CONFIG_UUID)
- uuid_generate(footer->uuid);
-#endif
+ qemu_uuid_generate(footer->uuid);
footer->checksum = cpu_to_be32(vpc_checksum(buf, HEADER_SIZE));
--
2.7.4
- Re: [Qemu-devel] [PATCH 1/7] util: Add UUID API, (continued)
- [Qemu-devel] [PATCH 2/7] vhdx: Use QEMU UUID API, Fam Zheng, 2016/08/02
- [Qemu-devel] [PATCH 3/7] vdi: Use QEMU UUID API, Fam Zheng, 2016/08/02
- [Qemu-devel] [PATCH 4/7] vpc: Use QEMU UUID API,
Fam Zheng <=
- [Qemu-devel] [PATCH 7/7] configure: Remove detection code for UUID, Fam Zheng, 2016/08/02
- [Qemu-devel] [PATCH 5/7] crypto: Switch to QEMU UUID API, Fam Zheng, 2016/08/02
- [Qemu-devel] [PATCH 6/7] tests: No longer dependent on CONFIG_UUID, Fam Zheng, 2016/08/02