Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
c407d41a
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看板
提交
c407d41a
编写于
4月 16, 2010
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFSv4: Reduce stack footprint of nfs4_proc_access() and nfs3_proc_access()
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
4f727296
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
17 addition
and
11 deletion
+17
-11
fs/nfs/nfs3proc.c
fs/nfs/nfs3proc.c
+10
-7
fs/nfs/nfs4proc.c
fs/nfs/nfs4proc.c
+7
-4
未找到文件。
fs/nfs/nfs3proc.c
浏览文件 @
c407d41a
...
...
@@ -181,13 +181,10 @@ nfs3_proc_lookup(struct inode *dir, struct qstr *name,
static
int
nfs3_proc_access
(
struct
inode
*
inode
,
struct
nfs_access_entry
*
entry
)
{
struct
nfs_fattr
fattr
;
struct
nfs3_accessargs
arg
=
{
.
fh
=
NFS_FH
(
inode
),
};
struct
nfs3_accessres
res
=
{
.
fattr
=
&
fattr
,
};
struct
nfs3_accessres
res
;
struct
rpc_message
msg
=
{
.
rpc_proc
=
&
nfs3_procedures
[
NFS3PROC_ACCESS
],
.
rpc_argp
=
&
arg
,
...
...
@@ -195,7 +192,7 @@ static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry)
.
rpc_cred
=
entry
->
cred
,
};
int
mode
=
entry
->
mask
;
int
status
;
int
status
=
-
ENOMEM
;
dprintk
(
"NFS call access
\n
"
);
...
...
@@ -212,9 +209,13 @@ static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry)
if
(
mode
&
MAY_EXEC
)
arg
.
access
|=
NFS3_ACCESS_EXECUTE
;
}
nfs_fattr_init
(
&
fattr
);
res
.
fattr
=
nfs_alloc_fattr
();
if
(
res
.
fattr
==
NULL
)
goto
out
;
status
=
rpc_call_sync
(
NFS_CLIENT
(
inode
),
&
msg
,
0
);
nfs_refresh_inode
(
inode
,
&
fattr
);
nfs_refresh_inode
(
inode
,
res
.
fattr
);
if
(
status
==
0
)
{
entry
->
mask
=
0
;
if
(
res
.
access
&
NFS3_ACCESS_READ
)
...
...
@@ -224,6 +225,8 @@ static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry)
if
(
res
.
access
&
(
NFS3_ACCESS_LOOKUP
|
NFS3_ACCESS_EXECUTE
))
entry
->
mask
|=
MAY_EXEC
;
}
nfs_free_fattr
(
res
.
fattr
);
out:
dprintk
(
"NFS reply access: %d
\n
"
,
status
);
return
status
;
}
...
...
fs/nfs/nfs4proc.c
浏览文件 @
c407d41a
...
...
@@ -2404,14 +2404,12 @@ static int nfs4_proc_lookup(struct inode *dir, struct qstr *name, struct nfs_fh
static
int
_nfs4_proc_access
(
struct
inode
*
inode
,
struct
nfs_access_entry
*
entry
)
{
struct
nfs_server
*
server
=
NFS_SERVER
(
inode
);
struct
nfs_fattr
fattr
;
struct
nfs4_accessargs
args
=
{
.
fh
=
NFS_FH
(
inode
),
.
bitmask
=
server
->
attr_bitmask
,
};
struct
nfs4_accessres
res
=
{
.
server
=
server
,
.
fattr
=
&
fattr
,
};
struct
rpc_message
msg
=
{
.
rpc_proc
=
&
nfs4_procedures
[
NFSPROC4_CLNT_ACCESS
],
...
...
@@ -2438,7 +2436,11 @@ static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry
if
(
mode
&
MAY_EXEC
)
args
.
access
|=
NFS4_ACCESS_EXECUTE
;
}
nfs_fattr_init
(
&
fattr
);
res
.
fattr
=
nfs_alloc_fattr
();
if
(
res
.
fattr
==
NULL
)
return
-
ENOMEM
;
status
=
nfs4_call_sync
(
server
,
&
msg
,
&
args
,
&
res
,
0
);
if
(
!
status
)
{
entry
->
mask
=
0
;
...
...
@@ -2448,8 +2450,9 @@ static int _nfs4_proc_access(struct inode *inode, struct nfs_access_entry *entry
entry
->
mask
|=
MAY_WRITE
;
if
(
res
.
access
&
(
NFS4_ACCESS_LOOKUP
|
NFS4_ACCESS_EXECUTE
))
entry
->
mask
|=
MAY_EXEC
;
nfs_refresh_inode
(
inode
,
&
fattr
);
nfs_refresh_inode
(
inode
,
res
.
fattr
);
}
nfs_free_fattr
(
res
.
fattr
);
return
status
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录