Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
f01fe54e
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看板
提交
f01fe54e
编写于
2月 05, 2014
作者:
C
Cédric Bosdonnat
提交者:
Daniel P. Berrange
2月 12, 2014
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
LXC from native: convert lxc.tty to console devices
上级
69fc2362
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
50 addition
and
0 deletion
+50
-0
src/lxc/lxc_native.c
src/lxc/lxc_native.c
+44
-0
tests/lxcconf2xmldata/lxcconf2xml-simple.xml
tests/lxcconf2xmldata/lxcconf2xml-simple.xml
+6
-0
未找到文件。
src/lxc/lxc_native.c
浏览文件 @
f01fe54e
...
...
@@ -503,6 +503,46 @@ lxcConvertNetworkSettings(virDomainDefPtr def, virConfPtr properties)
return
0
;
}
static
int
lxcCreateConsoles
(
virDomainDefPtr
def
,
virConfPtr
properties
)
{
virConfValuePtr
value
;
int
nbttys
=
0
;
virDomainChrDefPtr
console
;
size_t
i
;
if
(
!
(
value
=
virConfGetValue
(
properties
,
"lxc.tty"
))
||
!
value
->
str
)
return
0
;
if
(
virStrToLong_i
(
value
->
str
,
NULL
,
10
,
&
nbttys
)
<
0
)
{
virReportError
(
VIR_ERR_INTERNAL_ERROR
,
_
(
"failed to parse int: '%s'"
),
value
->
str
);
return
-
1
;
}
if
(
VIR_ALLOC_N
(
def
->
consoles
,
nbttys
)
<
0
)
return
-
1
;
def
->
nconsoles
=
nbttys
;
for
(
i
=
0
;
i
<
nbttys
;
i
++
)
{
if
(
!
(
console
=
virDomainChrDefNew
()))
goto
error
;
console
->
deviceType
=
VIR_DOMAIN_CHR_DEVICE_TYPE_CONSOLE
;
console
->
targetType
=
VIR_DOMAIN_CHR_CONSOLE_TARGET_TYPE_LXC
;
console
->
target
.
port
=
i
;
console
->
source
.
type
=
VIR_DOMAIN_CHR_TYPE_PTY
;
def
->
consoles
[
i
]
=
console
;
}
return
0
;
error:
virDomainChrDefFree
(
console
);
return
-
1
;
}
virDomainDefPtr
lxcParseConfigString
(
const
char
*
config
)
{
...
...
@@ -567,6 +607,10 @@ lxcParseConfigString(const char *config)
if
(
lxcConvertNetworkSettings
(
vmdef
,
properties
)
<
0
)
goto
error
;
/* Consoles */
if
(
lxcCreateConsoles
(
vmdef
,
properties
)
<
0
)
goto
error
;
goto
cleanup
;
error:
...
...
tests/lxcconf2xmldata/lxcconf2xml-simple.xml
浏览文件 @
f01fe54e
...
...
@@ -31,5 +31,11 @@
<source
bridge=
'virbr0'
/>
<link
state=
'up'
/>
</interface>
<console
type=
'pty'
>
<target
type=
'lxc'
port=
'0'
/>
</console>
<console
type=
'pty'
>
<target
type=
'lxc'
port=
'1'
/>
</console>
</devices>
</domain>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录