Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
d75340cc
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看板
提交
d75340cc
编写于
10月 01, 2007
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFSv4: Fix nfs_atomic_open() to set the verifier on negative dentries too
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
216d5d06
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
11 addition
and
9 deletion
+11
-9
fs/nfs/dir.c
fs/nfs/dir.c
+0
-8
fs/nfs/nfs4proc.c
fs/nfs/nfs4proc.c
+6
-1
include/linux/nfs_fs.h
include/linux/nfs_fs.h
+5
-0
未找到文件。
fs/nfs/dir.c
浏览文件 @
d75340cc
...
...
@@ -656,11 +656,6 @@ static int nfs_check_verifier(struct inode *dir, struct dentry *dentry)
return
1
;
}
static
inline
void
nfs_set_verifier
(
struct
dentry
*
dentry
,
unsigned
long
verf
)
{
dentry
->
d_time
=
verf
;
}
/*
* Return the intent data that applies to this particular path component
*
...
...
@@ -1016,7 +1011,6 @@ static struct dentry *nfs_atomic_lookup(struct inode *dir, struct dentry *dentry
}
}
else
if
(
res
!=
NULL
)
dentry
=
res
;
nfs_set_verifier
(
dentry
,
nfs_save_change_attribute
(
dir
));
out:
return
res
;
no_open:
...
...
@@ -1060,8 +1054,6 @@ static int nfs_open_revalidate(struct dentry *dentry, struct nameidata *nd)
*/
lock_kernel
();
ret
=
nfs4_open_revalidate
(
dir
,
dentry
,
openflags
,
nd
);
if
(
ret
==
1
)
nfs_set_verifier
(
dentry
,
nfs_save_change_attribute
(
dir
));
unlock_kernel
();
out:
dput
(
parent
);
...
...
fs/nfs/nfs4proc.c
浏览文件 @
d75340cc
...
...
@@ -1399,13 +1399,16 @@ nfs4_atomic_open(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
state
=
nfs4_do_open
(
dir
,
&
path
,
nd
->
intent
.
open
.
flags
,
&
attr
,
cred
);
put_rpccred
(
cred
);
if
(
IS_ERR
(
state
))
{
if
(
PTR_ERR
(
state
)
==
-
ENOENT
)
if
(
PTR_ERR
(
state
)
==
-
ENOENT
)
{
d_add
(
dentry
,
NULL
);
nfs_set_verifier
(
dentry
,
nfs_save_change_attribute
(
dir
));
}
return
(
struct
dentry
*
)
state
;
}
res
=
d_add_unique
(
dentry
,
igrab
(
state
->
inode
));
if
(
res
!=
NULL
)
path
.
dentry
=
res
;
nfs_set_verifier
(
path
.
dentry
,
nfs_save_change_attribute
(
dir
));
nfs4_intent_set_file
(
nd
,
&
path
,
state
);
return
res
;
}
...
...
@@ -1439,6 +1442,7 @@ nfs4_open_revalidate(struct inode *dir, struct dentry *dentry, int openflags, st
}
}
if
(
state
->
inode
==
dentry
->
d_inode
)
{
nfs_set_verifier
(
dentry
,
nfs_save_change_attribute
(
dir
));
nfs4_intent_set_file
(
nd
,
&
path
,
state
);
return
1
;
}
...
...
@@ -1885,6 +1889,7 @@ nfs4_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
goto
out
;
}
d_add
(
dentry
,
igrab
(
state
->
inode
));
nfs_set_verifier
(
dentry
,
nfs_save_change_attribute
(
dir
));
if
(
flags
&
O_EXCL
)
{
struct
nfs_fattr
fattr
;
status
=
nfs4_do_setattr
(
state
->
inode
,
&
fattr
,
sattr
,
state
);
...
...
include/linux/nfs_fs.h
浏览文件 @
d75340cc
...
...
@@ -240,6 +240,11 @@ static inline int NFS_USE_READDIRPLUS(struct inode *inode)
return
test_bit
(
NFS_INO_ADVISE_RDPLUS
,
&
NFS_FLAGS
(
inode
));
}
static
inline
void
nfs_set_verifier
(
struct
dentry
*
dentry
,
unsigned
long
verf
)
{
dentry
->
d_time
=
verf
;
}
/**
* nfs_save_change_attribute - Returns the inode attribute change cookie
* @dir - pointer to parent directory inode
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录