Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
55430e2e
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
55430e2e
编写于
4月 18, 2009
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
nfsd struct path use: exp_get_by_name()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
dd5cae6e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
18 addition
and
20 deletion
+18
-20
fs/nfsd/export.c
fs/nfsd/export.c
+18
-20
未找到文件。
fs/nfsd/export.c
浏览文件 @
55430e2e
...
...
@@ -847,9 +847,8 @@ exp_get_fsid_key(svc_client *clp, int fsid)
return
exp_find_key
(
clp
,
FSID_NUM
,
fsidv
,
NULL
);
}
static
svc_export
*
exp_get_by_name
(
svc_client
*
clp
,
struct
vfsmount
*
mnt
,
struct
dentry
*
dentry
,
struct
cache_req
*
reqp
)
static
svc_export
*
exp_get_by_name
(
svc_client
*
clp
,
const
struct
path
*
path
,
struct
cache_req
*
reqp
)
{
struct
svc_export
*
exp
,
key
;
int
err
;
...
...
@@ -858,8 +857,7 @@ static svc_export *exp_get_by_name(svc_client *clp, struct vfsmount *mnt,
return
ERR_PTR
(
-
ENOENT
);
key
.
ex_client
=
clp
;
key
.
ex_path
.
mnt
=
mnt
;
key
.
ex_path
.
dentry
=
dentry
;
key
.
ex_path
=
*
path
;
exp
=
svc_export_lookup
(
&
key
);
if
(
exp
==
NULL
)
...
...
@@ -877,20 +875,19 @@ static struct svc_export *exp_parent(svc_client *clp, struct vfsmount *mnt,
struct
dentry
*
dentry
,
struct
cache_req
*
reqp
)
{
struct
path
path
=
{.
mnt
=
mnt
,
.
dentry
=
dentry
};
svc_export
*
exp
;
dget
(
dentry
);
exp
=
exp_get_by_name
(
clp
,
mnt
,
dentry
,
reqp
);
while
(
PTR_ERR
(
exp
)
==
-
ENOENT
&&
!
IS_ROOT
(
dentry
))
{
struct
dentry
*
parent
;
dget
(
path
.
dentry
);
exp
=
exp_get_by_name
(
clp
,
&
path
,
reqp
);
parent
=
dget_parent
(
dentry
);
dput
(
dentry
);
dentry
=
parent
;
exp
=
exp_get_by_name
(
clp
,
mnt
,
dentry
,
reqp
);
while
(
PTR_ERR
(
exp
)
==
-
ENOENT
&&
!
IS_ROOT
(
path
.
dentry
))
{
struct
dentry
*
parent
=
dget_parent
(
path
.
dentry
);
dput
(
path
.
dentry
);
path
.
dentry
=
parent
;
exp
=
exp_get_by_name
(
clp
,
&
path
,
reqp
);
}
dput
(
dentry
);
dput
(
path
.
dentry
);
return
exp
;
}
...
...
@@ -1018,7 +1015,7 @@ exp_export(struct nfsctl_export *nxp)
goto
out_put_clp
;
err
=
-
EINVAL
;
exp
=
exp_get_by_name
(
clp
,
path
.
mnt
,
path
.
dentry
,
NULL
);
exp
=
exp_get_by_name
(
clp
,
&
path
,
NULL
);
memset
(
&
new
,
0
,
sizeof
(
new
));
...
...
@@ -1135,7 +1132,7 @@ exp_unexport(struct nfsctl_export *nxp)
goto
out_domain
;
err
=
-
EINVAL
;
exp
=
exp_get_by_name
(
dom
,
path
.
mnt
,
path
.
dentry
,
NULL
);
exp
=
exp_get_by_name
(
dom
,
&
path
,
NULL
);
path_put
(
&
path
);
if
(
IS_ERR
(
exp
))
goto
out_domain
;
...
...
@@ -1207,7 +1204,7 @@ static struct svc_export *exp_find(struct auth_domain *clp, int fsid_type,
if
(
IS_ERR
(
ek
))
return
ERR_CAST
(
ek
);
exp
=
exp_get_by_name
(
clp
,
ek
->
ek_path
.
mnt
,
ek
->
ek_path
.
dentry
,
reqp
);
exp
=
exp_get_by_name
(
clp
,
&
ek
->
ek_path
,
reqp
);
cache_put
(
&
ek
->
h
,
&
svc_expkey_cache
);
if
(
IS_ERR
(
exp
))
...
...
@@ -1251,12 +1248,13 @@ rqst_exp_get_by_name(struct svc_rqst *rqstp, struct vfsmount *mnt,
struct
dentry
*
dentry
)
{
struct
svc_export
*
gssexp
,
*
exp
=
ERR_PTR
(
-
ENOENT
);
struct
path
path
=
{.
mnt
=
mnt
,
.
dentry
=
dentry
};
if
(
rqstp
->
rq_client
==
NULL
)
goto
gss
;
/* First try the auth_unix client: */
exp
=
exp_get_by_name
(
rqstp
->
rq_client
,
mnt
,
dentry
,
exp
=
exp_get_by_name
(
rqstp
->
rq_client
,
&
path
,
&
rqstp
->
rq_chandle
);
if
(
PTR_ERR
(
exp
)
==
-
ENOENT
)
goto
gss
;
...
...
@@ -1269,7 +1267,7 @@ rqst_exp_get_by_name(struct svc_rqst *rqstp, struct vfsmount *mnt,
/* Otherwise, try falling back on gss client */
if
(
rqstp
->
rq_gssclient
==
NULL
)
return
exp
;
gssexp
=
exp_get_by_name
(
rqstp
->
rq_gssclient
,
mnt
,
dentry
,
gssexp
=
exp_get_by_name
(
rqstp
->
rq_gssclient
,
&
path
,
&
rqstp
->
rq_chandle
);
if
(
PTR_ERR
(
gssexp
)
==
-
ENOENT
)
return
exp
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录