Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
fe2a0b02
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,发现更多精彩内容 >>
提交
fe2a0b02
编写于
9月 14, 2012
作者:
H
Hu Tao
提交者:
Laine Stump
9月 17, 2012
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
use virBitmap to store nodeinfo.
上级
f4b2dcf5
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
26 addition
and
25 deletion
+26
-25
src/nodeinfo.c
src/nodeinfo.c
+11
-15
src/nodeinfo.h
src/nodeinfo.h
+3
-3
src/qemu/qemu_driver.c
src/qemu/qemu_driver.c
+12
-7
未找到文件。
src/nodeinfo.c
浏览文件 @
fe2a0b02
...
...
@@ -739,10 +739,10 @@ cleanup:
* and max cpu is 7. The map file shows 0-4,6-7. This function parses
* it and returns cpumap.
*/
static
char
*
static
virBitmapPtr
linuxParseCPUmap
(
int
*
max_cpuid
,
const
char
*
path
)
{
char
*
map
=
NULL
;
virBitmapPtr
map
=
NULL
;
char
*
str
=
NULL
;
int
max_id
=
0
,
i
;
...
...
@@ -751,20 +751,16 @@ linuxParseCPUmap(int *max_cpuid, const char *path)
goto
error
;
}
if
(
VIR_ALLOC_N
(
map
,
VIR_DOMAIN_CPUMASK_LEN
)
<
0
)
{
virReportOOMError
();
goto
error
;
}
if
(
virDomainCpuSetParse
(
str
,
0
,
map
,
VIR_DOMAIN_CPUMASK_LEN
)
<
0
)
{
if
(
virBitmapParse
(
str
,
0
,
&
map
,
VIR_DOMAIN_CPUMASK_LEN
)
<
0
)
{
goto
error
;
}
for
(
i
=
0
;
i
<
VIR_DOMAIN_CPUMASK_LEN
;
i
++
)
{
if
(
map
[
i
])
{
max_id
=
i
;
}
i
=
-
1
;
while
((
i
=
virBitmapNextSetBit
(
map
,
i
))
>=
0
)
{
max_id
=
i
;
}
*
max_cpuid
=
max_id
;
VIR_FREE
(
str
);
...
...
@@ -772,7 +768,7 @@ linuxParseCPUmap(int *max_cpuid, const char *path)
error:
VIR_FREE
(
str
);
VIR_FREE
(
map
);
virBitmapFree
(
map
);
return
NULL
;
}
#endif
...
...
@@ -911,14 +907,14 @@ int nodeGetMemoryStats(virConnectPtr conn ATTRIBUTE_UNUSED,
#endif
}
char
*
virBitmapPtr
nodeGetCPUmap
(
virConnectPtr
conn
ATTRIBUTE_UNUSED
,
int
*
max_id
ATTRIBUTE_UNUSED
,
const
char
*
mapname
ATTRIBUTE_UNUSED
)
{
#ifdef __linux__
char
*
path
;
char
*
cpumap
;
virBitmapPtr
cpumap
;
if
(
virAsprintf
(
&
path
,
SYSFS_SYSTEM_PATH
"/cpu/%s"
,
mapname
)
<
0
)
{
virReportOOMError
();
...
...
src/nodeinfo.h
浏览文件 @
fe2a0b02
...
...
@@ -46,9 +46,9 @@ int nodeGetCellsFreeMemory(virConnectPtr conn,
int
maxCells
);
unsigned
long
long
nodeGetFreeMemory
(
virConnectPtr
conn
);
char
*
nodeGetCPUmap
(
virConnectPtr
conn
,
int
*
max_id
,
const
char
*
mapname
);
virBitmapPtr
nodeGetCPUmap
(
virConnectPtr
conn
,
int
*
max_id
,
const
char
*
mapname
);
int
nodeGetMemoryParameters
(
virConnectPtr
conn
,
virTypedParameterPtr
params
,
...
...
src/qemu/qemu_driver.c
浏览文件 @
fe2a0b02
...
...
@@ -13502,8 +13502,8 @@ qemuDomainGetPercpuStats(virDomainPtr domain,
int
start_cpu
,
unsigned
int
ncpus
)
{
char
*
map
=
NULL
;
char
*
map2
=
NULL
;
virBitmapPtr
map
=
NULL
;
virBitmapPtr
map2
=
NULL
;
int
rv
=
-
1
;
int
i
,
id
,
max_id
;
char
*
pos
;
...
...
@@ -13515,6 +13515,7 @@ qemuDomainGetPercpuStats(virDomainPtr domain,
virTypedParameterPtr
ent
;
int
param_idx
;
unsigned
long
long
cpu_time
;
bool
result
;
/* return the number of supported params */
if
(
nparams
==
0
&&
ncpus
!=
0
)
...
...
@@ -13553,7 +13554,9 @@ qemuDomainGetPercpuStats(virDomainPtr domain,
id
=
start_cpu
+
ncpus
-
1
;
for
(
i
=
0
;
i
<=
id
;
i
++
)
{
if
(
!
map
[
i
])
{
if
(
virBitmapGetBit
(
map
,
i
,
&
result
)
<
0
)
goto
cleanup
;
if
(
!
result
)
{
cpu_time
=
0
;
}
else
if
(
virStrToLong_ull
(
pos
,
&
pos
,
10
,
&
cpu_time
)
<
0
)
{
virReportError
(
VIR_ERR_INTERNAL_ERROR
,
"%s"
,
...
...
@@ -13585,7 +13588,7 @@ qemuDomainGetPercpuStats(virDomainPtr domain,
/* Check that the mapping of online cpus didn't change mid-parse. */
map2
=
nodeGetCPUmap
(
domain
->
conn
,
&
max_id
,
"present"
);
if
(
!
map2
||
memcmp
(
map
,
map2
,
VIR_DOMAIN_CPUMASK_LEN
)
!=
0
)
{
if
(
!
map2
||
!
virBitmapEqual
(
map
,
map2
)
)
{
virReportError
(
VIR_ERR_OPERATION_INVALID
,
"%s"
,
_
(
"the set of online cpus changed while reading"
));
goto
cleanup
;
...
...
@@ -13593,7 +13596,9 @@ qemuDomainGetPercpuStats(virDomainPtr domain,
sum_cpu_pos
=
sum_cpu_time
;
for
(
i
=
0
;
i
<=
id
;
i
++
)
{
if
(
!
map
[
i
])
if
(
virBitmapGetBit
(
map
,
i
,
&
result
)
<
0
)
goto
cleanup
;
if
(
!
result
)
cpu_time
=
0
;
else
cpu_time
=
*
(
sum_cpu_pos
++
);
...
...
@@ -13611,8 +13616,8 @@ qemuDomainGetPercpuStats(virDomainPtr domain,
cleanup:
VIR_FREE
(
sum_cpu_time
);
VIR_FREE
(
buf
);
VIR_FREE
(
map
);
VIR_FREE
(
map2
);
virBitmapFree
(
map
);
virBitmapFree
(
map2
);
return
rv
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录