1 Star 0 Fork 44

hongkeyang/lxc

forked from src-openEuler/lxc 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0011-rootfs-add-make-private-for-root.path-parent.patch 1011 Bytes
一键复制 编辑 原始数据 按行查看 历史
From e9214cfb2a247a78a07d2032956cde97e6d19e4a Mon Sep 17 00:00:00 2001
From: lifeng68 <[email protected]>
Date: Tue, 17 Nov 2020 18:37:56 +0800
Subject: [PATCH 11/11] rootfs: add make private for root.path parent
Signed-off-by: lifeng68 <[email protected]>
---
src/lxc/conf.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/lxc/conf.c b/src/lxc/conf.c
index 3d8713954..ce5bab9c5 100644
--- a/src/lxc/conf.c
+++ b/src/lxc/conf.c
@@ -1434,6 +1434,10 @@ static int lxc_mount_rootfs(struct lxc_conf *conf)
* not propagate in other namespaces. Also it will help with kernel
* check pass in pivot_root. (IS_SHARED(new_mnt->mnt_parent))
*/
+ ret = rootfs_parent_mount_private(conf->rootfs.path);
+ if (ret != 0) {
+ return log_error(-1, "Failed to make parent of rootfs %s to private.", conf->rootfs.path);
+ }
ret = rootfs_parent_mount_private(conf->rootfs.mount);
if (ret != 0) {
return log_error(-1, "Failed to make parent of rootfs %s to private.", conf->rootfs.mount);
--
2.25.1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hongkeyang/lxc.git
[email protected]:hongkeyang/lxc.git
hongkeyang
lxc
lxc
master

搜索帮助