Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
571bced2
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,发现更多精彩内容 >>
提交
571bced2
编写于
7月 08, 2016
作者:
D
Daniel P. Berrange
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
libxl: convert to typesafe virConf accessors
Signed-off-by:
N
Daniel P. Berrange
<
berrange@redhat.com
>
上级
51eeb756
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
45 deletion
+8
-45
src/libxl/libxl_conf.c
src/libxl/libxl_conf.c
+8
-45
未找到文件。
src/libxl/libxl_conf.c
浏览文件 @
571bced2
...
@@ -1271,22 +1271,11 @@ static int
...
@@ -1271,22 +1271,11 @@ static int
libxlGetAutoballoonConf
(
libxlDriverConfigPtr
cfg
,
libxlGetAutoballoonConf
(
libxlDriverConfigPtr
cfg
,
virConfPtr
conf
)
virConfPtr
conf
)
{
{
virConfValuePtr
p
;
regex_t
regex
;
regex_t
regex
;
int
res
;
int
res
;
p
=
virConfGetValue
(
conf
,
"autoballoon"
);
if
(
virConfGetValueBool
(
conf
,
"autoballoon"
,
&
cfg
->
autoballoon
)
<
0
)
if
(
p
)
{
return
-
1
;
if
(
p
->
type
!=
VIR_CONF_ULONG
)
{
virReportError
(
VIR_ERR_INTERNAL_ERROR
,
"%s"
,
_
(
"Unexpected type for 'autoballoon' setting"
));
return
-
1
;
}
cfg
->
autoballoon
=
p
->
l
!=
0
;
return
0
;
}
if
((
res
=
regcomp
(
&
regex
,
if
((
res
=
regcomp
(
&
regex
,
"(^| )dom0_mem=((|min:|max:)[0-9]+[bBkKmMgG]?,?)+($| )"
,
"(^| )dom0_mem=((|min:|max:)[0-9]+[bBkKmMgG]?,?)+($| )"
,
...
@@ -1450,7 +1439,6 @@ int libxlDriverConfigLoadFile(libxlDriverConfigPtr cfg,
...
@@ -1450,7 +1439,6 @@ int libxlDriverConfigLoadFile(libxlDriverConfigPtr cfg,
const
char
*
filename
)
const
char
*
filename
)
{
{
virConfPtr
conf
=
NULL
;
virConfPtr
conf
=
NULL
;
virConfValuePtr
p
;
int
ret
=
-
1
;
int
ret
=
-
1
;
/* defaults for keepalive messages */
/* defaults for keepalive messages */
...
@@ -1472,39 +1460,14 @@ int libxlDriverConfigLoadFile(libxlDriverConfigPtr cfg,
...
@@ -1472,39 +1460,14 @@ int libxlDriverConfigLoadFile(libxlDriverConfigPtr cfg,
if
(
libxlGetAutoballoonConf
(
cfg
,
conf
)
<
0
)
if
(
libxlGetAutoballoonConf
(
cfg
,
conf
)
<
0
)
goto
cleanup
;
goto
cleanup
;
if
((
p
=
virConfGetValue
(
conf
,
"lock_manager"
)))
{
if
(
virConfGetValueString
(
conf
,
"lock_manager"
,
&
cfg
->
lockManagerName
)
<
0
)
if
(
p
->
type
!=
VIR_CONF_STRING
)
{
goto
cleanup
;
virReportError
(
VIR_ERR_INTERNAL_ERROR
,
"%s"
,
_
(
"Unexpected type for 'lock_manager' setting"
));
goto
cleanup
;
}
if
(
VIR_STRDUP
(
cfg
->
lockManagerName
,
p
->
str
)
<
0
)
goto
cleanup
;
}
if
((
p
=
virConfGetValue
(
conf
,
"keepalive_interval"
)))
{
if
(
p
->
type
!=
VIR_CONF_LONG
&&
p
->
type
!=
VIR_CONF_ULONG
)
{
virReportError
(
VIR_ERR_INTERNAL_ERROR
,
"%s"
,
_
(
"Unexpected type for 'keepalive_interval' setting"
));
goto
cleanup
;
}
cfg
->
keepAliveInterval
=
p
->
l
;
}
if
((
p
=
virConfGetValue
(
conf
,
"keepalive_count"
)))
{
if
(
virConfGetValueInt
(
conf
,
"keepalive_interval"
,
&
cfg
->
keepAliveInterval
)
<
0
)
if
(
p
->
type
!=
VIR_CONF_ULONG
)
{
goto
cleanup
;
virReportError
(
VIR_ERR_INTERNAL_ERROR
,
"%s"
,
_
(
"Unexpected type for 'keepalive_count' setting"
));
goto
cleanup
;
}
cfg
->
keepAliveCount
=
p
->
l
;
if
(
virConfGetValueUInt
(
conf
,
"keepalive_count"
,
&
cfg
->
keepAliveCount
)
<
0
)
}
goto
cleanup
;
ret
=
0
;
ret
=
0
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录