diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-18 14:51:49 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-19 08:26:03 -0600 |
commit | 13232b8f45fdd18874357194ebc832e017787ea4 (patch) | |
tree | ff8c9789e56c10a9611eed5bbc9f1be120c3496e /migration.h | |
parent | c7493749782bd61a8cbdd72397ccf7fea9c0d7f6 (diff) | |
download | qemu-13232b8f45fdd18874357194ebc832e017787ea4.zip |
Revert "monitor: Convert do_migrate_set_speed() to QObject"
This reverts commit 3a4921047d514c336531c304bec362c4d138ebcc.
From Luiz:
do_migrate_set_speed() accepts a suffix for the 'value' argument and this is
not good for QMP. We will have to add a new argument type to handle that and
this will have to wait for 0.13.
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'migration.h')
-rw-r--r-- | migration.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration.h b/migration.h index 3ac208bf5e..cbd456b901 100644 --- a/migration.h +++ b/migration.h @@ -56,7 +56,7 @@ void do_migrate(Monitor *mon, const QDict *qdict, QObject **ret_data); void do_migrate_cancel(Monitor *mon, const QDict *qdict, QObject **ret_data); -void do_migrate_set_speed(Monitor *mon, const QDict *qdict, QObject **ret_data); +void do_migrate_set_speed(Monitor *mon, const QDict *qdict); uint64_t migrate_max_downtime(void); |