Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
ce5624f7
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看板
提交
ce5624f7
编写于
6月 07, 2018
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFSv4: Return NFS4ERR_DELAY when a layout recall fails due to igrab()
Signed-off-by:
N
Trond Myklebust
<
trond.myklebust@hammerspace.com
>
上级
6c342655
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
12 deletion
+14
-12
fs/nfs/callback_proc.c
fs/nfs/callback_proc.c
+14
-12
未找到文件。
fs/nfs/callback_proc.c
浏览文件 @
ce5624f7
...
...
@@ -128,7 +128,6 @@ static struct inode *nfs_layout_find_inode_by_stateid(struct nfs_client *clp,
struct
inode
*
inode
;
struct
pnfs_layout_hdr
*
lo
;
restart:
list_for_each_entry_rcu
(
server
,
&
clp
->
cl_superblocks
,
client_link
)
{
list_for_each_entry
(
lo
,
&
server
->
layouts
,
plh_layouts
)
{
if
(
stateid
!=
NULL
&&
...
...
@@ -136,20 +135,20 @@ static struct inode *nfs_layout_find_inode_by_stateid(struct nfs_client *clp,
continue
;
inode
=
igrab
(
lo
->
plh_inode
);
if
(
!
inode
)
continue
;
return
ERR_PTR
(
-
EAGAIN
)
;
if
(
!
nfs_sb_active
(
inode
->
i_sb
))
{
rcu_read_unlock
();
spin_unlock
(
&
clp
->
cl_lock
);
iput
(
inode
);
spin_lock
(
&
clp
->
cl_lock
);
rcu_read_lock
();
goto
restart
;
return
ERR_PTR
(
-
EAGAIN
)
;
}
return
inode
;
}
}
return
NULL
;
return
ERR_PTR
(
-
ENOENT
)
;
}
/*
...
...
@@ -166,7 +165,6 @@ static struct inode *nfs_layout_find_inode_by_fh(struct nfs_client *clp,
struct
inode
*
inode
;
struct
pnfs_layout_hdr
*
lo
;
restart:
list_for_each_entry_rcu
(
server
,
&
clp
->
cl_superblocks
,
client_link
)
{
list_for_each_entry
(
lo
,
&
server
->
layouts
,
plh_layouts
)
{
nfsi
=
NFS_I
(
lo
->
plh_inode
);
...
...
@@ -176,20 +174,20 @@ static struct inode *nfs_layout_find_inode_by_fh(struct nfs_client *clp,
continue
;
inode
=
igrab
(
lo
->
plh_inode
);
if
(
!
inode
)
continue
;
return
ERR_PTR
(
-
EAGAIN
)
;
if
(
!
nfs_sb_active
(
inode
->
i_sb
))
{
rcu_read_unlock
();
spin_unlock
(
&
clp
->
cl_lock
);
iput
(
inode
);
spin_lock
(
&
clp
->
cl_lock
);
rcu_read_lock
();
goto
restart
;
return
ERR_PTR
(
-
EAGAIN
)
;
}
return
inode
;
}
}
return
NULL
;
return
ERR_PTR
(
-
ENOENT
)
;
}
static
struct
inode
*
nfs_layout_find_inode
(
struct
nfs_client
*
clp
,
...
...
@@ -201,7 +199,7 @@ static struct inode *nfs_layout_find_inode(struct nfs_client *clp,
spin_lock
(
&
clp
->
cl_lock
);
rcu_read_lock
();
inode
=
nfs_layout_find_inode_by_stateid
(
clp
,
stateid
);
if
(
!
inode
)
if
(
inode
==
ERR_PTR
(
-
ENOENT
)
)
inode
=
nfs_layout_find_inode_by_fh
(
clp
,
fh
);
rcu_read_unlock
();
spin_unlock
(
&
clp
->
cl_lock
);
...
...
@@ -256,8 +254,11 @@ static u32 initiate_file_draining(struct nfs_client *clp,
LIST_HEAD
(
free_me_list
);
ino
=
nfs_layout_find_inode
(
clp
,
&
args
->
cbl_fh
,
&
args
->
cbl_stateid
);
if
(
!
ino
)
goto
out
;
if
(
IS_ERR
(
ino
))
{
if
(
ino
==
ERR_PTR
(
-
EAGAIN
))
rv
=
NFS4ERR_DELAY
;
goto
out_noput
;
}
pnfs_layoutcommit_inode
(
ino
,
false
);
...
...
@@ -303,9 +304,10 @@ static u32 initiate_file_draining(struct nfs_client *clp,
nfs_commit_inode
(
ino
,
0
);
pnfs_put_layout_hdr
(
lo
);
out:
nfs_iput_and_deactive
(
ino
);
out_noput:
trace_nfs4_cb_layoutrecall_file
(
clp
,
&
args
->
cbl_fh
,
ino
,
&
args
->
cbl_stateid
,
-
rv
);
nfs_iput_and_deactive
(
ino
);
return
rv
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录