Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
9d5cef18
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看板
提交
9d5cef18
编写于
7月 27, 2011
作者:
H
Hu Tao
提交者:
Michal Privoznik
7月 28, 2011
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
python: add python binding for virDomainGetBlkioParameters
上级
1768bf63
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
79 addition
and
6 deletion
+79
-6
python/libvirt-override-api.xml
python/libvirt-override-api.xml
+3
-3
python/libvirt-override.c
python/libvirt-override.c
+76
-3
未找到文件。
python/libvirt-override-api.xml
浏览文件 @
9d5cef18
...
...
@@ -208,10 +208,10 @@
<arg
name=
'params'
type=
'virBlkioParameterPtr'
info=
'pointer to blkio tunable objects'
/>
</function>
<function
name=
'virDomainGetBlkioParameters'
file=
'python'
>
<info>
Get the blkio parameters
, the @params array will be filled with the values.
</info>
<return
type=
'
int'
info=
'-1 in case of error, 0 in case of success.
'
/>
<info>
Get the blkio parameters
</info>
<return
type=
'
virSchedParameterPtr'
info=
'None in case of error, returns a dictionary of params
'
/>
<arg
name=
'domain'
type=
'virDomainPtr'
info=
'pointer to domain object'
/>
<arg
name=
'
params'
type=
'virBlkioParameterPtr'
info=
'pointer to blkio tunable objects
'
/>
<arg
name=
'
flags'
type=
'int'
info=
'an OR'ed set of virDomainModificationImpact
'
/>
</function>
<function
name=
'virDomainSetMemoryParameters'
file=
'python'
>
<info>
Change the memory tunables
</info>
...
...
python/libvirt-override.c
浏览文件 @
9d5cef18
...
...
@@ -572,11 +572,84 @@ libvirt_virDomainSetBlkioParameters(PyObject *self ATTRIBUTE_UNUSED,
return
VIR_PY_INT_FAIL
;
}
/* FIXME: This is a place holder for the implementation. */
static
PyObject
*
libvirt_virDomainGetBlkioParameters
(
PyObject
*
self
ATTRIBUTE_UNUSED
,
PyObject
*
args
ATTRIBUTE_UNUSED
)
{
return
VIR_PY_INT_FAIL
;
PyObject
*
args
)
{
virDomainPtr
domain
;
PyObject
*
pyobj_domain
,
*
info
;
int
i_retval
;
int
nparams
=
0
,
i
;
unsigned
int
flags
;
virTypedParameterPtr
params
;
if
(
!
PyArg_ParseTuple
(
args
,
(
char
*
)
"Oi:virDomainGetBlkioParameters"
,
&
pyobj_domain
,
&
flags
))
return
(
NULL
);
domain
=
(
virDomainPtr
)
PyvirDomain_Get
(
pyobj_domain
);
LIBVIRT_BEGIN_ALLOW_THREADS
;
i_retval
=
virDomainGetBlkioParameters
(
domain
,
NULL
,
&
nparams
,
flags
);
LIBVIRT_END_ALLOW_THREADS
;
if
(
i_retval
<
0
)
return
VIR_PY_NONE
;
if
((
params
=
malloc
(
sizeof
(
*
params
)
*
nparams
))
==
NULL
)
return
VIR_PY_NONE
;
LIBVIRT_BEGIN_ALLOW_THREADS
;
i_retval
=
virDomainGetBlkioParameters
(
domain
,
params
,
&
nparams
,
flags
);
LIBVIRT_END_ALLOW_THREADS
;
if
(
i_retval
<
0
)
{
free
(
params
);
return
VIR_PY_NONE
;
}
/* convert to a Python tuple of long objects */
if
((
info
=
PyDict_New
())
==
NULL
)
{
free
(
params
);
return
VIR_PY_NONE
;
}
for
(
i
=
0
;
i
<
nparams
;
i
++
)
{
PyObject
*
key
,
*
val
;
switch
(
params
[
i
].
type
)
{
case
VIR_TYPED_PARAM_INT
:
val
=
PyInt_FromLong
((
long
)
params
[
i
].
value
.
i
);
break
;
case
VIR_TYPED_PARAM_UINT
:
val
=
PyInt_FromLong
((
long
)
params
[
i
].
value
.
ui
);
break
;
case
VIR_TYPED_PARAM_LLONG
:
val
=
PyLong_FromLongLong
((
long
long
)
params
[
i
].
value
.
l
);
break
;
case
VIR_TYPED_PARAM_ULLONG
:
val
=
PyLong_FromLongLong
((
long
long
)
params
[
i
].
value
.
ul
);
break
;
case
VIR_TYPED_PARAM_DOUBLE
:
val
=
PyFloat_FromDouble
((
double
)
params
[
i
].
value
.
d
);
break
;
case
VIR_TYPED_PARAM_BOOLEAN
:
val
=
PyBool_FromLong
((
long
)
params
[
i
].
value
.
b
);
break
;
default:
free
(
params
);
Py_DECREF
(
info
);
return
VIR_PY_NONE
;
}
key
=
libvirt_constcharPtrWrap
(
params
[
i
].
field
);
PyDict_SetItem
(
info
,
key
,
val
);
}
free
(
params
);
return
(
info
);
}
/* FIXME: This is a place holder for the implementation. */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录