From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:38784) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RniJv-0005FX-FJ for qemu-devel@nongnu.org; Wed, 18 Jan 2012 22:05:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RniJk-0000dM-1c for qemu-devel@nongnu.org; Wed, 18 Jan 2012 22:05:42 -0500 Received: from [222.73.24.84] (port=59495 helo=song.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RniJj-0000ct-0d for qemu-devel@nongnu.org; Wed, 18 Jan 2012 22:05:36 -0500 Message-ID: <4F1788FE.2030708@cn.fujitsu.com> Date: Thu, 19 Jan 2012 11:07:42 +0800 From: Wen Congyang MIME-Version: 1.0 References: <4F1784EE.2040800@cn.fujitsu.com> In-Reply-To: <4F1784EE.2040800@cn.fujitsu.com> Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=ISO-8859-1 Subject: [Qemu-devel] [RFC][PATCH 13/15 v5] support to set dumping speed List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel , Jan Kiszka , Dave Anderson , HATAYAMA Daisuke , Luiz Capitulino Add API to allow the user to control dumping speed Signed-off-by: Wen Congyang --- dump.c | 12 ++++++++++++ hmp-commands.hx | 15 +++++++++++++++ hmp.c | 6 ++++++ hmp.h | 1 + qapi-schema.json | 15 +++++++++++++++ qmp-commands.hx | 22 ++++++++++++++++++++++ 6 files changed, 71 insertions(+), 0 deletions(-) diff --git a/dump.c b/dump.c index 485e3f3..39dc892 100644 --- a/dump.c +++ b/dump.c @@ -86,6 +86,7 @@ typedef struct DumpState { } DumpState; #define DEFAULT_THROTTLE (32 << 20) /* Default dump speed throttling */ +#define MIN_THROTTLE (1 << 10) /* Miniumum dump speed */ static DumpState *dump_get_current(void) { @@ -722,3 +723,14 @@ void qmp_dump_cancel(Error **errp) dump_cleanup(s); return; } + +void qmp_dump_set_speed(int64_t value, Error **errp) +{ + DumpState *s = dump_get_current(); + + if (value < MIN_THROTTLE) { + value = MIN_THROTTLE; + } + s->bandwidth = value; + return; +} diff --git a/hmp-commands.hx b/hmp-commands.hx index 57f5a20..e71a174 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -858,6 +858,21 @@ Cancel the current VM dumping. ETEXI { + .name = "dump_set_speed", + .args_type = "value:o", + .params = "value", + .help = "set maximum speed (in bytes) for dumping. " + "Defaults to MB if no size suffix is specified, ie. B/K/M/G/T", + .mhandler.cmd = hmp_dump_set_speed, + }, + +STEXI +@item dump_set_speed @var{value} +@findex dump_set_speed +Set maximum speed to @var{value} (in bytes) for dumping. +ETEXI + + { .name = "snapshot_blkdev", .args_type = "device:B,snapshot-file:s?,format:s?", .params = "device [new-image-file] [format]", diff --git a/hmp.c b/hmp.c index bca411b..4c015f9 100644 --- a/hmp.c +++ b/hmp.c @@ -696,3 +696,9 @@ void hmp_dump_cancel(Monitor *mon, const QDict *qdict) { qmp_dump_cancel(NULL); } + +void hmp_dump_set_speed(Monitor *mon, const QDict *qdict) +{ + int64_t value = qdict_get_int(qdict, "value"); + qmp_dump_set_speed(value, NULL); +} diff --git a/hmp.h b/hmp.h index c0037b6..2d71343 100644 --- a/hmp.h +++ b/hmp.h @@ -51,5 +51,6 @@ void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict); void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict); void hmp_dump(Monitor *mon, const QDict *qdict); void hmp_dump_cancel(Monitor *mon, const QDict *qdict); +void hmp_dump_set_speed(Monitor *mon, const QDict *qdict); #endif diff --git a/qapi-schema.json b/qapi-schema.json index bbd2011..ec19631 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -1301,3 +1301,18 @@ # Since: 1.1 ## { 'command': 'dump_cancel' } + +## +# @dump_set_speed +# +# Set maximum speed for dumping. +# +# @value: maximum speed in bytes. +# +# Returns: nothing on success +# +# Notes: A value lesser than 1024 will be automatically round up to 1024. +# +# Since: 1.1 +## +{ 'command': 'dump_set_speed', 'data': {'value': 'int'} } diff --git a/qmp-commands.hx b/qmp-commands.hx index 055072d..509273e 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -620,6 +620,28 @@ Example: EQMP { + .name = "dump_set_speed", + .args_type = "value:o", + .mhandler.cmd_new = qmp_marshal_input_dump_set_speed, + }, + +SQMP +dump_set_speed + +Set maximum speed for dumping. + +Arguments: + +- "value": maximum speed, in bytes per second (json-int) + +Example: + +-> { "execute": "dump_set_speed", "arguments": { "value": 1024 } } +<- { "return": {} } + +EQMP + + { .name = "netdev_add", .args_type = "netdev:O", .params = "[user|tap|socket],id=str[,prop=value][,...]", -- 1.7.1