Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
15ca9902
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,发现更多精彩内容 >>
提交
15ca9902
编写于
10月 18, 2013
作者:
P
Peter Krempa
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
numa: Replace NUMA_MAX_N_CPUS macro with virNumaGetMaxCPUs()
上级
5ed9b3bc
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
27 addition
and
8 deletion
+27
-8
src/nodeinfo.c
src/nodeinfo.c
+2
-7
src/util/virnuma.c
src/util/virnuma.c
+23
-1
src/util/virnuma.h
src/util/virnuma.h
+2
-0
未找到文件。
src/nodeinfo.c
浏览文件 @
15ca9902
...
...
@@ -1535,11 +1535,6 @@ nodeGetFreeMemoryFake(void)
}
#if WITH_NUMACTL
# if LIBNUMA_API_VERSION <= 1
# define NUMA_MAX_N_CPUS 4096
# else
# define NUMA_MAX_N_CPUS (numa_all_cpus_ptr->size)
# endif
# define n_bits(var) (8 * sizeof(var))
# define MASK_CPU_ISSET(mask, cpu) \
...
...
@@ -1559,7 +1554,7 @@ virNodeGetSiblingsList(const char *dir, int cpu_id)
if
(
virFileReadAll
(
path
,
SYSFS_THREAD_SIBLINGS_LIST_LENGTH_MAX
,
&
buf
)
<
0
)
goto
cleanup
;
if
(
virBitmapParse
(
buf
,
0
,
&
ret
,
NUMA_MAX_N_CPUS
)
<
0
)
if
(
virBitmapParse
(
buf
,
0
,
&
ret
,
virNumaGetMaxCPUs
()
)
<
0
)
goto
cleanup
;
cleanup:
...
...
@@ -1602,7 +1597,7 @@ nodeCapsInitNUMA(virCapsPtr caps)
unsigned
long
long
memory
;
virCapsHostNUMACellCPUPtr
cpus
=
NULL
;
int
ret
=
-
1
;
int
max_n_cpus
=
NUMA_MAX_N_CPUS
;
int
max_n_cpus
=
virNumaGetMaxCPUs
()
;
int
mask_n_bytes
=
max_n_cpus
/
8
;
int
ncpus
=
0
;
bool
topology_failed
=
false
;
...
...
src/util/virnuma.c
浏览文件 @
15ca9902
...
...
@@ -21,10 +21,18 @@
#include <config.h>
#define NUMA_MAX_N_CPUS 4096
#if WITH_NUMACTL
# define NUMA_VERSION1_COMPATIBILITY 1
# include <numa.h>
#endif
# if LIBNUMA_API_VERSION > 1
# undef NUMA_MAX_N_CPUS
# define NUMA_MAX_N_CPUS (numa_all_cpus_ptr->size)
# endif
#endif
/* WITH_NUMACTL */
#include "virnuma.h"
#include "vircommand.h"
...
...
@@ -288,3 +296,17 @@ virNumaGetNodeMemory(int node ATTRIBUTE_UNUSED,
return
-
1
;
}
#endif
/**
* virNumaGetMaxCPUs:
*
* Get the maximum count of CPUs supportable in the host.
*
* Returns the count of CPUs supported.
*/
unsigned
int
virNumaGetMaxCPUs
(
void
)
{
return
NUMA_MAX_N_CPUS
;
}
src/util/virnuma.h
浏览文件 @
15ca9902
...
...
@@ -62,4 +62,6 @@ int virNumaGetNodeMemory(int node,
unsigned
long
long
*
memsize
,
unsigned
long
long
*
memfree
);
unsigned
int
virNumaGetMaxCPUs
(
void
);
#endif
/* __VIR_NUMA_H__ */
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录