[libvirt] [PATCH 2/2] qemu: sev: Don't jump to endjob if SEV measurement retrieval fails

Marc Hartmayer mhartmay at linux.ibm.com
Tue Jun 19 13:52:34 UTC 2018


On Mon, Jun 18, 2018 at 09:20 AM +0200, Erik Skultety <eskultet at redhat.com> wrote:
> If measurement retrieval fails we'd forget to call ExitMonitor to unlock
> the monitor.
>
> Signed-off-by: Erik Skultety <eskultet at redhat.com>
> Reported-by: Luyao Huang <lhuang at redhat.com>
> ---
>  src/qemu/qemu_driver.c | 4 +---
>  1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c
> index fd25eb1b0b..d71956988f 100644
> --- a/src/qemu/qemu_driver.c
> +++ b/src/qemu/qemu_driver.c
> @@ -21513,10 +21513,8 @@ qemuDomainGetSEVMeasurement(virQEMUDriverPtr driver,
>
>      qemuDomainObjEnterMonitor(driver, vm);
>      tmp = qemuMonitorGetSEVMeasurement(QEMU_DOMAIN_PRIVATE(vm)->mon);
> -    if (tmp == NULL)
> -        goto endjob;
>
> -    if (qemuDomainObjExitMonitor(driver, vm) < 0)
> +    if (qemuDomainObjExitMonitor(driver, vm) < 0 || !tmp)
>          goto endjob;
>
>      if (virTypedParamsAddString(params, nparams, &maxpar,
> --
> 2.14.4
>
> --
> libvir-list mailing list
> libvir-list at redhat.com
> https://www.redhat.com/mailman/listinfo/libvir-list
>

Small nit: I would probably just move the “if-tmp-block” behind the
“if-…ExitMonitor()-block”. But I have no strong opinion about that :)

Anyway Reviewed-by: Marc Hartmayer <mhartmay at linux.ibm.com>

--
Beste Grüße / Kind regards
   Marc Hartmayer

IBM Deutschland Research & Development GmbH
Vorsitzende des Aufsichtsrats: Martina Koederitz
Geschäftsführung: Dirk Wittkopp
Sitz der Gesellschaft: Böblingen
Registergericht: Amtsgericht Stuttgart, HRB 243294





More information about the libvir-list mailing list