From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38052) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bWrUF-0003c5-B7 for qemu-devel@nongnu.org; Mon, 08 Aug 2016 16:49:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bWrUE-0002cs-Aj for qemu-devel@nongnu.org; Mon, 08 Aug 2016 16:49:27 -0400 Date: Mon, 8 Aug 2016 16:49:18 -0400 From: Jeff Cody Message-ID: <20160808204918.GM24882@localhost.localdomain> References: <1470636568-8291-1-git-send-email-famz@redhat.com> <1470636568-8291-6-git-send-email-famz@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1470636568-8291-6-git-send-email-famz@redhat.com> Subject: Re: [Qemu-devel] [PATCH v2 5/8] vpc: Use QEMU UUID API List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng Cc: qemu-devel@nongnu.org, berrange@redhat.com, pbonzini@redhat.com, kwolf@redhat.com, mreitz@redhat.com, mdroth@linux.vnet.ibm.com, armbru@redhat.com, sw@weilnetz.de, qemu-block@nongnu.org On Mon, Aug 08, 2016 at 02:09:25PM +0800, Fam Zheng wrote: > Previously we conditionally generate if footer->uuid, when libuuid is s/generate if/generated/ s/is/was/ > available. Now that we have a built-in implementation, we can switch to > it. > > Signed-off-by: Fam Zheng > --- > 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 > -#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 >