]> git.proxmox.com Git - mirror_qemu.git/commit - qapi/migration.json
migration: Clean up signed vs. unsigned XBZRLE cache-size
authorMarkus Armbruster <armbru@redhat.com>
Tue, 2 Feb 2021 14:17:32 +0000 (15:17 +0100)
committerDr. David Alan Gilbert <dgilbert@redhat.com>
Mon, 8 Feb 2021 11:19:51 +0000 (11:19 +0000)
commit8b9407a09f925ff9e4dcf6783add8df68f5c7eb6
tree847c126f96e8c59c83eb072aee83205c7ea2de44
parentec17de0ac09f1f45c78d6afd0d7aea05ffb0ed9d
migration: Clean up signed vs. unsigned XBZRLE cache-size

73af8dd8d7 "migration: Make xbzrle_cache_size a migration
parameter" (v2.11.0) made the new parameter unsigned (QAPI type
'size', uint64_t in C).  It neglected to update existing code, which
continues to use int64_t.

migrate_xbzrle_cache_size() returns the new parameter.  Adjust its
return type.

QMP query-migrate-cache-size returns migrate_xbzrle_cache_size().
Adjust its return type.

migrate-set-parameters passes the new parameter to
xbzrle_cache_resize().  Adjust its parameter type.

xbzrle_cache_resize() passes it on to cache_init().  Adjust its
parameter type.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Message-Id: <20210202141734.2488076-3-armbru@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
migration/migration.c
migration/migration.h
migration/page_cache.c
migration/page_cache.h
migration/ram.c
migration/ram.h
qapi/migration.json