Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
5b369df8
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
5b369df8
编写于
12月 24, 2009
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Get rid of passing mangled flag to do_last()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
9a66179e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
5 addition
and
5 deletion
+5
-5
fs/namei.c
fs/namei.c
+5
-5
未找到文件。
fs/namei.c
浏览文件 @
5b369df8
...
@@ -1646,7 +1646,7 @@ static struct file *finish_open(struct nameidata *nd,
...
@@ -1646,7 +1646,7 @@ static struct file *finish_open(struct nameidata *nd,
}
}
static
struct
file
*
do_last
(
struct
nameidata
*
nd
,
struct
path
*
path
,
static
struct
file
*
do_last
(
struct
nameidata
*
nd
,
struct
path
*
path
,
int
open_flag
,
int
flag
,
int
acc_mode
,
int
open_flag
,
int
acc_mode
,
int
mode
,
const
char
*
pathname
,
int
mode
,
const
char
*
pathname
,
int
*
is_link
)
int
*
is_link
)
{
{
...
@@ -1712,12 +1712,12 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
...
@@ -1712,12 +1712,12 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
audit_inode
(
pathname
,
path
->
dentry
);
audit_inode
(
pathname
,
path
->
dentry
);
error
=
-
EEXIST
;
error
=
-
EEXIST
;
if
(
flag
&
O_EXCL
)
if
(
open_
flag
&
O_EXCL
)
goto
exit_dput
;
goto
exit_dput
;
if
(
__follow_mount
(
path
))
{
if
(
__follow_mount
(
path
))
{
error
=
-
ELOOP
;
error
=
-
ELOOP
;
if
(
flag
&
O_NOFOLLOW
)
if
(
open_
flag
&
O_NOFOLLOW
)
goto
exit_dput
;
goto
exit_dput
;
}
}
...
@@ -1845,7 +1845,7 @@ struct file *do_filp_open(int dfd, const char *pathname,
...
@@ -1845,7 +1845,7 @@ struct file *do_filp_open(int dfd, const char *pathname,
nd
.
flags
|=
LOOKUP_CREATE
|
LOOKUP_OPEN
;
nd
.
flags
|=
LOOKUP_CREATE
|
LOOKUP_OPEN
;
if
(
flag
&
O_EXCL
)
if
(
flag
&
O_EXCL
)
nd
.
flags
|=
LOOKUP_EXCL
;
nd
.
flags
|=
LOOKUP_EXCL
;
filp
=
do_last
(
&
nd
,
&
path
,
open_flag
,
flag
,
acc_mode
,
mode
,
filp
=
do_last
(
&
nd
,
&
path
,
open_flag
,
acc_mode
,
mode
,
pathname
,
&
is_link
);
pathname
,
&
is_link
);
if
(
is_link
)
if
(
is_link
)
goto
do_link
;
goto
do_link
;
...
@@ -1907,7 +1907,7 @@ struct file *do_filp_open(int dfd, const char *pathname,
...
@@ -1907,7 +1907,7 @@ struct file *do_filp_open(int dfd, const char *pathname,
nd
.
flags
&=
~
LOOKUP_PARENT
;
nd
.
flags
&=
~
LOOKUP_PARENT
;
if
(
nd
.
last_type
==
LAST_BIND
)
if
(
nd
.
last_type
==
LAST_BIND
)
goto
ok
;
goto
ok
;
filp
=
do_last
(
&
nd
,
&
path
,
open_flag
,
flag
,
acc_mode
,
mode
,
filp
=
do_last
(
&
nd
,
&
path
,
open_flag
,
acc_mode
,
mode
,
pathname
,
&
is_link
);
pathname
,
&
is_link
);
if
(
nd
.
last_type
==
LAST_NORM
)
if
(
nd
.
last_type
==
LAST_NORM
)
__putname
(
nd
.
last
.
name
);
__putname
(
nd
.
last
.
name
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录