Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
1f873744
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,发现更多精彩内容 >>
提交
1f873744
编写于
6月 07, 2011
作者:
M
Minoru Usui
提交者:
Eric Blake
6月 14, 2011
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
virNodeGetCPUStats: Expose new API
Signed-off-by:
N
Minoru Usui
<
usui@mxm.nes.nec.co.jp
>
上级
acc7080a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
76 addition
and
1 deletion
+76
-1
include/libvirt/libvirt.h.in
include/libvirt/libvirt.h.in
+74
-1
python/generator.py
python/generator.py
+1
-0
src/libvirt_public.syms
src/libvirt_public.syms
+1
-0
未找到文件。
include/libvirt/libvirt.h.in
浏览文件 @
1f873744
...
...
@@ -216,7 +216,6 @@ typedef struct _virStream virStream;
*/
typedef
virStream
*
virStreamPtr
;
/**
* VIR_SECURITY_LABEL_BUFLEN:
*
...
...
@@ -302,6 +301,66 @@ struct _virNodeInfo {
unsigned
int
threads
;
/* number of threads per core */
};
/**
* VIR_CPU_STATS_FIELD_LENGTH:
*
* Macro providing the field length of virNodeCPUStats
*/
#define VIR_CPU_STATS_FIELD_LENGTH 80
/**
* VIR_CPU_STATS_ALL_CPUS:
*
* Macro for the total CPU time/utilization
*/
#define VIR_CPU_STATS_ALL_CPUS (-1)
/**
* VIR_CPU_STATS_KERNEL:
*
* Macro for the cumulative CPU time which spends by kernel,
* when the node booting up.(in nanoseconds).
*/
#define VIR_CPU_STATS_KERNEL "kernel"
/**
* The cumulative CPU time which spends by user processes,
* when the node booting up.(in nanoseconds).
*/
#define VIR_CPU_STATS_USER "user"
/**
* The cumulative idle CPU time,
* when the node booting up.(in nanoseconds).
*/
#define VIR_CPU_STATS_IDLE "idle"
/**
* The cumulative I/O wait CPU time,
* when the node booting up.(in nanoseconds).
*/
#define VIR_CPU_STATS_IOWAIT "iowait"
/**
* The CPU utilization.
* The usage value is in percent and 100% represents all CPUs on
* the server.
*/
#define VIR_CPU_STATS_UTILIZATION "utilization"
/**
* virCPUStats:
*
* a virNodeCPUStats is a structure filled by virNodeGetCPUStats()
* and providing the information for the cpu stats of the node.
*/
typedef
struct
_virCPUStats
virCPUStats
;
struct
_virCPUStats
{
char
field
[
VIR_CPU_STATS_FIELD_LENGTH
];
unsigned
long
long
value
;
};
/* Common data types shared among interfaces with name/type/value lists. */
...
...
@@ -561,6 +620,14 @@ int virDomainMigrateSetMaxSpeed(virDomainPtr domain,
typedef
virNodeInfo
*
virNodeInfoPtr
;
/**
* virCPUStatsPtr:
*
* a virCPUStatsPtr is a pointer to a virCPUStats structure.
*/
typedef
virCPUStats
*
virCPUStatsPtr
;
/**
* virConnectFlags
*
...
...
@@ -695,6 +762,12 @@ int virNodeGetInfo (virConnectPtr conn,
virNodeInfoPtr
info
);
char
*
virConnectGetCapabilities
(
virConnectPtr
conn
);
int
virNodeGetCPUStats
(
virConnectPtr
conn
,
int
cpuNum
,
virCPUStatsPtr
params
,
int
*
nparams
,
unsigned
int
flags
);
unsigned
long
long
virNodeGetFreeMemory
(
virConnectPtr
conn
);
int
virNodeGetSecurityModel
(
virConnectPtr
conn
,
...
...
python/generator.py
浏览文件 @
1f873744
...
...
@@ -363,6 +363,7 @@ skip_impl = (
'virConnectBaselineCPU'
,
'virDomainRevertToSnapshot'
,
'virDomainSendKey'
,
'virNodeGetCPUStats'
,
)
...
...
src/libvirt_public.syms
浏览文件 @
1f873744
...
...
@@ -454,6 +454,7 @@ LIBVIRT_0.9.3 {
global:
virDomainPinVcpuFlags;
virDomainSendKey;
virNodeGetCPUStats;
} LIBVIRT_0.9.2;
# .... define new API here using predicted next version number ....
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录