Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
d463a0c4
cloud-kernel
项目概览
openanolis
/
cloud-kernel
接近 2 年 前同步成功
通知
170
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看板
提交
d463a0c4
编写于
1月 12, 2011
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
switch configfs
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
31a203df
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
3 addition
and
5 deletion
+3
-5
fs/configfs/configfs_internal.h
fs/configfs/configfs_internal.h
+1
-0
fs/configfs/dir.c
fs/configfs/dir.c
+1
-5
fs/configfs/mount.c
fs/configfs/mount.c
+1
-0
未找到文件。
fs/configfs/configfs_internal.h
浏览文件 @
d463a0c4
...
...
@@ -90,6 +90,7 @@ extern const struct file_operations configfs_file_operations;
extern
const
struct
file_operations
bin_fops
;
extern
const
struct
inode_operations
configfs_dir_inode_operations
;
extern
const
struct
inode_operations
configfs_symlink_inode_operations
;
extern
const
struct
dentry_operations
configfs_dentry_ops
;
extern
int
configfs_symlink
(
struct
inode
*
dir
,
struct
dentry
*
dentry
,
const
char
*
symname
);
...
...
fs/configfs/dir.c
浏览文件 @
d463a0c4
...
...
@@ -72,7 +72,7 @@ static int configfs_d_delete(const struct dentry *dentry)
return
1
;
}
static
const
struct
dentry_operations
configfs_dentry_ops
=
{
const
struct
dentry_operations
configfs_dentry_ops
=
{
.
d_iput
=
configfs_d_iput
,
/* simple_delete_dentry() isn't exported */
.
d_delete
=
configfs_d_delete
,
...
...
@@ -442,7 +442,6 @@ static int configfs_attach_attr(struct configfs_dirent * sd, struct dentry * den
return
error
;
}
d_set_d_op
(
dentry
,
&
configfs_dentry_ops
);
d_rehash
(
dentry
);
return
0
;
...
...
@@ -489,7 +488,6 @@ static struct dentry * configfs_lookup(struct inode *dir,
*/
if
(
dentry
->
d_name
.
len
>
NAME_MAX
)
return
ERR_PTR
(
-
ENAMETOOLONG
);
d_set_d_op
(
dentry
,
&
configfs_dentry_ops
);
d_add
(
dentry
,
NULL
);
return
NULL
;
}
...
...
@@ -683,7 +681,6 @@ static int create_default_group(struct config_group *parent_group,
ret
=
-
ENOMEM
;
child
=
d_alloc
(
parent
,
&
name
);
if
(
child
)
{
d_set_d_op
(
child
,
&
configfs_dentry_ops
);
d_add
(
child
,
NULL
);
ret
=
configfs_attach_group
(
&
parent_group
->
cg_item
,
...
...
@@ -1681,7 +1678,6 @@ int configfs_register_subsystem(struct configfs_subsystem *subsys)
err
=
-
ENOMEM
;
dentry
=
d_alloc
(
configfs_sb
->
s_root
,
&
name
);
if
(
dentry
)
{
d_set_d_op
(
dentry
,
&
configfs_dentry_ops
);
d_add
(
dentry
,
NULL
);
err
=
configfs_attach_group
(
sd
->
s_element
,
&
group
->
cg_item
,
...
...
fs/configfs/mount.c
浏览文件 @
d463a0c4
...
...
@@ -101,6 +101,7 @@ static int configfs_fill_super(struct super_block *sb, void *data, int silent)
configfs_root_group
.
cg_item
.
ci_dentry
=
root
;
root
->
d_fsdata
=
&
configfs_root
;
sb
->
s_root
=
root
;
sb
->
s_d_op
=
&
configfs_dentry_ops
;
/* the rest get that */
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录