Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
625aa63e
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,发现更多精彩内容 >>
提交
625aa63e
编写于
6月 07, 2011
作者:
M
Minoru Usui
提交者:
Eric Blake
6月 14, 2011
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
virNodeGetMemoryStats: Expose new API
Signed-off-by:
N
Minoru Usui
<
usui@mxm.nes.nec.co.jp
>
上级
ce76e853
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
80 addition
and
0 deletion
+80
-0
include/libvirt/libvirt.h.in
include/libvirt/libvirt.h.in
+78
-0
python/generator.py
python/generator.py
+1
-0
src/libvirt_public.syms
src/libvirt_public.syms
+1
-0
未找到文件。
include/libvirt/libvirt.h.in
浏览文件 @
625aa63e
...
...
@@ -361,6 +361,70 @@ struct _virCPUStats {
unsigned
long
long
value
;
};
/**
* VIR_MEMORY_STATS_FIELD_LENGTH:
*
* Macro providing the field length of virMemoryStats
*/
#define VIR_MEMORY_STATS_FIELD_LENGTH 80
/**
* VIR_MEMORY_STATS_ALL_CELLS:
*
* Macro for the total memory of all cells.
*/
#define VIR_MEMORY_STATS_ALL_CELLS (-1)
/**
* VIR_MEMORY_STATS_TOTAL:
*
* Macro for the total memory of specified cell:
* it represents the maximum memory.
*/
#define VIR_MEMORY_STATS_TOTAL "total"
/**
* VIR_MEMORY_STATS_FREE:
*
* Macro for the free memory of specified cell:
* On linux, it includes buffer and cached memory, in case of
* VIR_MEMORY_STATS_ALL_CELLS.
*/
#define VIR_MEMORY_STATS_FREE "free"
/**
* VIR_MEMORY_STATS_BUFFERS:
*
* Macro for the buffer memory: On linux, it only returns in case of
* VIR_MEMORY_STATS_ALL_CELLS.
*/
#define VIR_MEMORY_STATS_BUFFERS "buffers"
/**
* VIR_MEMORY_STATS_CACHED:
*
* Macro for the cached memory: On linux, it only returns in case of
* VIR_MEMORY_STATS_ALL_CELLS.
*/
#define VIR_MEMORY_STATS_CACHED "cached"
/**
* virMemoryStats:
*
* a virMemoryStats is a structure filled by virNodeGetMemoryStats()
* and providing the information of the memory of the Node.
*/
typedef
struct
_virMemoryStats
virMemoryStats
;
struct
_virMemoryStats
{
char
field
[
VIR_MEMORY_STATS_FIELD_LENGTH
];
unsigned
long
long
value
;
};
/* Common data types shared among interfaces with name/type/value lists. */
...
...
@@ -628,6 +692,14 @@ typedef virNodeInfo *virNodeInfoPtr;
typedef
virCPUStats
*
virCPUStatsPtr
;
/**
* virMemoryStatsPtr:
*
* a virMemoryStatsPtr is a pointer to a virMemoryStats structure.
*/
typedef
virMemoryStats
*
virMemoryStatsPtr
;
/**
* virConnectFlags
*
...
...
@@ -768,6 +840,12 @@ int virNodeGetCPUStats (virConnectPtr conn,
int
*
nparams
,
unsigned
int
flags
);
int
virNodeGetMemoryStats
(
virConnectPtr
conn
,
int
cellNum
,
virCPUStatsPtr
params
,
int
*
nparams
,
unsigned
int
flags
);
unsigned
long
long
virNodeGetFreeMemory
(
virConnectPtr
conn
);
int
virNodeGetSecurityModel
(
virConnectPtr
conn
,
...
...
python/generator.py
浏览文件 @
625aa63e
...
...
@@ -364,6 +364,7 @@ skip_impl = (
'virDomainRevertToSnapshot'
,
'virDomainSendKey'
,
'virNodeGetCPUStats'
,
'virNodeGetMemoryStats'
,
)
...
...
src/libvirt_public.syms
浏览文件 @
625aa63e
...
...
@@ -455,6 +455,7 @@ LIBVIRT_0.9.3 {
virDomainPinVcpuFlags;
virDomainSendKey;
virNodeGetCPUStats;
virNodeGetMemoryStats;
} 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.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录