Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
d58c382e
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看板
提交
d58c382e
编写于
5月 09, 2011
作者:
W
Wen Congyang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
check whether qemu supports multi function PCI device
qemu supports multi function PCI device at least version 0.13.0.
上级
006be75e
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
8 addition
and
1 deletion
+8
-1
src/qemu/qemu_capabilities.c
src/qemu/qemu_capabilities.c
+5
-0
src/qemu/qemu_capabilities.h
src/qemu/qemu_capabilities.h
+1
-0
tests/qemuhelptest.c
tests/qemuhelptest.c
+2
-1
未找到文件。
src/qemu/qemu_capabilities.c
浏览文件 @
d58c382e
...
@@ -119,6 +119,8 @@ VIR_ENUM_IMPL(qemuCaps, QEMU_CAPS_LAST,
...
@@ -119,6 +119,8 @@ VIR_ENUM_IMPL(qemuCaps, QEMU_CAPS_LAST,
"device-spicevmc"
,
"device-spicevmc"
,
"virtio-tx-alg"
,
"virtio-tx-alg"
,
"device-qxl-vga"
,
"device-qxl-vga"
,
"pci-multifunction"
,
/* 60 */
);
);
struct
qemu_feature_flags
{
struct
qemu_feature_flags
{
...
@@ -1024,6 +1026,9 @@ qemuCapsComputeCmdFlags(const char *help,
...
@@ -1024,6 +1026,9 @@ qemuCapsComputeCmdFlags(const char *help,
*/
*/
if
(
version
>=
13000
)
if
(
version
>=
13000
)
qemuCapsSet
(
flags
,
QEMU_CAPS_MONITOR_JSON
);
qemuCapsSet
(
flags
,
QEMU_CAPS_MONITOR_JSON
);
if
(
version
>=
13000
)
qemuCapsSet
(
flags
,
QEMU_CAPS_PCI_MULTIFUNCTION
);
}
}
/* We parse the output of 'qemu -help' to get the QEMU
/* We parse the output of 'qemu -help' to get the QEMU
...
...
src/qemu/qemu_capabilities.h
浏览文件 @
d58c382e
...
@@ -95,6 +95,7 @@ enum qemuCapsFlags {
...
@@ -95,6 +95,7 @@ enum qemuCapsFlags {
QEMU_CAPS_DEVICE_SPICEVMC
=
57
,
/* older -device spicevmc*/
QEMU_CAPS_DEVICE_SPICEVMC
=
57
,
/* older -device spicevmc*/
QEMU_CAPS_VIRTIO_TX_ALG
=
58
,
/* -device virtio-net-pci,tx=string */
QEMU_CAPS_VIRTIO_TX_ALG
=
58
,
/* -device virtio-net-pci,tx=string */
QEMU_CAPS_DEVICE_QXL_VGA
=
59
,
/* Is the primary and vga campatible qxl device named qxl-vga? */
QEMU_CAPS_DEVICE_QXL_VGA
=
59
,
/* Is the primary and vga campatible qxl device named qxl-vga? */
QEMU_CAPS_PCI_MULTIFUNCTION
=
60
,
/* -device multifunction=on|off */
QEMU_CAPS_LAST
,
/* this must always be the last item */
QEMU_CAPS_LAST
,
/* this must always be the last item */
};
};
...
...
tests/qemuhelptest.c
浏览文件 @
d58c382e
...
@@ -430,7 +430,8 @@ mymain(void)
...
@@ -430,7 +430,8 @@ mymain(void)
QEMU_CAPS_VGA_NONE
,
QEMU_CAPS_VGA_NONE
,
QEMU_CAPS_MIGRATE_QEMU_FD
,
QEMU_CAPS_MIGRATE_QEMU_FD
,
QEMU_CAPS_DRIVE_AIO
,
QEMU_CAPS_DRIVE_AIO
,
QEMU_CAPS_DEVICE_SPICEVMC
);
QEMU_CAPS_DEVICE_SPICEVMC
,
QEMU_CAPS_PCI_MULTIFUNCTION
);
DO_TEST
(
"qemu-kvm-0.12.1.2-rhel61"
,
12001
,
1
,
0
,
DO_TEST
(
"qemu-kvm-0.12.1.2-rhel61"
,
12001
,
1
,
0
,
QEMU_CAPS_VNC_COLON
,
QEMU_CAPS_VNC_COLON
,
QEMU_CAPS_NO_REBOOT
,
QEMU_CAPS_NO_REBOOT
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录