Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
20890479
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看板
提交
20890479
编写于
4月 20, 2016
作者:
E
Eric W. Biederman
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
devpts: Move parse_mount_options into fill_super
Signed-off-by:
N
"Eric W. Biederman"
<
ebiederm@xmission.com
>
上级
df75e774
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
8 deletion
+8
-8
fs/devpts/inode.c
fs/devpts/inode.c
+8
-8
未找到文件。
fs/devpts/inode.c
浏览文件 @
20890479
...
...
@@ -395,6 +395,7 @@ static int
devpts_fill_super
(
struct
super_block
*
s
,
void
*
data
,
int
silent
)
{
struct
inode
*
inode
;
int
error
;
s
->
s_iflags
&=
~
SB_I_NODEV
;
s
->
s_blocksize
=
1024
;
...
...
@@ -403,10 +404,16 @@ devpts_fill_super(struct super_block *s, void *data, int silent)
s
->
s_op
=
&
devpts_sops
;
s
->
s_time_gran
=
1
;
error
=
-
ENOMEM
;
s
->
s_fs_info
=
new_pts_fs_info
(
s
);
if
(
!
s
->
s_fs_info
)
goto
fail
;
error
=
parse_mount_options
(
data
,
PARSE_MOUNT
,
&
DEVPTS_SB
(
s
)
->
mount_opts
);
if
(
error
)
goto
fail
;
error
=
-
ENOMEM
;
inode
=
new_inode
(
s
);
if
(
!
inode
)
goto
fail
;
...
...
@@ -424,7 +431,7 @@ devpts_fill_super(struct super_block *s, void *data, int silent)
pr_err
(
"get root dentry failed
\n
"
);
fail:
return
-
ENOMEM
;
return
error
;
}
/*
...
...
@@ -437,13 +444,8 @@ static struct dentry *devpts_mount(struct file_system_type *fs_type,
int
flags
,
const
char
*
dev_name
,
void
*
data
)
{
int
error
;
struct
pts_mount_opts
opts
;
struct
super_block
*
s
;
error
=
parse_mount_options
(
data
,
PARSE_MOUNT
,
&
opts
);
if
(
error
)
return
ERR_PTR
(
error
);
s
=
sget
(
fs_type
,
NULL
,
set_anon_super
,
flags
,
NULL
);
if
(
IS_ERR
(
s
))
return
ERR_CAST
(
s
);
...
...
@@ -455,8 +457,6 @@ static struct dentry *devpts_mount(struct file_system_type *fs_type,
s
->
s_flags
|=
MS_ACTIVE
;
}
memcpy
(
&
(
DEVPTS_SB
(
s
))
->
mount_opts
,
&
opts
,
sizeof
(
opts
));
error
=
mknod_ptmx
(
s
);
if
(
error
)
goto
out_undo_sget
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录