Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
ceefda69
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看板
提交
ceefda69
编写于
7月 26, 2010
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
switch get_sb_ns() users
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
aed1d84f
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
12 addition
and
15 deletion
+12
-15
fs/super.c
fs/super.c
+6
-8
include/linux/fs.h
include/linux/fs.h
+2
-3
ipc/mqueue.c
ipc/mqueue.c
+4
-4
未找到文件。
fs/super.c
浏览文件 @
ceefda69
...
...
@@ -715,15 +715,14 @@ static int ns_set_super(struct super_block *sb, void *data)
return
set_anon_super
(
sb
,
NULL
);
}
int
get_sb_ns
(
struct
file_system_type
*
fs_type
,
int
flags
,
void
*
data
,
int
(
*
fill_super
)(
struct
super_block
*
,
void
*
,
int
),
struct
vfsmount
*
mnt
)
struct
dentry
*
mount_ns
(
struct
file_system_type
*
fs_type
,
int
flags
,
void
*
data
,
int
(
*
fill_super
)(
struct
super_block
*
,
void
*
,
int
))
{
struct
super_block
*
sb
;
sb
=
sget
(
fs_type
,
ns_test_super
,
ns_set_super
,
data
);
if
(
IS_ERR
(
sb
))
return
PTR_ERR
(
sb
);
return
ERR_CAST
(
sb
);
if
(
!
sb
->
s_root
)
{
int
err
;
...
...
@@ -731,17 +730,16 @@ int get_sb_ns(struct file_system_type *fs_type, int flags, void *data,
err
=
fill_super
(
sb
,
data
,
flags
&
MS_SILENT
?
1
:
0
);
if
(
err
)
{
deactivate_locked_super
(
sb
);
return
err
;
return
ERR_PTR
(
err
)
;
}
sb
->
s_flags
|=
MS_ACTIVE
;
}
simple_set_mnt
(
mnt
,
sb
);
return
0
;
return
dget
(
sb
->
s_root
);
}
EXPORT_SYMBOL
(
get_sb
_ns
);
EXPORT_SYMBOL
(
mount
_ns
);
#ifdef CONFIG_BLOCK
static
int
set_bdev_super
(
struct
super_block
*
s
,
void
*
data
)
...
...
include/linux/fs.h
浏览文件 @
ceefda69
...
...
@@ -1789,9 +1789,8 @@ struct file_system_type {
struct
lock_class_key
i_alloc_sem_key
;
};
extern
int
get_sb_ns
(
struct
file_system_type
*
fs_type
,
int
flags
,
void
*
data
,
int
(
*
fill_super
)(
struct
super_block
*
,
void
*
,
int
),
struct
vfsmount
*
mnt
);
extern
struct
dentry
*
mount_ns
(
struct
file_system_type
*
fs_type
,
int
flags
,
void
*
data
,
int
(
*
fill_super
)(
struct
super_block
*
,
void
*
,
int
));
extern
struct
dentry
*
mount_bdev
(
struct
file_system_type
*
fs_type
,
int
flags
,
const
char
*
dev_name
,
void
*
data
,
int
(
*
fill_super
)(
struct
super_block
*
,
void
*
,
int
));
...
...
ipc/mqueue.c
浏览文件 @
ceefda69
...
...
@@ -211,13 +211,13 @@ static int mqueue_fill_super(struct super_block *sb, void *data, int silent)
return
error
;
}
static
int
mqueue_get_sb
(
struct
file_system_type
*
fs_type
,
static
struct
dentry
*
mqueue_mount
(
struct
file_system_type
*
fs_type
,
int
flags
,
const
char
*
dev_name
,
void
*
data
,
struct
vfsmount
*
mnt
)
void
*
data
)
{
if
(
!
(
flags
&
MS_KERNMOUNT
))
data
=
current
->
nsproxy
->
ipc_ns
;
return
get_sb_ns
(
fs_type
,
flags
,
data
,
mqueue_fill_super
,
mnt
);
return
mount_ns
(
fs_type
,
flags
,
data
,
mqueue_fill_super
);
}
static
void
init_once
(
void
*
foo
)
...
...
@@ -1232,7 +1232,7 @@ static const struct super_operations mqueue_super_ops = {
static
struct
file_system_type
mqueue_fs_type
=
{
.
name
=
"mqueue"
,
.
get_sb
=
mqueue_get_sb
,
.
mount
=
mqueue_mount
,
.
kill_sb
=
kill_litter_super
,
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录