Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
8b244ff2
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
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看板
提交
8b244ff2
编写于
12月 18, 2010
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
switch nfs to ->s_d_op
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
96e13914
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
1 addition
and
10 deletion
+1
-10
fs/nfs/dir.c
fs/nfs/dir.c
+0
-4
fs/nfs/getroot.c
fs/nfs/getroot.c
+0
-6
fs/nfs/super.c
fs/nfs/super.c
+1
-0
未找到文件。
fs/nfs/dir.c
浏览文件 @
8b244ff2
...
...
@@ -439,7 +439,6 @@ void nfs_prime_dcache(struct dentry *parent, struct nfs_entry *entry)
if
(
dentry
==
NULL
)
return
;
d_set_d_op
(
dentry
,
NFS_PROTO
(
dir
)
->
dentry_ops
);
inode
=
nfs_fhget
(
dentry
->
d_sb
,
entry
->
fh
,
entry
->
fattr
);
if
(
IS_ERR
(
inode
))
goto
out
;
...
...
@@ -1193,8 +1192,6 @@ static struct dentry *nfs_lookup(struct inode *dir, struct dentry * dentry, stru
if
(
dentry
->
d_name
.
len
>
NFS_SERVER
(
dir
)
->
namelen
)
goto
out
;
d_set_d_op
(
dentry
,
NFS_PROTO
(
dir
)
->
dentry_ops
);
/*
* If we're doing an exclusive create, optimize away the lookup
* but don't hash the dentry.
...
...
@@ -1338,7 +1335,6 @@ static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry
res
=
ERR_PTR
(
-
ENAMETOOLONG
);
goto
out
;
}
d_set_d_op
(
dentry
,
NFS_PROTO
(
dir
)
->
dentry_ops
);
/* Let vfs_create() deal with O_EXCL. Instantiate, but don't hash
* the dentry. */
...
...
fs/nfs/getroot.c
浏览文件 @
8b244ff2
...
...
@@ -119,9 +119,6 @@ struct dentry *nfs_get_root(struct super_block *sb, struct nfs_fh *mntfh)
}
security_d_instantiate
(
ret
,
inode
);
if
(
ret
->
d_op
==
NULL
)
d_set_d_op
(
ret
,
server
->
nfs_client
->
rpc_ops
->
dentry_ops
);
out:
nfs_free_fattr
(
fsinfo
.
fattr
);
return
ret
;
...
...
@@ -227,9 +224,6 @@ struct dentry *nfs4_get_root(struct super_block *sb, struct nfs_fh *mntfh)
security_d_instantiate
(
ret
,
inode
);
if
(
ret
->
d_op
==
NULL
)
d_set_d_op
(
ret
,
server
->
nfs_client
->
rpc_ops
->
dentry_ops
);
out:
nfs_free_fattr
(
fattr
);
dprintk
(
"<-- nfs4_get_root()
\n
"
);
...
...
fs/nfs/super.c
浏览文件 @
8b244ff2
...
...
@@ -2202,6 +2202,7 @@ static int nfs_set_super(struct super_block *s, void *data)
s
->
s_flags
=
sb_mntdata
->
mntflags
;
s
->
s_fs_info
=
server
;
s
->
s_d_op
=
server
->
nfs_client
->
rpc_ops
->
dentry_ops
;
ret
=
set_anon_super
(
s
,
server
);
if
(
ret
==
0
)
server
->
s_dev
=
s
->
s_dev
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录