Re: [Qemu-devel] [PATCH v6 8/9] vl: Switch qemu_uuid to QemuUUID

2016-09-17 Thread Eric Blake
On 09/17/2016 04:38 PM, Eric Blake wrote: > On 08/17/2016 02:28 AM, Fam Zheng wrote: >> Update all qemu_uuid users as well, especially get rid of the duplicated >> low level g_strdup_printf, sscanf and snprintf calls with QEMU UUID API. >> >> Since qemu_uuid_parse is quite tangled with qemu_uuid,

Re: [Qemu-devel] [PATCH v6 8/9] vl: Switch qemu_uuid to QemuUUID

2016-09-17 Thread Eric Blake
On 08/17/2016 02:28 AM, Fam Zheng wrote: > Update all qemu_uuid users as well, especially get rid of the duplicated > low level g_strdup_printf, sscanf and snprintf calls with QEMU UUID API. > > Since qemu_uuid_parse is quite tangled with qemu_uuid, it's switching to > QemuUUID is done here too

[Qemu-devel] [PATCH v6 8/9] vl: Switch qemu_uuid to QemuUUID

2016-08-17 Thread Fam Zheng
Update all qemu_uuid users as well, especially get rid of the duplicated low level g_strdup_printf, sscanf and snprintf calls with QEMU UUID API. Since qemu_uuid_parse is quite tangled with qemu_uuid, it's switching to QemuUUID is done here too to keep everything in sync and avoid code churn.