Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
d9383fe1
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看板
提交
d9383fe1
编写于
7月 25, 2008
作者:
D
Daniel P. Berrange
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove unused/no-op Xen driver code
上级
0b4f2778
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
62 addition
and
304 deletion
+62
-304
ChangeLog
ChangeLog
+10
-0
src/proxy_internal.c
src/proxy_internal.c
+0
-10
src/xen_unified.c
src/xen_unified.c
+0
-3
src/xend_internal.c
src/xend_internal.c
+50
-192
src/xend_internal.h
src/xend_internal.h
+2
-89
src/xs_internal.c
src/xs_internal.c
+0
-10
未找到文件。
ChangeLog
浏览文件 @
d9383fe1
Fri Jul 25 10:44:27 BST 2008 Daniel P. Berrange <berrange@redhat.com>
Remove unused/no-op code from xen drivers
* src/proxy_internal.c: Remove no-op xenProxyInit()
* src/xen_unified.c: Remove calls to no-op init functions
in sub-drivers.
* src/xend_internal.c, src/xend_internal.h: Remove misc
unused methods
* src/xs_internal.c: Remove no-op xenStoreInit()
Fri Jul 25 10:41:27 BST 2008 Daniel P. Berrange <berrange@redhat.com>
* autobuild.sh: Force enable OpenVZ, LXC and Xen proxy for
...
...
src/proxy_internal.c
浏览文件 @
d9383fe1
...
...
@@ -87,16 +87,6 @@ struct xenUnifiedDriver xenProxyDriver = {
NULL
,
/* domainSetSchedulerParameters */
};
/**
* xenProxyInit:
*
* Initialise the xen proxy driver.
*/
int
xenProxyInit
(
void
)
{
return
0
;
}
/************************************************************************
* *
...
...
src/xen_unified.c
浏览文件 @
d9383fe1
...
...
@@ -1372,9 +1372,6 @@ xenUnifiedRegister (void)
{
/* Ignore failures here. */
(
void
)
xenHypervisorInit
();
(
void
)
xenProxyInit
();
(
void
)
xenDaemonInit
();
(
void
)
xenStoreInit
();
(
void
)
xenXMInit
();
return
virRegisterDriver
(
&
xenUnifiedDriver
);
...
...
src/xend_internal.c
浏览文件 @
d9383fe1
...
...
@@ -54,23 +54,6 @@
#define DEBUG0(msg) VIR_DEBUG(__FILE__, "%s", msg)
#ifndef PROXY
static
int
xenDaemonListDomains
(
virConnectPtr
conn
,
int
*
ids
,
int
maxids
);
static
int
xenDaemonNumOfDomains
(
virConnectPtr
conn
);
static
int
xenDaemonListDefinedDomains
(
virConnectPtr
conn
,
char
**
const
names
,
int
maxnames
);
static
int
xenDaemonNumOfDefinedDomains
(
virConnectPtr
conn
);
static
virDomainPtr
xenDaemonCreateLinux
(
virConnectPtr
conn
,
const
char
*
xmlDesc
,
unsigned
int
flags
);
static
char
*
xenDaemonDomainGetOSType
(
virDomainPtr
domain
);
static
int
xenDaemonAttachDevice
(
virDomainPtr
domain
,
const
char
*
xml
);
static
int
xenDaemonDetachDevice
(
virDomainPtr
domain
,
const
char
*
xml
);
static
int
xenDaemonDomainCoreDump
(
virDomainPtr
domain
,
const
char
*
filename
,
int
flags
);
static
char
*
xenDaemonGetSchedulerType
(
virDomainPtr
domain
,
int
*
nparams
);
static
int
xenDaemonGetSchedulerParameters
(
virDomainPtr
domain
,
virSchedParameterPtr
params
,
int
*
nparams
);
static
int
xenDaemonSetSchedulerParameters
(
virDomainPtr
domain
,
virSchedParameterPtr
params
,
int
nparams
);
/*
* The number of Xen scheduler parameters
...
...
@@ -80,61 +63,6 @@ static int xenDaemonSetSchedulerParameters(virDomainPtr domain,
#endif
/* PROXY */
#ifndef PROXY
struct
xenUnifiedDriver
xenDaemonDriver
=
{
xenDaemonOpen
,
/* open */
xenDaemonClose
,
/* close */
xenDaemonGetVersion
,
/* version */
NULL
,
/* hostname */
NULL
,
/* URI */
xenDaemonNodeGetInfo
,
/* nodeGetInfo */
NULL
,
/* getCapabilities */
xenDaemonListDomains
,
/* listDomains */
xenDaemonNumOfDomains
,
/* numOfDomains */
xenDaemonCreateLinux
,
/* domainCreateLinux */
xenDaemonDomainSuspend
,
/* domainSuspend */
xenDaemonDomainResume
,
/* domainResume */
xenDaemonDomainShutdown
,
/* domainShutdown */
xenDaemonDomainReboot
,
/* domainReboot */
xenDaemonDomainDestroy
,
/* domainDestroy */
xenDaemonDomainGetOSType
,
/* domainGetOSType */
xenDaemonDomainGetMaxMemory
,
/* domainGetMaxMemory */
xenDaemonDomainSetMaxMemory
,
/* domainSetMaxMemory */
xenDaemonDomainSetMemory
,
/* domainMaxMemory */
xenDaemonDomainGetInfo
,
/* domainGetInfo */
xenDaemonDomainSave
,
/* domainSave */
xenDaemonDomainRestore
,
/* domainRestore */
xenDaemonDomainCoreDump
,
/* domainCoreDump */
xenDaemonDomainSetVcpus
,
/* domainSetVcpus */
xenDaemonDomainPinVcpu
,
/* domainPinVcpu */
xenDaemonDomainGetVcpus
,
/* domainGetVcpus */
NULL
,
/* domainGetMaxVcpus */
xenDaemonListDefinedDomains
,
/* listDefinedDomains */
xenDaemonNumOfDefinedDomains
,
/* numOfDefinedDomains */
xenDaemonDomainCreate
,
/* domainCreate */
xenDaemonDomainDefineXML
,
/* domainDefineXML */
xenDaemonDomainUndefine
,
/* domainUndefine */
xenDaemonAttachDevice
,
/* domainAttachDevice */
xenDaemonDetachDevice
,
/* domainDetachDevice */
xenDaemonDomainGetAutostart
,
/* domainGetAutostart */
xenDaemonDomainSetAutostart
,
/* domainSetAutostart */
xenDaemonGetSchedulerType
,
/* domainGetSchedulerType */
xenDaemonGetSchedulerParameters
,
/* domainGetSchedulerParameters */
xenDaemonSetSchedulerParameters
,
/* domainSetSchedulerParameters */
};
/**
* xenDaemonInit:
*
* Initialise the xenDaemon driver.
*/
int
xenDaemonInit
(
void
)
{
return
0
;
}
#endif
/* !PROXY */
/**
* xend_connection_type:
*
...
...
@@ -214,16 +142,6 @@ virXendErrorInt(virConnectPtr conn, virErrorNumber error, int val)
errmsg
,
NULL
,
NULL
,
val
,
0
,
errmsg
,
val
);
}
#define foreach(iterator, start) \
for (_for_i = (start), *iterator = (start)->u.s.car; \
_for_i->kind == SEXPR_CONS; \
_for_i = _for_i->u.s.cdr, iterator = _for_i->u.s.car)
#define foreach_node(iterator, start, path) \
foreach(iterator, start) \
if (sexpr_lookup(iterator, path))
/**
* do_connect:
* @xend: pointer to the Xen Daemon structure
...
...
@@ -608,7 +526,7 @@ http2unix(virConnectPtr xend, int ret)
#ifndef PROXY
/**
* xend_op_ext
2
:
* xend_op_ext:
* @xend: pointer to the Xen Daemon structure
* @path: path for the object
* @error: buffer for the error output
...
...
@@ -621,8 +539,8 @@ http2unix(virConnectPtr xend, int ret)
* Returns 0 in case of success, -1 in case of failure.
*/
static
int
xend_op_ext
2
(
virConnectPtr
xend
,
const
char
*
path
,
char
*
error
,
size_t
n_error
,
const
char
*
key
,
va_list
ap
)
xend_op_ext
(
virConnectPtr
xend
,
const
char
*
path
,
char
*
error
,
size_t
n_error
,
const
char
*
key
,
va_list
ap
)
{
const
char
*
k
=
key
,
*
v
;
virBuffer
buf
=
VIR_BUFFER_INITIALIZER
;
...
...
@@ -655,33 +573,7 @@ xend_op_ext2(virConnectPtr xend, const char *path, char *error,
/**
* xend_node_op:
* @xend: pointer to the Xen Daemon structure
* @path: path for the object
* @key: the key for the operation
* @...: input values to pass to the operation
*
* internal routine to run a POST RPC operation to the Xen Daemon
*
* Returns 0 in case of success, -1 in case of failure.
*/
static
int
xend_node_op
(
virConnectPtr
xend
,
const
char
*
path
,
const
char
*
key
,
...)
{
va_list
ap
;
int
ret
;
char
error
[
1024
];
va_start
(
ap
,
key
);
ret
=
xend_op_ext2
(
xend
,
path
,
error
,
sizeof
(
error
),
key
,
ap
);
va_end
(
ap
);
return
ret
;
}
/**
* xend_op_ext:
* xend_op:
* @xend: pointer to the Xen Daemon structure
* @name: the domain name target of this operation
* @error: buffer for the error output
...
...
@@ -706,7 +598,7 @@ xend_op(virConnectPtr xend, const char *name, const char *key, ...)
snprintf
(
buffer
,
sizeof
(
buffer
),
"/xend/domain/%s"
,
name
);
va_start
(
ap
,
key
);
ret
=
xend_op_ext
2
(
xend
,
buffer
,
error
,
sizeof
(
error
),
key
,
ap
);
ret
=
xend_op_ext
(
xend
,
buffer
,
error
,
sizeof
(
error
),
key
,
ap
);
va_end
(
ap
);
return
ret
;
...
...
@@ -1027,7 +919,7 @@ xenDaemonOpen_unix(virConnectPtr conn, const char *path)
*
* Returns 0 in case of success, -1 in case of error.
*/
int
static
int
xenDaemonOpen_tcp
(
virConnectPtr
conn
,
const
char
*
host
,
int
port
)
{
struct
in_addr
ip
;
...
...
@@ -1309,83 +1201,6 @@ xend_detect_config_version(virConnectPtr conn) {
return
(
0
);
}
/**
* xend_node_shutdown:
* @xend: A xend instance
*
* This method shuts down the physical machine running Xen.
*
* Returns 0 on success; -1 (with errno) on error
*/
int
xend_node_shutdown
(
virConnectPtr
xend
)
{
return
xend_node_op
(
xend
,
"/xend/node/"
,
"op"
,
"halt"
,
NULL
);
}
/**
* xend_node_restart:
* @xend: A xend instance
*
* This method restarts the physical machine running Xen.
*
* Returns 0 on success; -1 (with errno) on error
*/
int
xend_node_restart
(
virConnectPtr
xend
)
{
return
xend_node_op
(
xend
,
"/xend/node/"
,
"op"
,
"restart"
,
NULL
);
}
/**
* xend_dmesg:
* @xend: A xend instance
* @buffer: A buffer to hold the messages
* @n_buffer: Size of buffer (including null terminator)
*
* This function will place the debugging messages from the
* hypervisor into a buffer with a null terminator.
*
* Returns 0 on success; -1 (with errno) on error
*/
int
xend_dmesg
(
virConnectPtr
xend
,
char
*
buffer
,
size_t
n_buffer
)
{
return
http2unix
(
xend
,
xend_get
(
xend
,
"/xend/node/dmesg"
,
buffer
,
n_buffer
));
}
/**
* xend_dmesg_clear:
* @xend: A xend instance
*
* This function will clear the debugging message ring queue
* in the hypervisor.
*
* Returns 0 on success; -1 (with errno) on error
*/
int
xend_dmesg_clear
(
virConnectPtr
xend
)
{
return
xend_node_op
(
xend
,
"/xend/node/dmesg"
,
"op"
,
"clear"
,
NULL
);
}
/**
* xend_log:
* @xend: A xend instance
* @buffer: The buffer to hold the messages
* @n_buffer: Size of buffer (including null terminator)
*
* This function will place the Xend debugging messages into
* a buffer with a null terminator.
*
* Returns 0 on success; -1 (with errno) on error
*/
int
xend_log
(
virConnectPtr
xend
,
char
*
buffer
,
size_t
n_buffer
)
{
return
http2unix
(
xend
,
xend_get
(
xend
,
"/xend/node/log"
,
buffer
,
n_buffer
));
}
#endif
/* PROXY */
/*****************************************************************
...
...
@@ -4213,7 +4028,8 @@ error:
return
(
ret
);
}
int
xenDaemonListDefinedDomains
(
virConnectPtr
conn
,
char
**
const
names
,
int
maxnames
)
{
static
int
xenDaemonListDefinedDomains
(
virConnectPtr
conn
,
char
**
const
names
,
int
maxnames
)
{
struct
sexpr
*
root
=
NULL
;
int
ret
=
-
1
;
struct
sexpr
*
_for_i
,
*
node
;
...
...
@@ -4631,5 +4447,47 @@ xenDaemonDomainBlockPeek (virDomainPtr domain, const char *path,
return
ret
;
}
struct
xenUnifiedDriver
xenDaemonDriver
=
{
xenDaemonOpen
,
/* open */
xenDaemonClose
,
/* close */
xenDaemonGetVersion
,
/* version */
NULL
,
/* hostname */
NULL
,
/* URI */
xenDaemonNodeGetInfo
,
/* nodeGetInfo */
NULL
,
/* getCapabilities */
xenDaemonListDomains
,
/* listDomains */
xenDaemonNumOfDomains
,
/* numOfDomains */
xenDaemonCreateLinux
,
/* domainCreateLinux */
xenDaemonDomainSuspend
,
/* domainSuspend */
xenDaemonDomainResume
,
/* domainResume */
xenDaemonDomainShutdown
,
/* domainShutdown */
xenDaemonDomainReboot
,
/* domainReboot */
xenDaemonDomainDestroy
,
/* domainDestroy */
xenDaemonDomainGetOSType
,
/* domainGetOSType */
xenDaemonDomainGetMaxMemory
,
/* domainGetMaxMemory */
xenDaemonDomainSetMaxMemory
,
/* domainSetMaxMemory */
xenDaemonDomainSetMemory
,
/* domainMaxMemory */
xenDaemonDomainGetInfo
,
/* domainGetInfo */
xenDaemonDomainSave
,
/* domainSave */
xenDaemonDomainRestore
,
/* domainRestore */
xenDaemonDomainCoreDump
,
/* domainCoreDump */
xenDaemonDomainSetVcpus
,
/* domainSetVcpus */
xenDaemonDomainPinVcpu
,
/* domainPinVcpu */
xenDaemonDomainGetVcpus
,
/* domainGetVcpus */
NULL
,
/* domainGetMaxVcpus */
xenDaemonListDefinedDomains
,
/* listDefinedDomains */
xenDaemonNumOfDefinedDomains
,
/* numOfDefinedDomains */
xenDaemonDomainCreate
,
/* domainCreate */
xenDaemonDomainDefineXML
,
/* domainDefineXML */
xenDaemonDomainUndefine
,
/* domainUndefine */
xenDaemonAttachDevice
,
/* domainAttachDevice */
xenDaemonDetachDevice
,
/* domainDetachDevice */
xenDaemonDomainGetAutostart
,
/* domainGetAutostart */
xenDaemonDomainSetAutostart
,
/* domainSetAutostart */
xenDaemonGetSchedulerType
,
/* domainGetSchedulerType */
xenDaemonGetSchedulerParameters
,
/* domainGetSchedulerParameters */
xenDaemonSetSchedulerParameters
,
/* domainSetSchedulerParameters */
};
#endif
/* ! PROXY */
#endif
/* WITH_XEN */
src/xend_internal.h
浏览文件 @
d9383fe1
...
...
@@ -26,33 +26,8 @@
extern
"C"
{
#endif
/**
* \brief Setup the connection to a xend instance via TCP
* \param host The host name to connect to
* \param port The port number to connect to
* \return 0 in case of success, -1 in case of error
*
* This method creates a new Xend instance via TCP.
*
* This function may not fail if Xend is not running.
*
* Make sure to call xenDaemonClose().
*/
int
xenDaemonOpen_tcp
(
virConnectPtr
xend
,
const
char
*
host
,
int
port
);
/**
* \brief Setup the connection to xend instance via a Unix domain socket
* \param path The path to the domain socket
* \return 0 in case of success, -1 in case of error
*
* This method creates a new xend instance via a Unix domain socket.
*
* This function may not fail if Xend is not running.
*
* Make sure to call xenDaemonClose().
*/
int
xenDaemonOpen_unix
(
virConnectPtr
xend
,
const
char
*
path
);
int
xenDaemonOpen_unix
(
virConnectPtr
conn
,
const
char
*
path
);
/**
* \brief Blocks until a domain's devices are initialized
...
...
@@ -118,68 +93,6 @@ char *xenDaemonDomainDumpXMLByName(virConnectPtr xend,
int
flags
,
const
char
*
cpus
);
/**
* \brief Lookup information about the host machine
* \param xend A xend instance
* \return node info on success; NULL (with errno) on error
*
* This method returns information about the physical host
* machine running Xen.
*/
struct
xend_node
*
xend_get_node
(
virConnectPtr
xend
);
/**
* \brief Shutdown physical host machine
* \param xend A xend instance
* \return 0 on success; -1 (with errno) on error
*
* This method shuts down the physical machine running Xen.
*/
int
xend_node_shutdown
(
virConnectPtr
xend
);
/**
* \brief Restarts physical host machine
* \param xend A xend instance
* \return 0 on success; -1 (with errno) on error
*
* This method restarts the physical machine running Xen.
*/
int
xend_node_restart
(
virConnectPtr
xend
);
/**
* \brief Return hypervisor debugging messages
* \param xend A xend instance
* \param buffer A buffer to hold the messages
* \param n_buffer Size of buffer (including null terminator)
* \return 0 on success; -1 (with errno) on error
*
* This function will place the debugging messages from the
* hypervisor into a buffer with a null terminator.
*/
int
xend_dmesg
(
virConnectPtr
xend
,
char
*
buffer
,
size_t
n_buffer
);
/**
* \brief Clear the hypervisor debugging messages
* \param xend A xend instance
* \return 0 on success; -1 (with errno) on error
*
* This function will clear the debugging message ring queue
* in the hypervisor.
*/
int
xend_dmesg_clear
(
virConnectPtr
xend
);
/**
* \brief Obtain the Xend log messages
* \param xend A xend instance
* \param buffer The buffer to hold the messages
* \param n_buffer Size of buffer (including null terminator)
* \return 0 on success; -1 (with errno) on error
*
* This function will place the Xend debugging messages into
* a buffer with a null terminator.
*/
int
xend_log
(
virConnectPtr
xend
,
char
*
buffer
,
size_t
n_buffer
);
int
xend_parse_sexp_desc_char
(
virConnectPtr
conn
,
virBufferPtr
buf
,
const
char
*
devtype
,
...
...
src/xs_internal.c
浏览文件 @
d9383fe1
...
...
@@ -86,16 +86,6 @@ struct xenUnifiedDriver xenStoreDriver = {
NULL
,
/* domainSetSchedulerParameters */
};
/**
* xenStoreInit:
*
* Initialisation.
*/
int
xenStoreInit
()
{
return
0
;
}
#endif
/* ! PROXY */
/**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录