Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
lcr
提交
42a730a7
L
lcr
项目概览
openeuler
/
lcr
通知
3
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
lcr
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
42a730a7
编写于
2月 20, 2020
作者:
O
openeuler-ci-bot
提交者:
Gitee
2月 20, 2020
浏览文件
操作
浏览文件
下载
差异文件
!10 lcr: adapt update memory process
Merge pull request !10 from lifeng_isula/fix_memory
上级
5f7d7f1b
ebfe111b
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
48 addition
and
25 deletion
+48
-25
src/lcrcontainer.c
src/lcrcontainer.c
+1
-1
src/lcrcontainer_execute.c
src/lcrcontainer_execute.c
+46
-23
src/lcrcontainer_execute.h
src/lcrcontainer_execute.h
+1
-1
未找到文件。
src/lcrcontainer.c
浏览文件 @
42a730a7
...
...
@@ -1171,7 +1171,7 @@ bool lcr_update(const char *name, const char *lcrpath, const struct lcr_cgroup_r
goto
out_put
;
}
if
(
!
do_update
(
c
,
name
,
tmp_path
,
cr
))
{
if
(
!
do_update
(
c
,
name
,
tmp_path
,
(
struct
lcr_cgroup_resources
*
)
cr
))
{
goto
out_put
;
}
...
...
src/lcrcontainer_execute.c
浏览文件 @
42a730a7
...
...
@@ -68,6 +68,22 @@ static inline void add_array_kv(char **array, size_t total, size_t *pos, const c
add_array_elem
(
array
,
total
,
pos
,
v
);
}
static
uint64_t
stat_get_ull
(
struct
lxc_container
*
c
,
const
char
*
item
)
{
char
buf
[
80
]
=
{
0
};
int
len
=
0
;
uint64_t
val
=
0
;
len
=
c
->
get_cgroup_item
(
c
,
item
,
buf
,
sizeof
(
buf
));
if
(
len
<=
0
)
{
DEBUG
(
"unable to read cgroup item %s"
,
item
);
return
0
;
}
val
=
strtoull
(
buf
,
NULL
,
0
);
return
val
;
}
static
bool
update_resources_cpuset_mems
(
struct
lxc_container
*
c
,
const
struct
lcr_cgroup_resources
*
cr
)
{
bool
ret
=
false
;
...
...
@@ -265,17 +281,40 @@ out:
return
ret
;
}
static
bool
update_resources_mem
(
struct
lxc_container
*
c
,
const
struct
lcr_cgroup_resources
*
cr
)
static
bool
update_resources_mem
(
struct
lxc_container
*
c
,
struct
lcr_cgroup_resources
*
cr
)
{
bool
ret
=
false
;
// If the memory update is set to -1 we should also set swap to -1, it means unlimited memory.
if
(
cr
->
memory_limit
==
-
1
)
{
cr
->
memory_swap
=
-
1
;
}
if
(
cr
->
memory_limit
!=
0
&&
cr
->
memory_swap
!=
0
)
{
uint64_t
cur_mem_limit
=
stat_get_ull
(
c
,
"memory.limit_in_bytes"
);
if
(
cr
->
memory_swap
==
-
1
||
cur_mem_limit
<
cr
->
memory_swap
)
{
if
(
update_resources_memory_swap
(
c
,
cr
)
!=
0
)
{
goto
err_out
;
}
if
(
update_resources_memory_limit
(
c
,
cr
)
!=
0
)
{
goto
err_out
;
}
}
else
{
if
(
update_resources_memory_limit
(
c
,
cr
)
!=
0
)
{
goto
err_out
;
}
if
(
update_resources_memory_swap
(
c
,
cr
)
!=
0
)
{
goto
err_out
;
}
}
}
else
{
if
(
update_resources_memory_limit
(
c
,
cr
)
!=
0
)
{
goto
err_out
;
}
if
(
update_resources_memory_swap
(
c
,
cr
)
!=
0
)
{
goto
err_out
;
}
}
if
(
update_resources_memory_reservation
(
c
,
cr
)
!=
0
)
{
goto
err_out
;
...
...
@@ -309,7 +348,7 @@ out:
return
ret
;
}
static
bool
update_resources
(
struct
lxc_container
*
c
,
const
struct
lcr_cgroup_resources
*
cr
)
static
bool
update_resources
(
struct
lxc_container
*
c
,
struct
lcr_cgroup_resources
*
cr
)
{
bool
ret
=
false
;
...
...
@@ -333,7 +372,7 @@ err_out:
return
ret
;
}
bool
do_update
(
struct
lxc_container
*
c
,
const
char
*
name
,
const
char
*
lcrpath
,
const
struct
lcr_cgroup_resources
*
cr
)
bool
do_update
(
struct
lxc_container
*
c
,
const
char
*
name
,
const
char
*
lcrpath
,
struct
lcr_cgroup_resources
*
cr
)
{
bool
bret
=
false
;
...
...
@@ -461,22 +500,6 @@ err_out:
return
val
;
}
static
uint64_t
stat_get_ull
(
struct
lxc_container
*
c
,
const
char
*
item
)
{
char
buf
[
80
]
=
{
0
};
int
len
=
0
;
uint64_t
val
=
0
;
len
=
c
->
get_cgroup_item
(
c
,
item
,
buf
,
sizeof
(
buf
));
if
(
len
<=
0
)
{
DEBUG
(
"unable to read cgroup item %s"
,
item
);
return
0
;
}
val
=
strtoull
(
buf
,
NULL
,
0
);
return
val
;
}
void
do_lcr_state
(
struct
lxc_container
*
c
,
struct
lcr_container_state
*
lcs
)
{
const
char
*
state
=
NULL
;
...
...
src/lcrcontainer_execute.h
浏览文件 @
42a730a7
...
...
@@ -21,7 +21,7 @@
extern
"C"
{
#endif
bool
do_update
(
struct
lxc_container
*
c
,
const
char
*
name
,
const
char
*
lcrpath
,
const
struct
lcr_cgroup_resources
*
cr
);
bool
do_update
(
struct
lxc_container
*
c
,
const
char
*
name
,
const
char
*
lcrpath
,
struct
lcr_cgroup_resources
*
cr
);
void
do_lcr_state
(
struct
lxc_container
*
c
,
struct
lcr_container_state
*
lcs
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录