qemu-devel
[Top][All Lists]
Advanced

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

Re: [PATCH v3 05/16] util/oslib-win32: add qemu_get_host_physmem impleme


From: Stefan Weil
Subject: Re: [PATCH v3 05/16] util/oslib-win32: add qemu_get_host_physmem implementation
Date: Fri, 24 Jul 2020 08:51:58 +0200
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:68.0) Gecko/20100101 Thunderbird/68.10.0

Am 24.07.20 um 08:44 schrieb Alex Bennée:

> Compile tested only.
>
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> Cc: Stefan Weil <sw@weilnetz.de>
>
> ---
> v2
>   - used more widely available GlobalMemoryStatusEx
>   - dropped Phillipe's r-b due to the change
> ---
>  util/oslib-win32.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/util/oslib-win32.c b/util/oslib-win32.c
> index 31030463cc9..a74ee5a3aa7 100644
> --- a/util/oslib-win32.c
> +++ b/util/oslib-win32.c
> @@ -831,6 +831,11 @@ char *qemu_get_host_name(Error **errp)
>  
>  size_t qemu_get_host_physmem(void)
>  {
> -    /* currently unimplemented */
> +    MEMORYSTATUSEX statex;
> +    statex.dwLength = sizeof(statex);
> +
> +    if (!GlobalMemoryStatusEx(&statex)) {
> +        return statex.ullTotalPhys;
> +    }
>      return 0;
>  }


Thanks.

The logic must be reversed, as GlobalMemoryStatusEx returns a nonzero
value when it succeeded.

When that is fixed, you may add

Reviewed-by: Stefan Weil <sw@weilnetz.de>





reply via email to

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