Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
fe650407
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
6
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
fe650407
编写于
1月 03, 2006
作者:
T
Trond Myklebust
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
NFSv4: Make DELEGRETURN an interruptible operation.
Signed-off-by:
N
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
上级
a5d16a4d
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
60 addition
and
8 deletion
+60
-8
fs/nfs/nfs4proc.c
fs/nfs/nfs4proc.c
+60
-8
未找到文件。
fs/nfs/nfs4proc.c
浏览文件 @
fe650407
...
...
@@ -2885,19 +2885,71 @@ nfs4_proc_setclientid_confirm(struct nfs4_client *clp)
return
status
;
}
static
int
_nfs4_proc_delegreturn
(
struct
inode
*
inode
,
struct
rpc_cred
*
cred
,
const
nfs4_stateid
*
stateid
)
struct
nfs4_delegreturndata
{
struct
nfs4_delegreturnargs
args
;
struct
nfs_fh
fh
;
nfs4_stateid
stateid
;
struct
rpc_cred
*
cred
;
int
rpc_status
;
};
static
void
nfs4_delegreturn_prepare
(
struct
rpc_task
*
task
,
void
*
calldata
)
{
struct
nfs4_delegreturnargs
args
=
{
.
fhandle
=
NFS_FH
(
inode
),
.
stateid
=
stateid
,
};
struct
nfs4_delegreturndata
*
data
=
calldata
;
struct
rpc_message
msg
=
{
.
rpc_proc
=
&
nfs4_procedures
[
NFSPROC4_CLNT_DELEGRETURN
],
.
rpc_argp
=
&
args
,
.
rpc_cred
=
cred
,
.
rpc_argp
=
&
data
->
args
,
.
rpc_cred
=
data
->
cred
,
};
rpc_call_setup
(
task
,
&
msg
,
0
);
}
return
rpc_call_sync
(
NFS_CLIENT
(
inode
),
&
msg
,
0
);
static
void
nfs4_delegreturn_done
(
struct
rpc_task
*
task
,
void
*
calldata
)
{
struct
nfs4_delegreturndata
*
data
=
calldata
;
data
->
rpc_status
=
task
->
tk_status
;
}
static
void
nfs4_delegreturn_release
(
void
*
calldata
)
{
struct
nfs4_delegreturndata
*
data
=
calldata
;
put_rpccred
(
data
->
cred
);
kfree
(
calldata
);
}
const
static
struct
rpc_call_ops
nfs4_delegreturn_ops
=
{
.
rpc_call_prepare
=
nfs4_delegreturn_prepare
,
.
rpc_call_done
=
nfs4_delegreturn_done
,
.
rpc_release
=
nfs4_delegreturn_release
,
};
static
int
_nfs4_proc_delegreturn
(
struct
inode
*
inode
,
struct
rpc_cred
*
cred
,
const
nfs4_stateid
*
stateid
)
{
struct
nfs4_delegreturndata
*
data
;
struct
rpc_task
*
task
;
int
status
;
data
=
kmalloc
(
sizeof
(
*
data
),
GFP_KERNEL
);
if
(
data
==
NULL
)
return
-
ENOMEM
;
data
->
args
.
fhandle
=
&
data
->
fh
;
data
->
args
.
stateid
=
&
data
->
stateid
;
nfs_copy_fh
(
&
data
->
fh
,
NFS_FH
(
inode
));
memcpy
(
&
data
->
stateid
,
stateid
,
sizeof
(
data
->
stateid
));
data
->
cred
=
get_rpccred
(
cred
);
data
->
rpc_status
=
0
;
task
=
rpc_run_task
(
NFS_CLIENT
(
inode
),
RPC_TASK_ASYNC
,
&
nfs4_delegreturn_ops
,
data
);
if
(
IS_ERR
(
task
))
{
nfs4_delegreturn_release
(
data
);
return
PTR_ERR
(
task
);
}
status
=
nfs4_wait_for_completion_rpc_task
(
task
);
if
(
status
==
0
)
status
=
data
->
rpc_status
;
rpc_release_task
(
task
);
return
status
;
}
int
nfs4_proc_delegreturn
(
struct
inode
*
inode
,
struct
rpc_cred
*
cred
,
const
nfs4_stateid
*
stateid
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录