Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
fda13939
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看板
提交
fda13939
编写于
2月 22, 2008
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
SUNRPC: Convert users of rpc_wake_up_task to use rpc_wake_up_queued_task
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
96ef13b2
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
8 addition
and
10 deletion
+8
-10
fs/nfs/nfs4proc.c
fs/nfs/nfs4proc.c
+1
-1
include/linux/sunrpc/sched.h
include/linux/sunrpc/sched.h
+0
-1
net/sunrpc/clnt.c
net/sunrpc/clnt.c
+1
-1
net/sunrpc/sched.c
net/sunrpc/sched.c
+1
-2
net/sunrpc/xprt.c
net/sunrpc/xprt.c
+5
-5
未找到文件。
fs/nfs/nfs4proc.c
浏览文件 @
fda13939
...
...
@@ -2768,7 +2768,7 @@ nfs4_async_handle_error(struct rpc_task *task, const struct nfs_server *server)
rpc_sleep_on
(
&
clp
->
cl_rpcwaitq
,
task
,
NULL
,
NULL
);
nfs4_schedule_state_recovery
(
clp
);
if
(
test_bit
(
NFS4CLNT_STATE_RECOVER
,
&
clp
->
cl_state
)
==
0
)
rpc_wake_up_
task
(
task
);
rpc_wake_up_
queued_task
(
&
clp
->
cl_rpcwaitq
,
task
);
task
->
tk_status
=
0
;
return
-
EAGAIN
;
case
-
NFS4ERR_DELAY
:
...
...
include/linux/sunrpc/sched.h
浏览文件 @
fda13939
...
...
@@ -232,7 +232,6 @@ void rpc_init_priority_wait_queue(struct rpc_wait_queue *, const char *);
void
rpc_init_wait_queue
(
struct
rpc_wait_queue
*
,
const
char
*
);
void
rpc_sleep_on
(
struct
rpc_wait_queue
*
,
struct
rpc_task
*
,
rpc_action
action
,
rpc_action
timer
);
void
rpc_wake_up_task
(
struct
rpc_task
*
);
void
rpc_wake_up_queued_task
(
struct
rpc_wait_queue
*
,
struct
rpc_task
*
);
void
rpc_wake_up
(
struct
rpc_wait_queue
*
);
...
...
net/sunrpc/clnt.c
浏览文件 @
fda13939
...
...
@@ -1066,7 +1066,7 @@ call_transmit(struct rpc_task *task)
if
(
task
->
tk_msg
.
rpc_proc
->
p_decode
!=
NULL
)
return
;
task
->
tk_action
=
rpc_exit_task
;
rpc_wake_up_
task
(
task
);
rpc_wake_up_
queued_task
(
&
task
->
tk_xprt
->
pending
,
task
);
}
/*
...
...
net/sunrpc/sched.c
浏览文件 @
fda13939
...
...
@@ -417,11 +417,10 @@ EXPORT_SYMBOL_GPL(rpc_wake_up_queued_task);
/*
* Wake up the specified task
*/
void
rpc_wake_up_task
(
struct
rpc_task
*
task
)
static
void
rpc_wake_up_task
(
struct
rpc_task
*
task
)
{
rpc_wake_up_queued_task
(
task
->
tk_waitqueue
,
task
);
}
EXPORT_SYMBOL_GPL
(
rpc_wake_up_task
);
/*
* Wake up the next task on a priority queue.
...
...
net/sunrpc/xprt.c
浏览文件 @
fda13939
...
...
@@ -472,7 +472,7 @@ void xprt_write_space(struct rpc_xprt *xprt)
if
(
xprt
->
snd_task
)
{
dprintk
(
"RPC: write space: waking waiting task on "
"xprt %p
\n
"
,
xprt
);
rpc_wake_up_
task
(
xprt
->
snd_task
);
rpc_wake_up_
queued_task
(
&
xprt
->
pending
,
xprt
->
snd_task
);
}
spin_unlock_bh
(
&
xprt
->
transport_lock
);
}
...
...
@@ -602,8 +602,7 @@ void xprt_force_disconnect(struct rpc_xprt *xprt)
/* Try to schedule an autoclose RPC call */
if
(
test_and_set_bit
(
XPRT_LOCKED
,
&
xprt
->
state
)
==
0
)
queue_work
(
rpciod_workqueue
,
&
xprt
->
task_cleanup
);
else
if
(
xprt
->
snd_task
!=
NULL
)
rpc_wake_up_task
(
xprt
->
snd_task
);
xprt_wake_pending_tasks
(
xprt
,
-
ENOTCONN
);
spin_unlock_bh
(
&
xprt
->
transport_lock
);
}
EXPORT_SYMBOL_GPL
(
xprt_force_disconnect
);
...
...
@@ -749,18 +748,19 @@ EXPORT_SYMBOL_GPL(xprt_update_rtt);
void
xprt_complete_rqst
(
struct
rpc_task
*
task
,
int
copied
)
{
struct
rpc_rqst
*
req
=
task
->
tk_rqstp
;
struct
rpc_xprt
*
xprt
=
req
->
rq_xprt
;
dprintk
(
"RPC: %5u xid %08x complete (%d bytes received)
\n
"
,
task
->
tk_pid
,
ntohl
(
req
->
rq_xid
),
copied
);
task
->
tk_
xprt
->
stat
.
recvs
++
;
xprt
->
stat
.
recvs
++
;
task
->
tk_rtt
=
(
long
)
jiffies
-
req
->
rq_xtime
;
list_del_init
(
&
req
->
rq_list
);
/* Ensure all writes are done before we update req->rq_received */
smp_wmb
();
req
->
rq_received
=
req
->
rq_private_buf
.
len
=
copied
;
rpc_wake_up_
task
(
task
);
rpc_wake_up_
queued_task
(
&
xprt
->
pending
,
task
);
}
EXPORT_SYMBOL_GPL
(
xprt_complete_rqst
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录