Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
de9be0ab
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看板
提交
de9be0ab
编写于
8月 22, 2012
作者:
D
Daniel P. Berrange
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove xenner support
Signed-off-by:
N
Daniel P. Berrange
<
berrange@redhat.com
>
上级
ca58a1b0
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
47 addition
and
111 deletion
+47
-111
src/qemu/qemu_capabilities.c
src/qemu/qemu_capabilities.c
+47
-111
未找到文件。
src/qemu/qemu_capabilities.c
浏览文件 @
de9be0ab
...
@@ -237,7 +237,6 @@ struct qemu_feature_flags {
...
@@ -237,7 +237,6 @@ struct qemu_feature_flags {
struct
qemu_arch_info
{
struct
qemu_arch_info
{
const
char
*
arch
;
const
char
*
arch
;
int
wordsize
;
int
wordsize
;
const
char
*
machine
;
const
char
*
binary
;
const
char
*
binary
;
const
char
*
altbinary
;
const
char
*
altbinary
;
const
struct
qemu_feature_flags
*
flags
;
const
struct
qemu_feature_flags
*
flags
;
...
@@ -259,25 +258,20 @@ static const struct qemu_feature_flags const arch_info_x86_64_flags [] = {
...
@@ -259,25 +258,20 @@ static const struct qemu_feature_flags const arch_info_x86_64_flags [] = {
/* The archicture tables for supported QEMU archs */
/* The archicture tables for supported QEMU archs */
static
const
struct
qemu_arch_info
const
arch_info_hvm
[]
=
{
static
const
struct
qemu_arch_info
const
arch_info_hvm
[]
=
{
{
"i686"
,
32
,
NULL
,
"qemu"
,
{
"i686"
,
32
,
"qemu"
,
"qemu-system-x86_64"
,
arch_info_i686_flags
,
4
},
"qemu-system-x86_64"
,
arch_info_i686_flags
,
4
},
{
"x86_64"
,
64
,
NULL
,
"qemu-system-x86_64"
,
{
"x86_64"
,
64
,
"qemu-system-x86_64"
,
NULL
,
arch_info_x86_64_flags
,
2
},
NULL
,
arch_info_x86_64_flags
,
2
},
{
"arm"
,
32
,
NULL
,
"qemu-system-arm"
,
NULL
,
NULL
,
0
},
{
"arm"
,
32
,
"qemu-system-arm"
,
NULL
,
NULL
,
0
},
{
"microblaze"
,
32
,
NULL
,
"qemu-system-microblaze"
,
NULL
,
NULL
,
0
},
{
"microblaze"
,
32
,
"qemu-system-microblaze"
,
NULL
,
NULL
,
0
},
{
"microblazeel"
,
32
,
NULL
,
"qemu-system-microblazeel"
,
NULL
,
NULL
,
0
},
{
"microblazeel"
,
32
,
"qemu-system-microblazeel"
,
NULL
,
NULL
,
0
},
{
"mips"
,
32
,
NULL
,
"qemu-system-mips"
,
NULL
,
NULL
,
0
},
{
"mips"
,
32
,
"qemu-system-mips"
,
NULL
,
NULL
,
0
},
{
"mipsel"
,
32
,
NULL
,
"qemu-system-mipsel"
,
NULL
,
NULL
,
0
},
{
"mipsel"
,
32
,
"qemu-system-mipsel"
,
NULL
,
NULL
,
0
},
{
"sparc"
,
32
,
NULL
,
"qemu-system-sparc"
,
NULL
,
NULL
,
0
},
{
"sparc"
,
32
,
"qemu-system-sparc"
,
NULL
,
NULL
,
0
},
{
"ppc"
,
32
,
NULL
,
"qemu-system-ppc"
,
NULL
,
NULL
,
0
},
{
"ppc"
,
32
,
"qemu-system-ppc"
,
NULL
,
NULL
,
0
},
{
"ppc64"
,
64
,
NULL
,
"qemu-system-ppc64"
,
NULL
,
NULL
,
0
},
{
"ppc64"
,
64
,
"qemu-system-ppc64"
,
NULL
,
NULL
,
0
},
{
"itanium"
,
64
,
NULL
,
"qemu-system-ia64"
,
NULL
,
NULL
,
0
},
{
"itanium"
,
64
,
"qemu-system-ia64"
,
NULL
,
NULL
,
0
},
{
"s390x"
,
64
,
NULL
,
"qemu-system-s390x"
,
NULL
,
NULL
,
0
},
{
"s390x"
,
64
,
"qemu-system-s390x"
,
NULL
,
NULL
,
0
},
};
static
const
struct
qemu_arch_info
const
arch_info_xen
[]
=
{
{
"i686"
,
32
,
"xenner"
,
"xenner"
,
NULL
,
arch_info_i686_flags
,
4
},
{
"x86_64"
,
64
,
"xenner"
,
"xenner"
,
NULL
,
arch_info_x86_64_flags
,
2
},
};
};
...
@@ -580,8 +574,7 @@ static int
...
@@ -580,8 +574,7 @@ static int
qemuCapsInitGuest
(
virCapsPtr
caps
,
qemuCapsInitGuest
(
virCapsPtr
caps
,
qemuCapsCachePtr
cache
,
qemuCapsCachePtr
cache
,
const
char
*
hostmachine
,
const
char
*
hostmachine
,
const
struct
qemu_arch_info
*
info
,
const
struct
qemu_arch_info
*
info
)
int
hvm
)
{
{
virCapsGuestPtr
guest
;
virCapsGuestPtr
guest
;
int
i
;
int
i
;
...
@@ -660,36 +653,13 @@ qemuCapsInitGuest(virCapsPtr caps,
...
@@ -660,36 +653,13 @@ qemuCapsInitGuest(virCapsPtr caps,
qemuCapsGet
(
qemubinCaps
,
QEMU_CAPS_KQEMU
))
qemuCapsGet
(
qemubinCaps
,
QEMU_CAPS_KQEMU
))
haskqemu
=
1
;
haskqemu
=
1
;
if
(
info
->
machine
)
{
if
(
qemuCapsGetMachineTypesCaps
(
qemubinCaps
,
&
nmachines
,
&
machines
)
<
0
)
virCapsGuestMachinePtr
machine
;
goto
error
;
if
(
VIR_ALLOC
(
machine
)
<
0
)
{
goto
no_memory
;
}
if
(
!
(
machine
->
name
=
strdup
(
info
->
machine
)))
{
VIR_FREE
(
machine
);
goto
no_memory
;
}
nmachines
=
1
;
if
(
VIR_ALLOC_N
(
machines
,
nmachines
)
<
0
)
{
VIR_FREE
(
machine
->
name
);
VIR_FREE
(
machine
);
goto
no_memory
;
}
machines
[
0
]
=
machine
;
}
else
{
if
(
qemuCapsGetMachineTypesCaps
(
qemubinCaps
,
&
nmachines
,
&
machines
)
<
0
)
goto
error
;
}
/* We register kvm as the base emulator too, since we can
/* We register kvm as the base emulator too, since we can
* just give -no-kvm to disable acceleration if required */
* just give -no-kvm to disable acceleration if required */
if
((
guest
=
virCapabilitiesAddGuest
(
caps
,
if
((
guest
=
virCapabilitiesAddGuest
(
caps
,
hvm
?
"hvm"
:
"xen
"
,
"hvm
"
,
info
->
arch
,
info
->
arch
,
info
->
wordsize
,
info
->
wordsize
,
binary
,
binary
,
...
@@ -710,52 +680,42 @@ qemuCapsInitGuest(virCapsPtr caps,
...
@@ -710,52 +680,42 @@ qemuCapsInitGuest(virCapsPtr caps,
!
virCapabilitiesAddGuestFeature
(
guest
,
"deviceboot"
,
1
,
0
))
!
virCapabilitiesAddGuestFeature
(
guest
,
"deviceboot"
,
1
,
0
))
goto
error
;
goto
error
;
if
(
hvm
)
{
if
(
virCapabilitiesAddGuestDomain
(
guest
,
if
(
virCapabilitiesAddGuestDomain
(
guest
,
"qemu"
,
"qemu"
,
NULL
,
NULL
,
NULL
,
NULL
,
0
,
0
,
NULL
)
==
NULL
)
NULL
)
==
NULL
)
goto
error
;
goto
error
;
if
(
haskqemu
&&
if
(
haskqemu
&&
virCapabilitiesAddGuestDomain
(
guest
,
virCapabilitiesAddGuestDomain
(
guest
,
"kqemu"
,
"kqemu"
,
NULL
,
NULL
,
NULL
,
NULL
,
0
,
0
,
NULL
)
==
NULL
)
NULL
)
==
NULL
)
goto
error
;
goto
error
;
if
(
haskvm
)
{
if
(
haskvm
)
{
virCapsGuestDomainPtr
dom
;
virCapsGuestDomainPtr
dom
;
if
(
kvmbin
&&
if
(
kvmbin
&&
qemuCapsGetMachineTypesCaps
(
kvmbinCaps
,
&
nmachines
,
&
machines
)
<
0
)
qemuCapsGetMachineTypesCaps
(
kvmbinCaps
,
&
nmachines
,
&
machines
)
<
0
)
goto
error
;
goto
error
;
if
((
dom
=
virCapabilitiesAddGuestDomain
(
guest
,
if
((
dom
=
virCapabilitiesAddGuestDomain
(
guest
,
"kvm"
,
"kvm"
,
kvmbin
?
kvmbin
:
binary
,
kvmbin
?
kvmbin
:
binary
,
NULL
,
NULL
,
nmachines
,
nmachines
,
machines
))
==
NULL
)
{
machines
))
==
NULL
)
{
goto
error
;
goto
error
;
}
}
machines
=
NULL
;
machines
=
NULL
;
nmachines
=
0
;
nmachines
=
0
;
}
}
else
{
if
(
virCapabilitiesAddGuestDomain
(
guest
,
"kvm"
,
NULL
,
NULL
,
0
,
NULL
)
==
NULL
)
goto
error
;
}
}
if
(
info
->
nflags
)
{
if
(
info
->
nflags
)
{
...
@@ -778,9 +738,6 @@ cleanup:
...
@@ -778,9 +738,6 @@ cleanup:
return
ret
;
return
ret
;
no_memory:
virReportOOMError
();
error:
error:
virCapabilitiesFreeMachines
(
machines
,
nmachines
);
virCapabilitiesFreeMachines
(
machines
,
nmachines
);
...
@@ -841,7 +798,6 @@ virCapsPtr qemuCapsInit(qemuCapsCachePtr cache)
...
@@ -841,7 +798,6 @@ virCapsPtr qemuCapsInit(qemuCapsCachePtr cache)
struct
utsname
utsname
;
struct
utsname
utsname
;
virCapsPtr
caps
;
virCapsPtr
caps
;
int
i
;
int
i
;
char
*
xenner
=
NULL
;
/* Really, this never fails - look at the man-page. */
/* Really, this never fails - look at the man-page. */
uname
(
&
utsname
);
uname
(
&
utsname
);
...
@@ -877,28 +833,9 @@ virCapsPtr qemuCapsInit(qemuCapsCachePtr cache)
...
@@ -877,28 +833,9 @@ virCapsPtr qemuCapsInit(qemuCapsCachePtr cache)
for
(
i
=
0
;
i
<
ARRAY_CARDINALITY
(
arch_info_hvm
)
;
i
++
)
for
(
i
=
0
;
i
<
ARRAY_CARDINALITY
(
arch_info_hvm
)
;
i
++
)
if
(
qemuCapsInitGuest
(
caps
,
cache
,
if
(
qemuCapsInitGuest
(
caps
,
cache
,
utsname
.
machine
,
utsname
.
machine
,
&
arch_info_hvm
[
i
]
,
1
)
<
0
)
&
arch_info_hvm
[
i
])
<
0
)
goto
no_memory
;
goto
no_memory
;
/* Then possibly the Xen paravirt guests (ie Xenner */
xenner
=
virFindFileInPath
(
"xenner"
);
if
(
xenner
!=
NULL
&&
virFileIsExecutable
(
xenner
)
==
0
&&
access
(
"/dev/kvm"
,
F_OK
)
==
0
)
{
for
(
i
=
0
;
i
<
ARRAY_CARDINALITY
(
arch_info_xen
)
;
i
++
)
/* Allow Xen 32-on-32, 32-on-64 and 64-on-64 */
if
(
STREQ
(
arch_info_xen
[
i
].
arch
,
utsname
.
machine
)
||
(
STREQ
(
utsname
.
machine
,
"x86_64"
)
&&
STREQ
(
arch_info_xen
[
i
].
arch
,
"i686"
)))
{
if
(
qemuCapsInitGuest
(
caps
,
cache
,
utsname
.
machine
,
&
arch_info_xen
[
i
],
0
)
<
0
)
goto
no_memory
;
}
}
VIR_FREE
(
xenner
);
/* QEMU Requires an emulator in the XML */
/* QEMU Requires an emulator in the XML */
virCapabilitiesSetEmulatorRequired
(
caps
);
virCapabilitiesSetEmulatorRequired
(
caps
);
...
@@ -907,7 +844,6 @@ virCapsPtr qemuCapsInit(qemuCapsCachePtr cache)
...
@@ -907,7 +844,6 @@ virCapsPtr qemuCapsInit(qemuCapsCachePtr cache)
return
caps
;
return
caps
;
no_memory:
no_memory:
VIR_FREE
(
xenner
);
virCapabilitiesFree
(
caps
);
virCapabilitiesFree
(
caps
);
return
NULL
;
return
NULL
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录