Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
8a19a0b6
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
8a19a0b6
编写于
9月 24, 2013
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
SUNRPC: Add RPC task and client level options to disable the resend timeout
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
90051ea7
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
19 addition
and
4 deletion
+19
-4
include/linux/sunrpc/clnt.h
include/linux/sunrpc/clnt.h
+2
-0
include/linux/sunrpc/sched.h
include/linux/sunrpc/sched.h
+1
-0
net/sunrpc/clnt.c
net/sunrpc/clnt.c
+4
-1
net/sunrpc/xprt.c
net/sunrpc/xprt.c
+12
-3
未找到文件。
include/linux/sunrpc/clnt.h
浏览文件 @
8a19a0b6
...
@@ -49,6 +49,7 @@ struct rpc_clnt {
...
@@ -49,6 +49,7 @@ struct rpc_clnt {
unsigned
int
cl_softrtry
:
1
,
/* soft timeouts */
unsigned
int
cl_softrtry
:
1
,
/* soft timeouts */
cl_discrtry
:
1
,
/* disconnect before retry */
cl_discrtry
:
1
,
/* disconnect before retry */
cl_noretranstimeo:
1
,
/* No retransmit timeouts */
cl_autobind
:
1
,
/* use getport() */
cl_autobind
:
1
,
/* use getport() */
cl_chatty
:
1
;
/* be verbose */
cl_chatty
:
1
;
/* be verbose */
...
@@ -126,6 +127,7 @@ struct rpc_create_args {
...
@@ -126,6 +127,7 @@ struct rpc_create_args {
#define RPC_CLNT_CREATE_QUIET (1UL << 6)
#define RPC_CLNT_CREATE_QUIET (1UL << 6)
#define RPC_CLNT_CREATE_INFINITE_SLOTS (1UL << 7)
#define RPC_CLNT_CREATE_INFINITE_SLOTS (1UL << 7)
#define RPC_CLNT_CREATE_NO_IDLE_TIMEOUT (1UL << 8)
#define RPC_CLNT_CREATE_NO_IDLE_TIMEOUT (1UL << 8)
#define RPC_CLNT_CREATE_NO_RETRANS_TIMEOUT (1UL << 9)
struct
rpc_clnt
*
rpc_create
(
struct
rpc_create_args
*
args
);
struct
rpc_clnt
*
rpc_create
(
struct
rpc_create_args
*
args
);
struct
rpc_clnt
*
rpc_bind_new_program
(
struct
rpc_clnt
*
,
struct
rpc_clnt
*
rpc_bind_new_program
(
struct
rpc_clnt
*
,
...
...
include/linux/sunrpc/sched.h
浏览文件 @
8a19a0b6
...
@@ -122,6 +122,7 @@ struct rpc_task_setup {
...
@@ -122,6 +122,7 @@ struct rpc_task_setup {
#define RPC_TASK_SENT 0x0800
/* message was sent */
#define RPC_TASK_SENT 0x0800
/* message was sent */
#define RPC_TASK_TIMEOUT 0x1000
/* fail with ETIMEDOUT on timeout */
#define RPC_TASK_TIMEOUT 0x1000
/* fail with ETIMEDOUT on timeout */
#define RPC_TASK_NOCONNECT 0x2000
/* return ENOTCONN if not connected */
#define RPC_TASK_NOCONNECT 0x2000
/* return ENOTCONN if not connected */
#define RPC_TASK_NO_RETRANS_TIMEOUT 0x4000
/* wait forever for a reply */
#define RPC_IS_ASYNC(t) ((t)->tk_flags & RPC_TASK_ASYNC)
#define RPC_IS_ASYNC(t) ((t)->tk_flags & RPC_TASK_ASYNC)
#define RPC_IS_SWAPPER(t) ((t)->tk_flags & RPC_TASK_SWAPPER)
#define RPC_IS_SWAPPER(t) ((t)->tk_flags & RPC_TASK_SWAPPER)
...
...
net/sunrpc/clnt.c
浏览文件 @
8a19a0b6
...
@@ -772,6 +772,8 @@ void rpc_task_set_client(struct rpc_task *task, struct rpc_clnt *clnt)
...
@@ -772,6 +772,8 @@ void rpc_task_set_client(struct rpc_task *task, struct rpc_clnt *clnt)
atomic_inc
(
&
clnt
->
cl_count
);
atomic_inc
(
&
clnt
->
cl_count
);
if
(
clnt
->
cl_softrtry
)
if
(
clnt
->
cl_softrtry
)
task
->
tk_flags
|=
RPC_TASK_SOFT
;
task
->
tk_flags
|=
RPC_TASK_SOFT
;
if
(
clnt
->
cl_noretranstimeo
)
task
->
tk_flags
|=
RPC_TASK_NO_RETRANS_TIMEOUT
;
if
(
sk_memalloc_socks
())
{
if
(
sk_memalloc_socks
())
{
struct
rpc_xprt
*
xprt
;
struct
rpc_xprt
*
xprt
;
...
@@ -1898,7 +1900,8 @@ call_status(struct rpc_task *task)
...
@@ -1898,7 +1900,8 @@ call_status(struct rpc_task *task)
rpc_delay
(
task
,
3
*
HZ
);
rpc_delay
(
task
,
3
*
HZ
);
case
-
ETIMEDOUT
:
case
-
ETIMEDOUT
:
task
->
tk_action
=
call_timeout
;
task
->
tk_action
=
call_timeout
;
if
(
task
->
tk_client
->
cl_discrtry
)
if
(
!
(
task
->
tk_flags
&
RPC_TASK_NO_RETRANS_TIMEOUT
)
&&
task
->
tk_client
->
cl_discrtry
)
xprt_conditional_disconnect
(
req
->
rq_xprt
,
xprt_conditional_disconnect
(
req
->
rq_xprt
,
req
->
rq_connect_cookie
);
req
->
rq_connect_cookie
);
break
;
break
;
...
...
net/sunrpc/xprt.c
浏览文件 @
8a19a0b6
...
@@ -873,9 +873,18 @@ bool xprt_prepare_transmit(struct rpc_task *task)
...
@@ -873,9 +873,18 @@ bool xprt_prepare_transmit(struct rpc_task *task)
dprintk
(
"RPC: %5u xprt_prepare_transmit
\n
"
,
task
->
tk_pid
);
dprintk
(
"RPC: %5u xprt_prepare_transmit
\n
"
,
task
->
tk_pid
);
spin_lock_bh
(
&
xprt
->
transport_lock
);
spin_lock_bh
(
&
xprt
->
transport_lock
);
if
(
req
->
rq_reply_bytes_recvd
&&
!
req
->
rq_bytes_sent
)
{
if
(
!
req
->
rq_bytes_sent
)
{
task
->
tk_status
=
req
->
rq_reply_bytes_recvd
;
if
(
req
->
rq_reply_bytes_recvd
)
{
goto
out_unlock
;
task
->
tk_status
=
req
->
rq_reply_bytes_recvd
;
goto
out_unlock
;
}
if
((
task
->
tk_flags
&
RPC_TASK_NO_RETRANS_TIMEOUT
)
&&
xprt_connected
(
xprt
)
&&
req
->
rq_connect_cookie
==
xprt
->
connect_cookie
)
{
xprt
->
ops
->
set_retrans_timeout
(
task
);
rpc_sleep_on
(
&
xprt
->
pending
,
task
,
xprt_timer
);
goto
out_unlock
;
}
}
}
if
(
!
xprt
->
ops
->
reserve_xprt
(
xprt
,
task
))
{
if
(
!
xprt
->
ops
->
reserve_xprt
(
xprt
,
task
))
{
task
->
tk_status
=
-
EAGAIN
;
task
->
tk_status
=
-
EAGAIN
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录