Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
8089352a
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看板
提交
8089352a
编写于
2月 05, 2010
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Mirror MS_KERNMOUNT in ->mnt_flags
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
d498b25a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
6 addition
and
1 deletion
+6
-1
fs/namespace.c
fs/namespace.c
+1
-1
fs/super.c
fs/super.c
+3
-0
include/linux/mount.h
include/linux/mount.h
+2
-0
未找到文件。
fs/namespace.c
浏览文件 @
8089352a
...
@@ -1701,7 +1701,7 @@ int do_add_mount(struct vfsmount *newmnt, struct path *path,
...
@@ -1701,7 +1701,7 @@ int do_add_mount(struct vfsmount *newmnt, struct path *path,
{
{
int
err
;
int
err
;
mnt_flags
&=
~
(
MNT_SHARED
|
MNT_WRITE_HOLD
);
mnt_flags
&=
~
(
MNT_SHARED
|
MNT_WRITE_HOLD
|
MNT_INTERNAL
);
down_write
(
&
namespace_sem
);
down_write
(
&
namespace_sem
);
/* Something was mounted here while we slept */
/* Something was mounted here while we slept */
...
...
fs/super.c
浏览文件 @
8089352a
...
@@ -937,6 +937,9 @@ vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void
...
@@ -937,6 +937,9 @@ vfs_kern_mount(struct file_system_type *type, int flags, const char *name, void
if
(
!
mnt
)
if
(
!
mnt
)
goto
out
;
goto
out
;
if
(
flags
&
MS_KERNMOUNT
)
mnt
->
mnt_flags
=
MNT_INTERNAL
;
if
(
data
&&
!
(
type
->
fs_flags
&
FS_BINARY_MOUNTDATA
))
{
if
(
data
&&
!
(
type
->
fs_flags
&
FS_BINARY_MOUNTDATA
))
{
secdata
=
alloc_secdata
();
secdata
=
alloc_secdata
();
if
(
!
secdata
)
if
(
!
secdata
)
...
...
include/linux/mount.h
浏览文件 @
8089352a
...
@@ -45,6 +45,8 @@ struct mnt_namespace;
...
@@ -45,6 +45,8 @@ struct mnt_namespace;
#define MNT_PROPAGATION_MASK (MNT_SHARED | MNT_UNBINDABLE)
#define MNT_PROPAGATION_MASK (MNT_SHARED | MNT_UNBINDABLE)
#define MNT_INTERNAL 0x4000
struct
vfsmount
{
struct
vfsmount
{
struct
list_head
mnt_hash
;
struct
list_head
mnt_hash
;
struct
vfsmount
*
mnt_parent
;
/* fs we are mounted on */
struct
vfsmount
*
mnt_parent
;
/* fs we are mounted on */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录