Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
d346890b
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看板
提交
d346890b
编写于
4月 16, 2010
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFS: Reduce stack footprint of nfs_proc_remove()
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
3b14d654
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
24 addition
and
12 deletion
+24
-12
fs/nfs/nfs3proc.c
fs/nfs/nfs3proc.c
+9
-4
fs/nfs/nfs3xdr.c
fs/nfs/nfs3xdr.c
+1
-1
fs/nfs/nfs4proc.c
fs/nfs/nfs4proc.c
+9
-4
fs/nfs/nfs4xdr.c
fs/nfs/nfs4xdr.c
+1
-1
fs/nfs/unlink.c
fs/nfs/unlink.c
+3
-1
include/linux/nfs_xdr.h
include/linux/nfs_xdr.h
+1
-1
未找到文件。
fs/nfs/nfs3proc.c
浏览文件 @
d346890b
...
@@ -406,12 +406,17 @@ nfs3_proc_remove(struct inode *dir, struct qstr *name)
...
@@ -406,12 +406,17 @@ nfs3_proc_remove(struct inode *dir, struct qstr *name)
.
rpc_argp
=
&
arg
,
.
rpc_argp
=
&
arg
,
.
rpc_resp
=
&
res
,
.
rpc_resp
=
&
res
,
};
};
int
status
;
int
status
=
-
ENOMEM
;
dprintk
(
"NFS call remove %s
\n
"
,
name
->
name
);
dprintk
(
"NFS call remove %s
\n
"
,
name
->
name
);
nfs_fattr_init
(
&
res
.
dir_attr
);
res
.
dir_attr
=
nfs_alloc_fattr
();
if
(
res
.
dir_attr
==
NULL
)
goto
out
;
status
=
rpc_call_sync
(
NFS_CLIENT
(
dir
),
&
msg
,
0
);
status
=
rpc_call_sync
(
NFS_CLIENT
(
dir
),
&
msg
,
0
);
nfs_post_op_update_inode
(
dir
,
&
res
.
dir_attr
);
nfs_post_op_update_inode
(
dir
,
res
.
dir_attr
);
nfs_free_fattr
(
res
.
dir_attr
);
out:
dprintk
(
"NFS reply remove: %d
\n
"
,
status
);
dprintk
(
"NFS reply remove: %d
\n
"
,
status
);
return
status
;
return
status
;
}
}
...
@@ -429,7 +434,7 @@ nfs3_proc_unlink_done(struct rpc_task *task, struct inode *dir)
...
@@ -429,7 +434,7 @@ nfs3_proc_unlink_done(struct rpc_task *task, struct inode *dir)
if
(
nfs3_async_handle_jukebox
(
task
,
dir
))
if
(
nfs3_async_handle_jukebox
(
task
,
dir
))
return
0
;
return
0
;
res
=
task
->
tk_msg
.
rpc_resp
;
res
=
task
->
tk_msg
.
rpc_resp
;
nfs_post_op_update_inode
(
dir
,
&
res
->
dir_attr
);
nfs_post_op_update_inode
(
dir
,
res
->
dir_attr
);
return
1
;
return
1
;
}
}
...
...
fs/nfs/nfs3xdr.c
浏览文件 @
d346890b
...
@@ -762,7 +762,7 @@ nfs3_xdr_wccstat(struct rpc_rqst *req, __be32 *p, struct nfs_fattr *fattr)
...
@@ -762,7 +762,7 @@ nfs3_xdr_wccstat(struct rpc_rqst *req, __be32 *p, struct nfs_fattr *fattr)
static
int
static
int
nfs3_xdr_removeres
(
struct
rpc_rqst
*
req
,
__be32
*
p
,
struct
nfs_removeres
*
res
)
nfs3_xdr_removeres
(
struct
rpc_rqst
*
req
,
__be32
*
p
,
struct
nfs_removeres
*
res
)
{
{
return
nfs3_xdr_wccstat
(
req
,
p
,
&
res
->
dir_attr
);
return
nfs3_xdr_wccstat
(
req
,
p
,
res
->
dir_attr
);
}
}
/*
/*
...
...
fs/nfs/nfs4proc.c
浏览文件 @
d346890b
...
@@ -2599,14 +2599,19 @@ static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
...
@@ -2599,14 +2599,19 @@ static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
.
rpc_argp
=
&
args
,
.
rpc_argp
=
&
args
,
.
rpc_resp
=
&
res
,
.
rpc_resp
=
&
res
,
};
};
int
status
;
int
status
=
-
ENOMEM
;
res
.
dir_attr
=
nfs_alloc_fattr
();
if
(
res
.
dir_attr
==
NULL
)
goto
out
;
nfs_fattr_init
(
&
res
.
dir_attr
);
status
=
nfs4_call_sync
(
server
,
&
msg
,
&
args
,
&
res
,
1
);
status
=
nfs4_call_sync
(
server
,
&
msg
,
&
args
,
&
res
,
1
);
if
(
status
==
0
)
{
if
(
status
==
0
)
{
update_changeattr
(
dir
,
&
res
.
cinfo
);
update_changeattr
(
dir
,
&
res
.
cinfo
);
nfs_post_op_update_inode
(
dir
,
&
res
.
dir_attr
);
nfs_post_op_update_inode
(
dir
,
res
.
dir_attr
);
}
}
nfs_free_fattr
(
res
.
dir_attr
);
out:
return
status
;
return
status
;
}
}
...
@@ -2641,7 +2646,7 @@ static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
...
@@ -2641,7 +2646,7 @@ static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
if
(
nfs4_async_handle_error
(
task
,
res
->
server
,
NULL
)
==
-
EAGAIN
)
if
(
nfs4_async_handle_error
(
task
,
res
->
server
,
NULL
)
==
-
EAGAIN
)
return
0
;
return
0
;
update_changeattr
(
dir
,
&
res
->
cinfo
);
update_changeattr
(
dir
,
&
res
->
cinfo
);
nfs_post_op_update_inode
(
dir
,
&
res
->
dir_attr
);
nfs_post_op_update_inode
(
dir
,
res
->
dir_attr
);
return
1
;
return
1
;
}
}
...
...
fs/nfs/nfs4xdr.c
浏览文件 @
d346890b
...
@@ -4815,7 +4815,7 @@ static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, __be32 *p, struct nfs_rem
...
@@ -4815,7 +4815,7 @@ static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, __be32 *p, struct nfs_rem
goto
out
;
goto
out
;
if
((
status
=
decode_remove
(
&
xdr
,
&
res
->
cinfo
))
!=
0
)
if
((
status
=
decode_remove
(
&
xdr
,
&
res
->
cinfo
))
!=
0
)
goto
out
;
goto
out
;
decode_getfattr
(
&
xdr
,
&
res
->
dir_attr
,
res
->
server
,
decode_getfattr
(
&
xdr
,
res
->
dir_attr
,
res
->
server
,
!
RPC_IS_ASYNC
(
rqstp
->
rq_task
));
!
RPC_IS_ASYNC
(
rqstp
->
rq_task
));
out:
out:
return
status
;
return
status
;
...
...
fs/nfs/unlink.c
浏览文件 @
d346890b
...
@@ -23,6 +23,7 @@ struct nfs_unlinkdata {
...
@@ -23,6 +23,7 @@ struct nfs_unlinkdata {
struct
nfs_removeres
res
;
struct
nfs_removeres
res
;
struct
inode
*
dir
;
struct
inode
*
dir
;
struct
rpc_cred
*
cred
;
struct
rpc_cred
*
cred
;
struct
nfs_fattr
dir_attr
;
};
};
/**
/**
...
@@ -169,7 +170,7 @@ static int nfs_do_call_unlink(struct dentry *parent, struct inode *dir, struct n
...
@@ -169,7 +170,7 @@ static int nfs_do_call_unlink(struct dentry *parent, struct inode *dir, struct n
}
}
nfs_sb_active
(
dir
->
i_sb
);
nfs_sb_active
(
dir
->
i_sb
);
data
->
args
.
fh
=
NFS_FH
(
dir
);
data
->
args
.
fh
=
NFS_FH
(
dir
);
nfs_fattr_init
(
&
data
->
res
.
dir_attr
);
nfs_fattr_init
(
data
->
res
.
dir_attr
);
NFS_PROTO
(
dir
)
->
unlink_setup
(
&
msg
,
dir
);
NFS_PROTO
(
dir
)
->
unlink_setup
(
&
msg
,
dir
);
...
@@ -259,6 +260,7 @@ nfs_async_unlink(struct inode *dir, struct dentry *dentry)
...
@@ -259,6 +260,7 @@ nfs_async_unlink(struct inode *dir, struct dentry *dentry)
goto
out_free
;
goto
out_free
;
}
}
data
->
res
.
seq_res
.
sr_slotid
=
NFS4_MAX_SLOT_TABLE
;
data
->
res
.
seq_res
.
sr_slotid
=
NFS4_MAX_SLOT_TABLE
;
data
->
res
.
dir_attr
=
&
data
->
dir_attr
;
status
=
-
EBUSY
;
status
=
-
EBUSY
;
spin_lock
(
&
dentry
->
d_lock
);
spin_lock
(
&
dentry
->
d_lock
);
...
...
include/linux/nfs_xdr.h
浏览文件 @
d346890b
...
@@ -386,8 +386,8 @@ struct nfs_removeargs {
...
@@ -386,8 +386,8 @@ struct nfs_removeargs {
struct
nfs_removeres
{
struct
nfs_removeres
{
const
struct
nfs_server
*
server
;
const
struct
nfs_server
*
server
;
struct
nfs_fattr
*
dir_attr
;
struct
nfs4_change_info
cinfo
;
struct
nfs4_change_info
cinfo
;
struct
nfs_fattr
dir_attr
;
struct
nfs4_sequence_res
seq_res
;
struct
nfs4_sequence_res
seq_res
;
};
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录