Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
03da633a
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看板
提交
03da633a
编写于
9月 16, 2013
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
atomic_open: take care of EEXIST in no-open case with O_CREAT|O_EXCL in fs/namei.c
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
116cc022
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
20 addition
and
21 deletion
+20
-21
fs/9p/vfs_inode_dotl.c
fs/9p/vfs_inode_dotl.c
+1
-7
fs/namei.c
fs/namei.c
+19
-14
未找到文件。
fs/9p/vfs_inode_dotl.c
浏览文件 @
03da633a
...
...
@@ -267,14 +267,8 @@ v9fs_vfs_atomic_open_dotl(struct inode *dir, struct dentry *dentry,
}
/* Only creates */
if
(
!
(
flags
&
O_CREAT
))
if
(
!
(
flags
&
O_CREAT
)
||
dentry
->
d_inode
)
return
finish_no_open
(
file
,
res
);
else
if
(
dentry
->
d_inode
)
{
if
((
flags
&
(
O_CREAT
|
O_EXCL
))
==
(
O_CREAT
|
O_EXCL
))
return
-
EEXIST
;
else
return
finish_no_open
(
file
,
res
);
}
v9ses
=
v9fs_inode2v9ses
(
dir
);
...
...
fs/namei.c
浏览文件 @
03da633a
...
...
@@ -2725,16 +2725,6 @@ static int atomic_open(struct nameidata *nd, struct dentry *dentry,
goto
out
;
}
acc_mode
=
op
->
acc_mode
;
if
(
WARN_ON
(
excl
&&
!
(
*
opened
&
FILE_CREATED
)))
*
opened
|=
FILE_CREATED
;
if
(
*
opened
&
FILE_CREATED
)
{
WARN_ON
(
!
(
open_flag
&
O_CREAT
));
fsnotify_create
(
dir
,
dentry
);
acc_mode
=
MAY_OPEN
;
}
if
(
error
)
{
/* returned 1, that is */
if
(
WARN_ON
(
file
->
f_path
.
dentry
==
DENTRY_NOT_SET
))
{
error
=
-
EIO
;
...
...
@@ -2744,10 +2734,19 @@ static int atomic_open(struct nameidata *nd, struct dentry *dentry,
dput
(
dentry
);
dentry
=
file
->
f_path
.
dentry
;
}
WARN_ON
(
!
dentry
->
d_inode
&&
(
*
opened
&
FILE_CREATED
));
if
(
create_error
&&
dentry
->
d_inode
==
NULL
)
{
error
=
create_error
;
goto
out
;
if
(
*
opened
&
FILE_CREATED
)
fsnotify_create
(
dir
,
dentry
);
if
(
!
dentry
->
d_inode
)
{
WARN_ON
(
*
opened
&
FILE_CREATED
);
if
(
create_error
)
{
error
=
create_error
;
goto
out
;
}
}
else
{
if
(
excl
&&
!
(
*
opened
&
FILE_CREATED
))
{
error
=
-
EEXIST
;
goto
out
;
}
}
goto
looked_up
;
}
...
...
@@ -2756,6 +2755,12 @@ static int atomic_open(struct nameidata *nd, struct dentry *dentry,
* We didn't have the inode before the open, so check open permission
* here.
*/
acc_mode
=
op
->
acc_mode
;
if
(
*
opened
&
FILE_CREATED
)
{
WARN_ON
(
!
(
open_flag
&
O_CREAT
));
fsnotify_create
(
dir
,
dentry
);
acc_mode
=
MAY_OPEN
;
}
error
=
may_open
(
&
file
->
f_path
,
acc_mode
,
open_flag
);
if
(
error
)
fput
(
file
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录