Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
426f9772
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,发现更多精彩内容 >>
提交
426f9772
编写于
5月 11, 2009
作者:
D
Daniel P. Berrange
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix QEMU ARGV detection with kvm >= 85
上级
9927ca62
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
24 addition
and
14 deletion
+24
-14
ChangeLog
ChangeLog
+8
-0
src/qemu_conf.c
src/qemu_conf.c
+14
-4
src/qemu_driver.c
src/qemu_driver.c
+2
-10
未找到文件。
ChangeLog
浏览文件 @
426f9772
Mon May 11 16:15:22 BST 2009 Daniel P. Berrange <berrange@redhat.com>
Fix QEMU ARGV detection with kvm >= 85
* src/qemu_conf.c: Increase limit on QEMU -help output size.
Improve error reporting when handling help output
* src/qemu_driver.c: Don't overwrite errors when extracting
QEMU versio ninfo
Mon May 11 15:55:22 BST 2009 Daniel P. Berrange <berrange@redhat.com>
* src/virsh.c: Report detailed error if initial connection open
...
...
src/qemu_conf.c
浏览文件 @
426f9772
...
...
@@ -431,18 +431,28 @@ int qemudExtractVersionInfo(const char *qemu,
return
-
1
;
char
*
help
=
NULL
;
enum
{
MAX_HELP_OUTPUT_SIZE
=
8192
};
enum
{
MAX_HELP_OUTPUT_SIZE
=
1024
*
64
};
int
len
=
virFileReadLimFD
(
newstdout
,
MAX_HELP_OUTPUT_SIZE
,
&
help
);
if
(
len
<
0
)
if
(
len
<
0
)
{
virReportSystemError
(
NULL
,
errno
,
"%s"
,
_
(
"Unable to read QEMU help output"
));
goto
cleanup2
;
}
if
(
sscanf
(
help
,
"QEMU PC emulator version %u.%u.%u (kvm-%u)"
,
&
major
,
&
minor
,
&
micro
,
&
kvm_version
)
!=
4
)
kvm_version
=
0
;
if
(
!
kvm_version
&&
sscanf
(
help
,
"QEMU PC emulator version %u.%u.%u"
,
&
major
,
&
minor
,
&
micro
)
!=
3
)
if
(
!
kvm_version
&&
sscanf
(
help
,
"QEMU PC emulator version %u.%u.%u"
,
&
major
,
&
minor
,
&
micro
)
!=
3
)
{
char
*
eol
=
strchr
(
help
,
'\n'
);
if
(
eol
)
*
eol
=
'\0'
;
qemudReportError
(
NULL
,
NULL
,
NULL
,
VIR_ERR_INTERNAL_ERROR
,
_
(
"cannot parse QEMU version number in '%s'"
),
help
);
goto
cleanup2
;
}
version
=
(
major
*
1000
*
1000
)
+
(
minor
*
1000
)
+
micro
;
...
...
src/qemu_driver.c
浏览文件 @
426f9772
...
...
@@ -1391,12 +1391,8 @@ static int qemudStartVMDaemon(virConnectPtr conn,
if
(
qemudExtractVersionInfo
(
emulator
,
NULL
,
&
qemuCmdFlags
)
<
0
)
{
qemudReportError
(
conn
,
NULL
,
NULL
,
VIR_ERR_INTERNAL_ERROR
,
_
(
"Cannot determine QEMU argv syntax %s"
),
emulator
);
&
qemuCmdFlags
)
<
0
)
goto
cleanup
;
}
if
(
qemuPrepareHostDevices
(
conn
,
vm
->
def
)
<
0
)
goto
cleanup
;
...
...
@@ -3715,12 +3711,8 @@ static int qemudDomainChangeEjectableMedia(virConnectPtr conn,
if
(
qemudExtractVersionInfo
(
vm
->
def
->
emulator
,
NULL
,
&
qemuCmdFlags
)
<
0
)
{
qemudReportError
(
conn
,
dom
,
NULL
,
VIR_ERR_INTERNAL_ERROR
,
_
(
"Cannot determine QEMU argv syntax %s"
),
vm
->
def
->
emulator
);
&
qemuCmdFlags
)
<
0
)
return
-
1
;
}
if
(
qemuCmdFlags
&
QEMUD_CMD_FLAG_DRIVE
)
{
if
(
!
(
devname
=
qemudDiskDeviceName
(
conn
,
newdisk
)))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录