qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 4/4] python/qemu: accel: Add tcg_available() method


From: Alex Bennée
Subject: Re: [PATCH 4/4] python/qemu: accel: Add tcg_available() method
Date: Tue, 03 Dec 2019 17:00:27 +0000
User-agent: mu4e 1.3.5; emacs 27.0.50

Wainer dos Santos Moschetta <address@hidden> writes:

> This adds a method to check if the tcg accelerator is enabled
> in the QEMU binary.
>
> Signed-off-by: Wainer dos Santos Moschetta <address@hidden>

Reviewed-by: Alex Bennée <address@hidden>

So is this series going to be combined with another avocado series?

> ---
>  python/qemu/accel.py | 8 ++++++++
>  1 file changed, 8 insertions(+)
>
> diff --git a/python/qemu/accel.py b/python/qemu/accel.py
> index 1978fbee4e..513904d46d 100644
> --- a/python/qemu/accel.py
> +++ b/python/qemu/accel.py
> @@ -69,3 +69,11 @@ def kvm_available(target_arch=None, qemu_bin=None):
>      if qemu_bin and "kvm" not in list_accel(qemu_bin):
>          return False
>      return True
> +
> +def tcg_available(qemu_bin):
> +    """
> +    Check if TCG is available.
> +
> +    @param qemu_bin (str): path to the QEMU binary
> +    """
> +    return 'tcg' in list_accel(qemu_bin)


-- 
Alex Bennée



reply via email to

[Prev in Thread] Current Thread [Next in Thread]