On 1/15/19 8:23 AM, Ján Tomko wrote: > Split out parts of the config parsing code to make > the parent function easier to read. > > Signed-off-by: Ján Tomko <jtomko@xxxxxxxxxx> > --- > src/qemu/qemu_conf.c | 35 +++++++++++++++++++++-------------- > 1 file changed, 21 insertions(+), 14 deletions(-) > > diff --git a/src/qemu/qemu_conf.c b/src/qemu/qemu_conf.c > index 8bc653fa9e..e03c0b29e3 100644 > --- a/src/qemu/qemu_conf.c > +++ b/src/qemu/qemu_conf.c > @@ -423,6 +423,26 @@ virQEMUDriverConfigHugeTLBFSInit(virHugeTLBFSPtr hugetlbfs, > } > > > +static int > +virQEMUDriverConfigLoadSaveEntry(virQEMUDriverConfigPtr cfg, > + virConfPtr conf) > +{ > + if (virConfGetValueString(conf, "save_image_format", &cfg->saveImageFormat) < 0) > + return -1; > + if (virConfGetValueString(conf, "dump_image_format", &cfg->dumpImageFormat) < 0) > + return -1; > + if (virConfGetValueString(conf, "snapshot_image_format", &cfg->snapshotImageFormat) < 0) > + return -1; > + if (virConfGetValueString(conf, "auto_dump_path", &cfg->autoDumpPath) < 0) > + return -1; > + if (virConfGetValueBool(conf, "auto_dump_bypass_cache", &cfg->autoDumpBypassCache) < 0) > + return -1; > + if (virConfGetValueBool(conf, "auto_start_bypass_cache", &cfg->autoStartBypassCache) < 0) > + return -1; > + > + return 0; > +} > + blank line Reviewed-by: John Ferlan <jferlan@xxxxxxxxxx> John [...] -- libvir-list mailing list libvir-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/libvir-list