On 10/31/2012 06:40 PM, liguang wrote: > Signed-off-by: liguang <[email protected]> > --- > src/qemu/qemu_domain.c | 2 +- > src/qemu/qemu_driver.c | 3 +++ > 2 files changed, 4 insertions(+), 1 deletions(-) > > diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c > index 17ae3b9..ac16772 100644 > --- a/src/qemu/qemu_domain.c > +++ b/src/qemu/qemu_domain.c > @@ -1654,7 +1654,7 @@ qemuDomainSnapshotForEachQcow2Raw(struct qemud_driver > *driver, > int i; > bool skipped = false; > > - qemuimgarg[0] = qemuFindQemuImgBinary(driver); > + qemuimgarg[0] = driver->qemuImgBinary;
Personally, I like going through accessor methods rather than direct
field access, as it leaves us more freedom for changing the
implementation in the future. I'm not sure this patch buys us anything,
other than it would fail to start the libvirtd qemu driver at startup
rather than on the first command that needed to use qemu-img. Since
failing early on a bad setup is generally useful, I guess I could live
with this patch, except that you need to rebase it on top of Peter's
recent patches that added another caller of qemuFindQemuImgBinary. For
that matter, if you are going to gaurantee that driver->qemuImgBinary is
always set, it might be better to remove the qemuFindQemuImgBinary()
function altogether, and instead inline its body...
> +++ b/src/qemu/qemu_driver.c
> @@ -624,6 +624,9 @@ qemudStartup(int privileged) {
> if (!qemu_driver->domainEventState)
> goto error;
>
> + /*find kvm-img or qemu-img*/
> + qemuFindQemuImgBinary(qemu_driver);
> +
into this one remaining call site.
Also, I would rebase the series to put this patch first, not last, since
your patch 1/2 was using driver->qemuImgBinary instead of
qemuFindQemuImgBinary().
--
Eric Blake [email protected] +1-919-301-3266
Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature
-- libvir-list mailing list [email protected] https://www.redhat.com/mailman/listinfo/libvir-list
