Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
676da58d
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
676da58d
编写于
11月 24, 2011
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
vfs: spread struct mount - mnt_has_parent
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
1ab59738
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
13 addition
and
12 deletion
+13
-12
fs/dcache.c
fs/dcache.c
+2
-1
fs/mount.h
fs/mount.h
+2
-2
fs/namespace.c
fs/namespace.c
+9
-9
未找到文件。
fs/dcache.c
浏览文件 @
676da58d
...
...
@@ -2460,8 +2460,9 @@ static int prepend_path(const struct path *path,
struct
dentry
*
parent
;
if
(
dentry
==
vfsmnt
->
mnt_root
||
IS_ROOT
(
dentry
))
{
struct
mount
*
mnt
=
real_mount
(
vfsmnt
);
/* Global root? */
if
(
!
mnt_has_parent
(
vfs
mnt
))
if
(
!
mnt_has_parent
(
mnt
))
goto
global_root
;
dentry
=
vfsmnt
->
mnt_mountpoint
;
vfsmnt
=
vfsmnt
->
mnt_parent
;
...
...
fs/mount.h
浏览文件 @
676da58d
...
...
@@ -10,9 +10,9 @@ static inline struct mount *real_mount(struct vfsmount *mnt)
return
container_of
(
mnt
,
struct
mount
,
mnt
);
}
static
inline
int
mnt_has_parent
(
struct
vfs
mount
*
mnt
)
static
inline
int
mnt_has_parent
(
struct
mount
*
mnt
)
{
return
mnt
!=
mnt
->
mnt_parent
;
return
&
mnt
->
mnt
!=
mnt
->
mnt
.
mnt_parent
;
}
extern
struct
mount
*
__lookup_mnt
(
struct
vfsmount
*
,
struct
dentry
*
,
int
);
fs/namespace.c
浏览文件 @
676da58d
...
...
@@ -1195,7 +1195,7 @@ void release_mounts(struct list_head *head)
while
(
!
list_empty
(
head
))
{
mnt
=
list_first_entry
(
head
,
struct
mount
,
mnt_hash
);
list_del_init
(
&
mnt
->
mnt_hash
);
if
(
mnt_has_parent
(
&
mnt
->
mnt
))
{
if
(
mnt_has_parent
(
mnt
))
{
struct
dentry
*
dentry
;
struct
vfsmount
*
m
;
...
...
@@ -1235,7 +1235,7 @@ void umount_tree(struct mount *mnt, int propagate, struct list_head *kill)
p
->
mnt
.
mnt_ns
=
NULL
;
__mnt_make_shortterm
(
&
p
->
mnt
);
list_del_init
(
&
p
->
mnt
.
mnt_child
);
if
(
mnt_has_parent
(
&
p
->
mnt
))
{
if
(
mnt_has_parent
(
p
))
{
p
->
mnt
.
mnt_parent
->
mnt_ghosts
++
;
dentry_reset_mounted
(
p
->
mnt
.
mnt_mountpoint
);
}
...
...
@@ -1861,7 +1861,7 @@ static inline int tree_contains_unbindable(struct mount *mnt)
static
int
do_move_mount
(
struct
path
*
path
,
char
*
old_name
)
{
struct
path
old_path
,
parent_path
;
struct
vfs
mount
*
p
;
struct
mount
*
p
;
struct
mount
*
old
;
int
err
=
0
;
if
(
!
capable
(
CAP_SYS_ADMIN
))
...
...
@@ -1889,7 +1889,7 @@ static int do_move_mount(struct path *path, char *old_name)
old
=
real_mount
(
old_path
.
mnt
);
if
(
!
mnt_has_parent
(
old
_path
.
mnt
))
if
(
!
mnt_has_parent
(
old
))
goto
out1
;
if
(
S_ISDIR
(
path
->
dentry
->
d_inode
->
i_mode
)
!=
...
...
@@ -1908,8 +1908,8 @@ static int do_move_mount(struct path *path, char *old_name)
tree_contains_unbindable
(
old
))
goto
out1
;
err
=
-
ELOOP
;
for
(
p
=
path
->
mnt
;
mnt_has_parent
(
p
);
p
=
p
->
mnt_parent
)
if
(
p
==
old
_path
.
mnt
)
for
(
p
=
real_mount
(
path
->
mnt
);
mnt_has_parent
(
p
);
p
=
real_mount
(
p
->
mnt
.
mnt_parent
)
)
if
(
p
==
old
)
goto
out1
;
err
=
attach_recursive_mnt
(
old
,
path
,
&
parent_path
);
...
...
@@ -2562,7 +2562,7 @@ SYSCALL_DEFINE5(mount, char __user *, dev_name, char __user *, dir_name,
bool
is_path_reachable
(
struct
vfsmount
*
mnt
,
struct
dentry
*
dentry
,
const
struct
path
*
root
)
{
while
(
mnt
!=
root
->
mnt
&&
mnt_has_parent
(
mnt
))
{
while
(
mnt
!=
root
->
mnt
&&
mnt_has_parent
(
real_mount
(
mnt
)
))
{
dentry
=
mnt
->
mnt_mountpoint
;
mnt
=
mnt
->
mnt_parent
;
}
...
...
@@ -2652,11 +2652,11 @@ SYSCALL_DEFINE2(pivot_root, const char __user *, new_root,
error
=
-
EINVAL
;
if
(
root
.
mnt
->
mnt_root
!=
root
.
dentry
)
goto
out4
;
/* not a mountpoint */
if
(
!
mnt_has_parent
(
root
.
mnt
))
if
(
!
mnt_has_parent
(
root
_
mnt
))
goto
out4
;
/* not attached */
if
(
new
.
mnt
->
mnt_root
!=
new
.
dentry
)
goto
out4
;
/* not a mountpoint */
if
(
!
mnt_has_parent
(
new
.
mnt
))
if
(
!
mnt_has_parent
(
new
_
mnt
))
goto
out4
;
/* not attached */
/* make sure we can reach put_old from new_root */
if
(
!
is_path_reachable
(
old
.
mnt
,
old
.
dentry
,
&
new
))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录