Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
4802d59e
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4802d59e
编写于
2月 18, 2013
作者:
J
Jiri Denemark
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
python: Implement virDomainMigrateGetCompressionCache wrapper
上级
34f44e91
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
35 addition
and
0 deletion
+35
-0
python/libvirt-override-api.xml
python/libvirt-override-api.xml
+7
-0
python/libvirt-override.c
python/libvirt-override.c
+28
-0
未找到文件。
python/libvirt-override-api.xml
浏览文件 @
4802d59e
...
...
@@ -491,6 +491,13 @@
<arg
name=
'flags'
type=
'unsigned int'
info=
'fine-tuning flags, currently unused, pass 0.'
/>
<return
type=
'virDomainBlockJobInfo'
info=
'A dictionary containing job information.'
/>
</function>
<function
name=
'virDomainMigrateGetCompressionCache'
file=
'python'
>
<info>
Get current size of the cache (in bytes) used for compressing
repeatedly transferred memory pages during live migration.
</info>
<arg
name=
'domain'
type=
'virDomainPtr'
info=
'a domain object'
/>
<arg
name=
'flags'
type=
'unsigned int'
info=
'flags, currently unused, pass 0.'
/>
<return
type=
'unsigned long long'
info=
'current cache size, or None in case of error'
/>
</function>
<function
name=
'virDomainMigrateGetMaxSpeed'
file=
'python'
>
<info>
Get currently configured maximum migration speed for a domain
</info>
<arg
name=
'domain'
type=
'virDomainPtr'
info=
'a domain object'
/>
...
...
python/libvirt-override.c
浏览文件 @
4802d59e
...
...
@@ -6321,6 +6321,33 @@ libvirt_virDomainSendKey(PyObject *self ATTRIBUTE_UNUSED,
return
py_retval
;
}
static
PyObject
*
libvirt_virDomainMigrateGetCompressionCache
(
PyObject
*
self
ATTRIBUTE_UNUSED
,
PyObject
*
args
)
{
PyObject
*
pyobj_domain
;
virDomainPtr
domain
;
unsigned
int
flags
;
unsigned
long
long
cacheSize
;
int
rc
;
if
(
!
PyArg_ParseTuple
(
args
,
(
char
*
)
"Oi:virDomainMigrateGetCompressionCache"
,
&
pyobj_domain
,
&
flags
))
return
VIR_PY_NONE
;
domain
=
(
virDomainPtr
)
PyvirDomain_Get
(
pyobj_domain
);
LIBVIRT_BEGIN_ALLOW_THREADS
;
rc
=
virDomainMigrateGetCompressionCache
(
domain
,
&
cacheSize
,
flags
);
LIBVIRT_END_ALLOW_THREADS
;
if
(
rc
<
0
)
return
VIR_PY_NONE
;
return
libvirt_ulonglongWrap
(
cacheSize
);
}
static
PyObject
*
libvirt_virDomainMigrateGetMaxSpeed
(
PyObject
*
self
ATTRIBUTE_UNUSED
,
PyObject
*
args
)
{
PyObject
*
py_retval
;
...
...
@@ -6724,6 +6751,7 @@ static PyMethodDef libvirtMethods[] = {
{(
char
*
)
"virDomainSetBlockIoTune"
,
libvirt_virDomainSetBlockIoTune
,
METH_VARARGS
,
NULL
},
{(
char
*
)
"virDomainGetBlockIoTune"
,
libvirt_virDomainGetBlockIoTune
,
METH_VARARGS
,
NULL
},
{(
char
*
)
"virDomainSendKey"
,
libvirt_virDomainSendKey
,
METH_VARARGS
,
NULL
},
{(
char
*
)
"virDomainMigrateGetCompressionCache"
,
libvirt_virDomainMigrateGetCompressionCache
,
METH_VARARGS
,
NULL
},
{(
char
*
)
"virDomainMigrateGetMaxSpeed"
,
libvirt_virDomainMigrateGetMaxSpeed
,
METH_VARARGS
,
NULL
},
{(
char
*
)
"virDomainBlockPeek"
,
libvirt_virDomainBlockPeek
,
METH_VARARGS
,
NULL
},
{(
char
*
)
"virDomainMemoryPeek"
,
libvirt_virDomainMemoryPeek
,
METH_VARARGS
,
NULL
},
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录