Re: [Qemu-devel] [PATCH 14/19] migration: Convert do_info_migrate() to QObject

2009-12-10 Thread Markus Armbruster
Luiz Capitulino writes: > Return a QDict, which may contain more two QDicts, depending on s/more two/up to two more/ > the type of migration we're performing. > > IMPORTANT: as a QInt stores a int64_t integer, RAM values are going > to be stored as int64_t and not as uint64_t as they are today.

[Qemu-devel] [PATCH 14/19] migration: Convert do_info_migrate() to QObject

2009-12-09 Thread Luiz Capitulino
Return a QDict, which may contain more two QDicts, depending on the type of migration we're performing. IMPORTANT: as a QInt stores a int64_t integer, RAM values are going to be stored as int64_t and not as uint64_t as they are today. If this is a problem QInt will have to be changed. This commit