Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
841dd882
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看板
提交
841dd882
编写于
6月 12, 2008
作者:
D
Daniel P. Berrange
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix misc compile warnings
上级
db162cb2
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
15 addition
and
7 deletion
+15
-7
ChangeLog
ChangeLog
+7
-0
src/lxc_driver.c
src/lxc_driver.c
+2
-0
src/openvz_conf.c
src/openvz_conf.c
+2
-3
src/openvz_driver.c
src/openvz_driver.c
+3
-0
tests/testutils.c
tests/testutils.c
+1
-4
未找到文件。
ChangeLog
浏览文件 @
841dd882
Thu Jun 12 14:46:08 BST 2008 Daniel P. Berrange <berrange@redhat.com>
* src/lxc_driver.c, src/openvz_driver.c: Add missing driver
entry points
* src/lxc_conf.c: Re-arrange headers to comply with standard
* tests/testutils.c: Fix use of signed/unsigned ints
Thu Jun 12 14:46:08 BST 2008 Daniel P. Berrange <berrange@redhat.com>
* src/qemu_driver.c: Fix saving of iptables rules
...
...
src/lxc_driver.c
浏览文件 @
841dd882
...
...
@@ -1202,6 +1202,8 @@ static virDriver lxcDriver = {
NULL
,
/* domainMigrateFinish */
NULL
,
/* domainBlockStats */
NULL
,
/* domainInterfaceStats */
NULL
,
/* domainBlockPeek */
NULL
,
/* domainMemoryPeek */
NULL
,
/* nodeGetCellsFreeMemory */
NULL
,
/* getFreeMemory */
};
...
...
src/openvz_conf.c
浏览文件 @
841dd882
...
...
@@ -41,13 +41,14 @@
#include <unistd.h>
#include <limits.h>
#include <errno.h>
#include <string.h>
#include <libxml/parser.h>
#include <libxml/tree.h>
#include <libxml/xpath.h>
#include <libxml/uri.h>
#include "
libvirt/virterror
.h"
#include "
internal
.h"
#include "openvz_driver.h"
#include "openvz_conf.h"
...
...
@@ -55,8 +56,6 @@
#include "buf.h"
#include "memory.h"
#include <string.h>
static
char
*
openvzLocateConfDir
(
void
);
static
void
error
(
virConnectPtr
conn
,
virErrorNumber
code
,
const
char
*
info
);
static
struct
openvz_vm_def
*
openvzParseXML
(
virConnectPtr
conn
,
xmlDocPtr
xml
);
...
...
src/openvz_driver.c
浏览文件 @
841dd882
...
...
@@ -761,6 +761,8 @@ static virDriver openvzDriver = {
NULL
,
/* domainMigrateFinish */
NULL
,
/* domainBlockStats */
NULL
,
/* domainInterfaceStats */
NULL
,
/* domainBlockPeek */
NULL
,
/* domainMemoryPeek */
NULL
,
/* nodeGetCellsFreeMemory */
NULL
,
/* nodeGetFreeMemory */
};
...
...
@@ -770,6 +772,7 @@ static virStateDriver openvzStateDriver = {
openvzShutdown
,
openvzReload
,
openvzActive
,
NULL
,
/* sigHandler */
};
int
openvzRegister
(
void
)
{
...
...
tests/testutils.c
浏览文件 @
841dd882
...
...
@@ -329,10 +329,7 @@ int virtTestMain(int argc,
int
oomCount
;
if
((
debugStr
=
getenv
(
"VIR_TEST_DEBUG"
))
!=
NULL
)
{
if
(
virStrToLong_i
(
debugStr
,
NULL
,
10
,
&
testDebug
)
<
0
)
testDebug
=
0
;
if
(
testDebug
<
0
)
if
(
virStrToLong_ui
(
debugStr
,
NULL
,
10
,
&
testDebug
)
<
0
)
testDebug
=
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录