]> git.proxmox.com Git - mirror_qemu.git/commit
util: Add UUID API
authorFam Zheng <famz@redhat.com>
Wed, 21 Sep 2016 04:27:14 +0000 (12:27 +0800)
committerFam Zheng <famz@redhat.com>
Fri, 23 Sep 2016 03:42:52 +0000 (11:42 +0800)
commitcea25275a3590cdee774a1230f4b99f6c5c0eaa8
treed855702e66e12d2eb9c7cdfece84144ad453f874
parent0679f98b4035c6c3125fc6720a961bb25f916a7a
util: Add UUID API

A number of different places across the code base use CONFIG_UUID. Some
of them are soft dependency, some are not built if libuuid is not
available, some come with dummy fallback, some throws runtime error.

It is hard to maintain, and hard to reason for users.

Since UUID is a simple standard with only a small number of operations,
it is cleaner to have a central support in libqemuutil. This patch adds
qemu_uuid_* functions that all uuid users in the code base can
rely on. Except for qemu_uuid_generate which is new code, all other
functions are just copy from existing fallbacks from other files.

Note that qemu_uuid_parse is moved without updating the function
signature to use QemuUUID, to keep this patch simple.

Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Jeff Cody <jcody@redhat.com>
Message-Id: <1474432046-325-2-git-send-email-famz@redhat.com>
arch_init.c
block/iscsi.c
hw/smbios/smbios.c
include/qemu/uuid.h [new file with mode: 0644]
include/sysemu/sysemu.h
qmp.c
stubs/uuid.c
util/Makefile.objs
util/uuid.c [new file with mode: 0644]
vl.c