Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
0fb54e50
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
0fb54e50
编写于
11月 24, 2011
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
vfs: spread struct mount - attach_recursive_mnt
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
4b8b21f4
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
11 deletion
+14
-11
fs/namespace.c
fs/namespace.c
+14
-11
未找到文件。
fs/namespace.c
浏览文件 @
0fb54e50
...
...
@@ -1587,7 +1587,7 @@ static int invent_group_ids(struct mount *mnt, bool recurse)
* Must be called without spinlocks held, since this function can sleep
* in allocations.
*/
static
int
attach_recursive_mnt
(
struct
vfs
mount
*
source_mnt
,
static
int
attach_recursive_mnt
(
struct
mount
*
source_mnt
,
struct
path
*
path
,
struct
path
*
parent_path
)
{
LIST_HEAD
(
tree_list
);
...
...
@@ -1597,27 +1597,27 @@ static int attach_recursive_mnt(struct vfsmount *source_mnt,
int
err
;
if
(
IS_MNT_SHARED
(
dest_mnt
))
{
err
=
invent_group_ids
(
real_mount
(
source_mnt
)
,
true
);
err
=
invent_group_ids
(
source_mnt
,
true
);
if
(
err
)
goto
out
;
}
err
=
propagate_mnt
(
dest_mnt
,
dest_dentry
,
source_
mnt
,
&
tree_list
);
err
=
propagate_mnt
(
dest_mnt
,
dest_dentry
,
&
source_mnt
->
mnt
,
&
tree_list
);
if
(
err
)
goto
out_cleanup_ids
;
br_write_lock
(
vfsmount_lock
);
if
(
IS_MNT_SHARED
(
dest_mnt
))
{
for
(
p
=
real_mount
(
source_mnt
);
p
;
p
=
next_mnt
(
p
,
source_
mnt
))
for
(
p
=
source_mnt
;
p
;
p
=
next_mnt
(
p
,
&
source_mnt
->
mnt
))
set_mnt_shared
(
&
p
->
mnt
);
}
if
(
parent_path
)
{
detach_mnt
(
real_mount
(
source_mnt
)
,
parent_path
);
attach_mnt
(
real_mount
(
source_mnt
)
,
path
);
detach_mnt
(
source_mnt
,
parent_path
);
attach_mnt
(
source_mnt
,
path
);
touch_mnt_namespace
(
parent_path
->
mnt
->
mnt_ns
);
}
else
{
mnt_set_mountpoint
(
dest_mnt
,
dest_dentry
,
source_
mnt
);
commit_tree
(
real_mount
(
source_mnt
)
);
mnt_set_mountpoint
(
dest_mnt
,
dest_dentry
,
&
source_mnt
->
mnt
);
commit_tree
(
source_mnt
);
}
list_for_each_entry_safe
(
child
,
p
,
&
tree_list
,
mnt
.
mnt_hash
)
{
...
...
@@ -1630,7 +1630,7 @@ static int attach_recursive_mnt(struct vfsmount *source_mnt,
out_cleanup_ids:
if
(
IS_MNT_SHARED
(
dest_mnt
))
cleanup_group_ids
(
real_mount
(
source_mnt
)
,
NULL
);
cleanup_group_ids
(
source_mnt
,
NULL
);
out:
return
err
;
}
...
...
@@ -1674,7 +1674,7 @@ static int graft_tree(struct vfsmount *mnt, struct path *path)
if
(
d_unlinked
(
path
->
dentry
))
return
-
ENOENT
;
return
attach_recursive_mnt
(
mnt
,
path
,
NULL
);
return
attach_recursive_mnt
(
real_mount
(
mnt
)
,
path
,
NULL
);
}
/*
...
...
@@ -1859,6 +1859,7 @@ static int do_move_mount(struct path *path, char *old_name)
{
struct
path
old_path
,
parent_path
;
struct
vfsmount
*
p
;
struct
mount
*
old
;
int
err
=
0
;
if
(
!
capable
(
CAP_SYS_ADMIN
))
return
-
EPERM
;
...
...
@@ -1883,6 +1884,8 @@ static int do_move_mount(struct path *path, char *old_name)
if
(
old_path
.
dentry
!=
old_path
.
mnt
->
mnt_root
)
goto
out1
;
old
=
real_mount
(
old_path
.
mnt
);
if
(
!
mnt_has_parent
(
old_path
.
mnt
))
goto
out1
;
...
...
@@ -1906,7 +1909,7 @@ static int do_move_mount(struct path *path, char *old_name)
if
(
p
==
old_path
.
mnt
)
goto
out1
;
err
=
attach_recursive_mnt
(
old
_path
.
mnt
,
path
,
&
parent_path
);
err
=
attach_recursive_mnt
(
old
,
path
,
&
parent_path
);
if
(
err
)
goto
out1
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录