Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
6e94d629
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看板
提交
6e94d629
编写于
4月 16, 2010
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFS: Reduce stack footprint of nfs3_proc_getacl() and nfs3_proc_setacl()
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
ca7e9a0d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
16 addition
and
7 deletion
+16
-7
fs/nfs/nfs3acl.c
fs/nfs/nfs3acl.c
+16
-7
未找到文件。
fs/nfs/nfs3acl.c
浏览文件 @
6e94d629
...
...
@@ -185,7 +185,6 @@ static void nfs3_cache_acls(struct inode *inode, struct posix_acl *acl,
struct
posix_acl
*
nfs3_proc_getacl
(
struct
inode
*
inode
,
int
type
)
{
struct
nfs_server
*
server
=
NFS_SERVER
(
inode
);
struct
nfs_fattr
fattr
;
struct
page
*
pages
[
NFSACL_MAXPAGES
]
=
{
};
struct
nfs3_getaclargs
args
=
{
.
fh
=
NFS_FH
(
inode
),
...
...
@@ -193,7 +192,7 @@ struct posix_acl *nfs3_proc_getacl(struct inode *inode, int type)
.
pages
=
pages
,
};
struct
nfs3_getaclres
res
=
{
.
fattr
=
&
fattr
,
0
};
struct
rpc_message
msg
=
{
.
rpc_argp
=
&
args
,
...
...
@@ -228,7 +227,10 @@ struct posix_acl *nfs3_proc_getacl(struct inode *inode, int type)
dprintk
(
"NFS call getacl
\n
"
);
msg
.
rpc_proc
=
&
server
->
client_acl
->
cl_procinfo
[
ACLPROC3_GETACL
];
nfs_fattr_init
(
&
fattr
);
res
.
fattr
=
nfs_alloc_fattr
();
if
(
res
.
fattr
==
NULL
)
return
ERR_PTR
(
-
ENOMEM
);
status
=
rpc_call_sync
(
server
->
client_acl
,
&
msg
,
0
);
dprintk
(
"NFS reply getacl: %d
\n
"
,
status
);
...
...
@@ -238,7 +240,7 @@ struct posix_acl *nfs3_proc_getacl(struct inode *inode, int type)
switch
(
status
)
{
case
0
:
status
=
nfs_refresh_inode
(
inode
,
&
fattr
);
status
=
nfs_refresh_inode
(
inode
,
res
.
fattr
);
break
;
case
-
EPFNOSUPPORT
:
case
-
EPROTONOSUPPORT
:
...
...
@@ -278,6 +280,7 @@ struct posix_acl *nfs3_proc_getacl(struct inode *inode, int type)
getout:
posix_acl_release
(
res
.
acl_access
);
posix_acl_release
(
res
.
acl_default
);
nfs_free_fattr
(
res
.
fattr
);
if
(
status
!=
0
)
{
posix_acl_release
(
acl
);
...
...
@@ -290,7 +293,7 @@ static int nfs3_proc_setacls(struct inode *inode, struct posix_acl *acl,
struct
posix_acl
*
dfacl
)
{
struct
nfs_server
*
server
=
NFS_SERVER
(
inode
);
struct
nfs_fattr
fattr
;
struct
nfs_fattr
*
fattr
;
struct
page
*
pages
[
NFSACL_MAXPAGES
];
struct
nfs3_setaclargs
args
=
{
.
inode
=
inode
,
...
...
@@ -335,8 +338,13 @@ static int nfs3_proc_setacls(struct inode *inode, struct posix_acl *acl,
}
dprintk
(
"NFS call setacl
\n
"
);
status
=
-
ENOMEM
;
fattr
=
nfs_alloc_fattr
();
if
(
fattr
==
NULL
)
goto
out_freepages
;
msg
.
rpc_proc
=
&
server
->
client_acl
->
cl_procinfo
[
ACLPROC3_SETACL
];
nfs_fattr_init
(
&
fattr
)
;
msg
.
rpc_resp
=
fattr
;
status
=
rpc_call_sync
(
server
->
client_acl
,
&
msg
,
0
);
nfs_access_zap_cache
(
inode
);
nfs_zap_acl_cache
(
inode
);
...
...
@@ -344,7 +352,7 @@ static int nfs3_proc_setacls(struct inode *inode, struct posix_acl *acl,
switch
(
status
)
{
case
0
:
status
=
nfs_refresh_inode
(
inode
,
&
fattr
);
status
=
nfs_refresh_inode
(
inode
,
fattr
);
nfs3_cache_acls
(
inode
,
acl
,
dfacl
);
break
;
case
-
EPFNOSUPPORT
:
...
...
@@ -355,6 +363,7 @@ static int nfs3_proc_setacls(struct inode *inode, struct posix_acl *acl,
case
-
ENOTSUPP
:
status
=
-
EOPNOTSUPP
;
}
nfs_free_fattr
(
fattr
);
out_freepages:
while
(
args
.
npages
!=
0
)
{
args
.
npages
--
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录