[libvirt PATCH 10/33] qemu: Introduce qemuDomainDefBootPostParse()

Michal Prívozník mprivozn at redhat.com
Thu Mar 2 15:59:36 UTC 2023


On 2/15/23 11:42, Andrea Bolognani wrote:
> Move all the boot related parts of qemuDomainDefPostParse()
> to a separate helper.
> 
> Signed-off-by: Andrea Bolognani <abologna at redhat.com>
> ---
>  src/qemu/qemu_domain.c | 37 ++++++++++++++++++++++++-------------
>  1 file changed, 24 insertions(+), 13 deletions(-)
> 
> diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
> index 9db5370055..da1a2413a5 100644
> --- a/src/qemu/qemu_domain.c
> +++ b/src/qemu/qemu_domain.c
> @@ -4425,6 +4425,29 @@ qemuDomainRecheckInternalPaths(virDomainDef *def,
>  }
>  
>  
> +static int
> +qemuDomainDefBootPostParse(virDomainDef *def,
> +                           virQEMUDriverConfig *cfg)
> +{
> +    if (def->os.bootloader || def->os.bootloaderArgs) {
> +        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
> +                       _("bootloader is not supported by QEMU"));
> +        return -1;
> +    }
> +

Strictly speaking, this is a validate check. Haven't look into the
future, but feel free to move it there in a follow up patch.

> +    if (virDomainDefHasOldStyleROUEFI(def) &&
> +        !def->os.loader->nvram &&
> +        def->os.loader->stateless != VIR_TRISTATE_BOOL_YES) {
> +        def->os.loader->nvram = virStorageSourceNew();
> +        def->os.loader->nvram->type = VIR_STORAGE_TYPE_FILE;
> +        def->os.loader->nvram->format = VIR_STORAGE_FILE_RAW;
> +        qemuDomainNVRAMPathFormat(cfg, def, &def->os.loader->nvram->path);
> +    }
> +
> +    return 0;
> +}
> +
> +
>  static int
>  qemuDomainDefMachinePostParse(virDomainDef *def,
>                                virQEMUCaps *qemuCaps)
> @@ -4795,20 +4818,8 @@ qemuDomainDefPostParse(virDomainDef *def,
>      if (qemuDomainDefMachinePostParse(def, qemuCaps) < 0)
>          return -1;
>  
> -    if (def->os.bootloader || def->os.bootloaderArgs) {
> -        virReportError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
> -                       _("bootloader is not supported by QEMU"));
> +    if (qemuDomainDefBootPostParse(def, cfg) < 0)
>          return -1;
> -    }
> -
> -    if (virDomainDefHasOldStyleROUEFI(def) &&
> -        !def->os.loader->nvram &&
> -        def->os.loader->stateless != VIR_TRISTATE_BOOL_YES) {
> -        def->os.loader->nvram = virStorageSourceNew();
> -        def->os.loader->nvram->type = VIR_STORAGE_TYPE_FILE;
> -        def->os.loader->nvram->format = VIR_STORAGE_FILE_RAW;
> -        qemuDomainNVRAMPathFormat(cfg, def, &def->os.loader->nvram->path);
> -    }
>  
>      if (qemuDomainDefAddDefaultDevices(driver, def, qemuCaps) < 0)
>          return -1;

Michal



More information about the libvir-list mailing list