[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 08/12] Add migrate_set_cache_size command
From: |
Eric Blake |
Subject: |
Re: [Qemu-devel] [PATCH 08/12] Add migrate_set_cache_size command |
Date: |
Mon, 06 Aug 2012 12:13:19 -0600 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20120717 Thunderbird/14.0 |
On 08/06/2012 11:51 AM, Orit Wasserman wrote:
> Change XBZRLE cache size in bytes (the size should be a power of 2, it will be
> rounded down to the nearest power of 2).
> If XBZRLE cache size is too small there will be many cache miss.
>
> New query-migrate-cache-size QMP command and 'info migrate_cache_size' HMP
> command to query cache value.
>
> Signed-off-by: Benoit Hudzia <address@hidden>
> Signed-off-by: Petter Svard <address@hidden>
> Signed-off-by: Aidan Shribman <address@hidden>
> Signed-off-by: Orit Wasserman <address@hidden>
> +#
> +# Since: 1.2
> +##
> +{ 'command': 'query-migrate-cache-size', 'returns': 'int' }
This is the first 'returns':'int' in the schema, but we do have a
'returns':'str' for comparison of returning a native type instead of a
further struct.
> +Example:
> +
> +-> { "execute": "query-migrate-cache-size" }
> +<- { "return": { "67108864" } }
Invalid JSON. Inside an {}, everything has to be in name:value pairs,
but you gave no name to your string. But given the above, you aren't
returning a string, but an int. I think this should be:
{ "return": 67108864 }
That's based solely off my reading of the schema, and not of the code
itself, so please actually execute your code, to see what really came
over the wire.
--
Eric Blake address@hidden +1-919-301-3266
Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature
- [Qemu-devel] [PATCH 12/12] Restart optimization on stage3 update version, (continued)
- [Qemu-devel] [PATCH 12/12] Restart optimization on stage3 update version, Orit Wasserman, 2012/08/06
- [Qemu-devel] [PATCH 05/12] Add uleb encoding/decoding functions, Orit Wasserman, 2012/08/06
- [Qemu-devel] [PATCH 01/12] Add migration capabilities, Orit Wasserman, 2012/08/06
- [Qemu-devel] [PATCH 03/12] Add XBZRLE documentation, Orit Wasserman, 2012/08/06
- [Qemu-devel] [PATCH 02/12] Add migrate-set-capabilities, Orit Wasserman, 2012/08/06
- [Qemu-devel] [PATCH 06/12] Add xbzrle_encode_buffer and xbzrle_decode_buffer functions, Orit Wasserman, 2012/08/06
- [Qemu-devel] [PATCH 11/12] Add XBZRLE statistics, Orit Wasserman, 2012/08/06
- [Qemu-devel] [PATCH 09/12] Add migration accounting for normal and duplicate pages, Orit Wasserman, 2012/08/06
- [Qemu-devel] [PATCH 07/12] Add XBZRLE to ram_save_block and ram_save_live, Orit Wasserman, 2012/08/06
- [Qemu-devel] [PATCH 08/12] Add migrate_set_cache_size command, Orit Wasserman, 2012/08/06
- Re: [Qemu-devel] [PATCH 08/12] Add migrate_set_cache_size command,
Eric Blake <=
- [Qemu-devel] [PATCH 10/12] Change total_time to total-time in MigrationStats, Orit Wasserman, 2012/08/06
- [Qemu-devel] [PATCH 04/12] Add cache handling functions, Orit Wasserman, 2012/08/06