Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
820bf85c
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
820bf85c
编写于
1月 11, 2017
作者:
A
Anna Schumaker
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFS: Remove nfs4_wait_for_completion_rpc_task()
Signed-off-by:
N
Anna Schumaker
<
Anna.Schumaker@Netapp.com
>
上级
eeea5361
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
7 addition
and
15 deletion
+7
-15
fs/nfs/nfs4proc.c
fs/nfs/nfs4proc.c
+7
-15
未找到文件。
fs/nfs/nfs4proc.c
浏览文件 @
820bf85c
...
...
@@ -1245,14 +1245,6 @@ static void nfs4_opendata_put(struct nfs4_opendata *p)
kref_put
(
&
p
->
kref
,
nfs4_opendata_free
);
}
static
int
nfs4_wait_for_completion_rpc_task
(
struct
rpc_task
*
task
)
{
int
ret
;
ret
=
rpc_wait_for_completion_task
(
task
);
return
ret
;
}
static
bool
nfs4_mode_match_open_stateid
(
struct
nfs4_state
*
state
,
fmode_t
fmode
)
{
...
...
@@ -2039,7 +2031,7 @@ static int _nfs4_proc_open_confirm(struct nfs4_opendata *data)
task
=
rpc_run_task
(
&
task_setup_data
);
if
(
IS_ERR
(
task
))
return
PTR_ERR
(
task
);
status
=
nfs4_wait_for_completion_rpc
_task
(
task
);
status
=
rpc_wait_for_completion
_task
(
task
);
if
(
status
!=
0
)
{
data
->
cancelled
=
1
;
smp_wmb
();
...
...
@@ -2206,7 +2198,7 @@ static int nfs4_run_open_task(struct nfs4_opendata *data, int isrecover)
task
=
rpc_run_task
(
&
task_setup_data
);
if
(
IS_ERR
(
task
))
return
PTR_ERR
(
task
);
status
=
nfs4_wait_for_completion_rpc
_task
(
task
);
status
=
rpc_wait_for_completion
_task
(
task
);
if
(
status
!=
0
)
{
data
->
cancelled
=
1
;
smp_wmb
();
...
...
@@ -5732,7 +5724,7 @@ static int _nfs4_proc_delegreturn(struct inode *inode, struct rpc_cred *cred, co
return
PTR_ERR
(
task
);
if
(
!
issync
)
goto
out
;
status
=
nfs4_wait_for_completion_rpc
_task
(
task
);
status
=
rpc_wait_for_completion
_task
(
task
);
if
(
status
!=
0
)
goto
out
;
status
=
data
->
rpc_status
;
...
...
@@ -6002,7 +5994,7 @@ static int nfs4_proc_unlck(struct nfs4_state *state, int cmd, struct file_lock *
status
=
PTR_ERR
(
task
);
if
(
IS_ERR
(
task
))
goto
out
;
status
=
nfs4_wait_for_completion_rpc
_task
(
task
);
status
=
rpc_wait_for_completion
_task
(
task
);
rpc_put_task
(
task
);
out:
request
->
fl_flags
=
fl_flags
;
...
...
@@ -6229,7 +6221,7 @@ static int _nfs4_do_setlk(struct nfs4_state *state, int cmd, struct file_lock *f
task
=
rpc_run_task
(
&
task_setup_data
);
if
(
IS_ERR
(
task
))
return
PTR_ERR
(
task
);
ret
=
nfs4_wait_for_completion_rpc
_task
(
task
);
ret
=
rpc_wait_for_completion
_task
(
task
);
if
(
ret
==
0
)
{
ret
=
data
->
rpc_status
;
if
(
ret
)
...
...
@@ -8297,7 +8289,7 @@ static int nfs41_proc_reclaim_complete(struct nfs_client *clp,
status
=
PTR_ERR
(
task
);
goto
out
;
}
status
=
nfs4_wait_for_completion_rpc
_task
(
task
);
status
=
rpc_wait_for_completion
_task
(
task
);
if
(
status
==
0
)
status
=
task
->
tk_status
;
rpc_put_task
(
task
);
...
...
@@ -8529,7 +8521,7 @@ nfs4_proc_layoutget(struct nfs4_layoutget *lgp, long *timeout, gfp_t gfp_flags)
task
=
rpc_run_task
(
&
task_setup_data
);
if
(
IS_ERR
(
task
))
return
ERR_CAST
(
task
);
status
=
nfs4_wait_for_completion_rpc
_task
(
task
);
status
=
rpc_wait_for_completion
_task
(
task
);
if
(
status
==
0
)
{
status
=
nfs4_layoutget_handle_exception
(
task
,
lgp
,
&
exception
);
*
timeout
=
exception
.
timeout
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录