Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
a29bafd5
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看板
提交
a29bafd5
编写于
4月 10, 2013
作者:
O
Osier Yang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
cleanup: Change datatype of disk->shared to boolean
上级
7a984d57
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
4 addition
and
4 deletion
+4
-4
src/conf/domain_conf.c
src/conf/domain_conf.c
+1
-1
src/conf/domain_conf.h
src/conf/domain_conf.h
+1
-1
src/xenxs/xen_sxpr.c
src/xenxs/xen_sxpr.c
+1
-1
src/xenxs/xen_xm.c
src/xenxs/xen_xm.c
+1
-1
未找到文件。
src/conf/domain_conf.c
浏览文件 @
a29bafd5
...
@@ -4639,7 +4639,7 @@ virDomainDiskDefParseXML(virDomainXMLOptionPtr xmlopt,
...
@@ -4639,7 +4639,7 @@ virDomainDiskDefParseXML(virDomainXMLOptionPtr xmlopt,
} else if (xmlStrEqual(cur->name, BAD_CAST "readonly")) {
} else if (xmlStrEqual(cur->name, BAD_CAST "readonly")) {
def->readonly = 1;
def->readonly = 1;
} else if (xmlStrEqual(cur->name, BAD_CAST "shareable")) {
} else if (xmlStrEqual(cur->name, BAD_CAST "shareable")) {
def->shared =
1
;
def->shared =
true
;
} else if (xmlStrEqual(cur->name, BAD_CAST "transient")) {
} else if (xmlStrEqual(cur->name, BAD_CAST "transient")) {
def->transient = 1;
def->transient = 1;
} else if ((flags & VIR_DOMAIN_XML_INTERNAL_STATUS) &&
} else if ((flags & VIR_DOMAIN_XML_INTERNAL_STATUS) &&
...
...
src/conf/domain_conf.h
浏览文件 @
a29bafd5
...
@@ -675,7 +675,7 @@ struct _virDomainDiskDef {
...
@@ -675,7 +675,7 @@ struct _virDomainDiskDef {
int
snapshot
;
/* enum virDomainSnapshotLocation, snapshot_conf.h */
int
snapshot
;
/* enum virDomainSnapshotLocation, snapshot_conf.h */
int
startupPolicy
;
/* enum virDomainStartupPolicy */
int
startupPolicy
;
/* enum virDomainStartupPolicy */
unsigned
int
readonly
:
1
;
unsigned
int
readonly
:
1
;
unsigned
int
shared
:
1
;
bool
shared
;
unsigned
int
transient
:
1
;
unsigned
int
transient
:
1
;
virDomainDeviceInfo
info
;
virDomainDeviceInfo
info
;
virStorageEncryptionPtr
encryption
;
virStorageEncryptionPtr
encryption
;
...
...
src/xenxs/xen_sxpr.c
浏览文件 @
a29bafd5
...
@@ -509,7 +509,7 @@ xenParseSxprDisks(virDomainDefPtr def,
...
@@ -509,7 +509,7 @@ xenParseSxprDisks(virDomainDefPtr def,
disk
->
readonly
=
1
;
disk
->
readonly
=
1
;
if
(
mode
&&
if
(
mode
&&
strchr
(
mode
,
'!'
))
strchr
(
mode
,
'!'
))
disk
->
shared
=
1
;
disk
->
shared
=
true
;
if
(
VIR_REALLOC_N
(
def
->
disks
,
def
->
ndisks
+
1
)
<
0
)
if
(
VIR_REALLOC_N
(
def
->
disks
,
def
->
ndisks
+
1
)
<
0
)
goto
no_memory
;
goto
no_memory
;
...
...
src/xenxs/xen_xm.c
浏览文件 @
a29bafd5
...
@@ -613,7 +613,7 @@ xenParseXM(virConfPtr conf, int xendConfigVersion,
...
@@ -613,7 +613,7 @@ xenParseXM(virConfPtr conf, int xendConfigVersion,
disk
->
readonly
=
1
;
disk
->
readonly
=
1
;
else
if
((
STREQ
(
head
,
"w!"
))
||
else
if
((
STREQ
(
head
,
"w!"
))
||
(
STREQ
(
head
,
"!"
)))
(
STREQ
(
head
,
"!"
)))
disk
->
shared
=
1
;
disk
->
shared
=
true
;
/* Maintain list in sorted order according to target device name */
/* Maintain list in sorted order according to target device name */
if
(
VIR_REALLOC_N
(
def
->
disks
,
def
->
ndisks
+
1
)
<
0
)
if
(
VIR_REALLOC_N
(
def
->
disks
,
def
->
ndisks
+
1
)
<
0
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录