Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
a2118c33
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看板
提交
a2118c33
编写于
6月 16, 2010
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFSv41: Don't store session state in the nfs_client->cl_state
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
df896455
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
10 addition
and
5 deletion
+10
-5
fs/nfs/nfs4_fs.h
fs/nfs/nfs4_fs.h
+4
-1
fs/nfs/nfs4proc.c
fs/nfs/nfs4proc.c
+2
-2
fs/nfs/nfs4state.c
fs/nfs/nfs4state.c
+4
-2
未找到文件。
fs/nfs/nfs4_fs.h
浏览文件 @
a2118c33
...
...
@@ -45,10 +45,13 @@ enum nfs4_client_state {
NFS4CLNT_RECLAIM_NOGRACE
,
NFS4CLNT_DELEGRETURN
,
NFS4CLNT_SESSION_RESET
,
NFS4CLNT_SESSION_DRAINING
,
NFS4CLNT_RECALL_SLOT
,
};
enum
nfs4_session_state
{
NFS4_SESSION_DRAINING
,
};
/*
* struct rpc_sequence ensures that RPC calls are sent in the exact
* order that they appear on the list.
...
...
fs/nfs/nfs4proc.c
浏览文件 @
a2118c33
...
...
@@ -356,7 +356,7 @@ static void nfs41_check_drain_session_complete(struct nfs4_session *ses)
{
struct
rpc_task
*
task
;
if
(
!
test_bit
(
NFS4
CLNT_SESSION_DRAINING
,
&
ses
->
clp
->
cl
_state
))
{
if
(
!
test_bit
(
NFS4
_SESSION_DRAINING
,
&
ses
->
session
_state
))
{
task
=
rpc_wake_up_next
(
&
ses
->
fc_slot_table
.
slot_tbl_waitq
);
if
(
task
)
rpc_task_set_priority
(
task
,
RPC_PRIORITY_PRIVILEGED
);
...
...
@@ -489,7 +489,7 @@ static int nfs41_setup_sequence(struct nfs4_session *session,
tbl
=
&
session
->
fc_slot_table
;
spin_lock
(
&
tbl
->
slot_tbl_lock
);
if
(
test_bit
(
NFS4
CLNT_SESSION_DRAINING
,
&
session
->
clp
->
cl
_state
)
&&
if
(
test_bit
(
NFS4
_SESSION_DRAINING
,
&
session
->
session
_state
)
&&
!
rpc_task_has_priority
(
task
,
RPC_PRIORITY_PRIVILEGED
))
{
/*
* The state manager will wait until the slot table is empty.
...
...
fs/nfs/nfs4state.c
浏览文件 @
a2118c33
...
...
@@ -145,7 +145,9 @@ static void nfs4_end_drain_session(struct nfs_client *clp)
struct
nfs4_session
*
ses
=
clp
->
cl_session
;
int
max_slots
;
if
(
test_and_clear_bit
(
NFS4CLNT_SESSION_DRAINING
,
&
clp
->
cl_state
))
{
if
(
ses
==
NULL
)
return
;
if
(
test_and_clear_bit
(
NFS4_SESSION_DRAINING
,
&
ses
->
session_state
))
{
spin_lock
(
&
ses
->
fc_slot_table
.
slot_tbl_lock
);
max_slots
=
ses
->
fc_slot_table
.
max_slots
;
while
(
max_slots
--
)
{
...
...
@@ -167,7 +169,7 @@ static int nfs4_begin_drain_session(struct nfs_client *clp)
struct
nfs4_slot_table
*
tbl
=
&
ses
->
fc_slot_table
;
spin_lock
(
&
tbl
->
slot_tbl_lock
);
set_bit
(
NFS4
CLNT_SESSION_DRAINING
,
&
clp
->
cl
_state
);
set_bit
(
NFS4
_SESSION_DRAINING
,
&
ses
->
session
_state
);
if
(
tbl
->
highest_used_slotid
!=
-
1
)
{
INIT_COMPLETION
(
ses
->
complete
);
spin_unlock
(
&
tbl
->
slot_tbl_lock
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录