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

2009-12-07 Thread Anthony Liguori
Luiz Capitulino wrote: 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

[Qemu-devel] [PATCH 12/17] migration: Convert do_info_migrate() to QObject

2009-12-04 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

[Qemu-devel] [PATCH 12/17] migration: Convert do_info_migrate() to QObject

2009-11-23 Thread Luiz Capitulino
Return a QDict, which may contain another QDict if the migration process is active. 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 should not change u