Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
3dc85383
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3dc85383
编写于
11月 28, 2011
作者:
L
Luiz Capitulino
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
qapi: Convert migrate_set_speed
Signed-off-by:
N
Luiz Capitulino
<
lcapitulino@redhat.com
>
上级
4f0a993b
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
28 addition
and
16 deletion
+28
-16
hmp-commands.hx
hmp-commands.hx
+1
-2
hmp.c
hmp.c
+6
-0
hmp.h
hmp.h
+1
-0
migration.c
migration.c
+4
-8
migration.h
migration.h
+0
-2
qapi-schema.json
qapi-schema.json
+15
-0
qmp-commands.hx
qmp-commands.hx
+1
-4
未找到文件。
hmp-commands.hx
浏览文件 @
3dc85383
...
...
@@ -786,8 +786,7 @@ ETEXI
.params = "value",
.help = "set maximum speed (in bytes) for migrations. "
"Defaults to MB if no size suffix is specified, ie. B/K/M/G/T",
.user_print = monitor_user_noop,
.mhandler.cmd_new = do_migrate_set_speed,
.mhandler.cmd = hmp_migrate_set_speed,
},
STEXI
...
...
hmp.c
浏览文件 @
3dc85383
...
...
@@ -673,3 +673,9 @@ void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict)
double
value
=
qdict_get_double
(
qdict
,
"value"
);
qmp_migrate_set_downtime
(
value
,
NULL
);
}
void
hmp_migrate_set_speed
(
Monitor
*
mon
,
const
QDict
*
qdict
)
{
int64_t
value
=
qdict_get_int
(
qdict
,
"value"
);
qmp_migrate_set_speed
(
value
,
NULL
);
}
hmp.h
浏览文件 @
3dc85383
...
...
@@ -48,5 +48,6 @@ void hmp_block_resize(Monitor *mon, const QDict *qdict);
void
hmp_snapshot_blkdev
(
Monitor
*
mon
,
const
QDict
*
qdict
);
void
hmp_migrate_cancel
(
Monitor
*
mon
,
const
QDict
*
qdict
);
void
hmp_migrate_set_downtime
(
Monitor
*
mon
,
const
QDict
*
qdict
);
void
hmp_migrate_set_speed
(
Monitor
*
mon
,
const
QDict
*
qdict
);
#endif
migration.c
浏览文件 @
3dc85383
...
...
@@ -473,21 +473,17 @@ void qmp_migrate_cancel(Error **errp)
migrate_fd_cancel
(
migrate_get_current
());
}
int
do_migrate_set_speed
(
Monitor
*
mon
,
const
QDict
*
qdict
,
QObject
**
ret_data
)
void
qmp_migrate_set_speed
(
int64_t
value
,
Error
**
errp
)
{
int64_t
d
;
MigrationState
*
s
;
d
=
qdict_get_int
(
qdict
,
"value"
);
if
(
d
<
0
)
{
d
=
0
;
if
(
value
<
0
)
{
value
=
0
;
}
s
=
migrate_get_current
();
s
->
bandwidth_limit
=
d
;
s
->
bandwidth_limit
=
value
;
qemu_file_set_rate_limit
(
s
->
file
,
s
->
bandwidth_limit
);
return
0
;
}
void
qmp_migrate_set_downtime
(
double
value
,
Error
**
errp
)
...
...
migration.h
浏览文件 @
3dc85383
...
...
@@ -42,8 +42,6 @@ int qemu_start_incoming_migration(const char *uri);
int
do_migrate
(
Monitor
*
mon
,
const
QDict
*
qdict
,
QObject
**
ret_data
);
int
do_migrate_set_speed
(
Monitor
*
mon
,
const
QDict
*
qdict
,
QObject
**
ret_data
);
uint64_t
migrate_max_downtime
(
void
);
void
do_info_migrate_print
(
Monitor
*
mon
,
const
QObject
*
data
);
...
...
qapi-schema.json
浏览文件 @
3dc85383
...
...
@@ -1153,3 +1153,18 @@
#
Since:
0.14
.
0
##
{
'command':
'migrate_set_downtime'
,
'data':
{
'value':
'number'
}
}
##
#
@migrate_set_speed
#
#
Set
maximum
speed
for
migration.
#
#
@value:
maximum
speed
in
bytes.
#
#
Returns:
nothing
on
success
#
#
Notes:
A
value
lesser
than
zero
will
be
automatically
round
up
to
zero.
#
#
Since:
0.14
.
0
##
{
'command':
'migrate_set_speed'
,
'data':
{
'value':
'int'
}
}
qmp-commands.hx
浏览文件 @
3dc85383
...
...
@@ -492,10 +492,7 @@ EQMP
{
.name = "migrate_set_speed",
.args_type = "value:o",
.params = "value",
.help = "set maximum speed (in bytes) for migrations",
.user_print = monitor_user_noop,
.mhandler.cmd_new = do_migrate_set_speed,
.mhandler.cmd_new = qmp_marshal_input_migrate_set_speed,
},
SQMP
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录