Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
ea5af87d
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看板
提交
ea5af87d
编写于
5月 24, 2022
作者:
J
Jens Axboe
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
io_uring: convert rsrc_update to io_cmd_type
Signed-off-by:
N
Jens Axboe
<
axboe@kernel.dk
>
上级
c1ee5595
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
19 addition
and
16 deletion
+19
-16
io_uring/io_uring.c
io_uring/io_uring.c
+19
-16
未找到文件。
io_uring/io_uring.c
浏览文件 @
ea5af87d
...
...
@@ -979,7 +979,6 @@ struct io_kiocb {
*/
struct
file
*
file
;
struct
io_cmd_data
cmd
;
struct
io_rsrc_update
rsrc_update
;
struct
io_xattr
xattr
;
struct
io_uring_cmd
uring_cmd
;
};
...
...
@@ -7800,23 +7799,26 @@ static int io_async_cancel(struct io_kiocb *req, unsigned int issue_flags)
static
int
io_files_update_prep
(
struct
io_kiocb
*
req
,
const
struct
io_uring_sqe
*
sqe
)
{
struct
io_rsrc_update
*
up
=
io_kiocb_to_cmd
(
req
);
if
(
unlikely
(
req
->
flags
&
(
REQ_F_FIXED_FILE
|
REQ_F_BUFFER_SELECT
)))
return
-
EINVAL
;
if
(
sqe
->
rw_flags
||
sqe
->
splice_fd_in
)
return
-
EINVAL
;
req
->
rsrc_update
.
offset
=
READ_ONCE
(
sqe
->
off
);
req
->
rsrc_update
.
nr_args
=
READ_ONCE
(
sqe
->
len
);
if
(
!
req
->
rsrc_update
.
nr_args
)
up
->
offset
=
READ_ONCE
(
sqe
->
off
);
up
->
nr_args
=
READ_ONCE
(
sqe
->
len
);
if
(
!
up
->
nr_args
)
return
-
EINVAL
;
req
->
rsrc_update
.
arg
=
READ_ONCE
(
sqe
->
addr
);
up
->
arg
=
READ_ONCE
(
sqe
->
addr
);
return
0
;
}
static
int
io_files_update_with_index_alloc
(
struct
io_kiocb
*
req
,
unsigned
int
issue_flags
)
{
__s32
__user
*
fds
=
u64_to_user_ptr
(
req
->
rsrc_update
.
arg
);
struct
io_rsrc_update
*
up
=
io_kiocb_to_cmd
(
req
);
__s32
__user
*
fds
=
u64_to_user_ptr
(
up
->
arg
);
unsigned
int
done
;
struct
file
*
file
;
int
ret
,
fd
;
...
...
@@ -7824,7 +7826,7 @@ static int io_files_update_with_index_alloc(struct io_kiocb *req,
if
(
!
req
->
ctx
->
file_data
)
return
-
ENXIO
;
for
(
done
=
0
;
done
<
req
->
rsrc_update
.
nr_args
;
done
++
)
{
for
(
done
=
0
;
done
<
up
->
nr_args
;
done
++
)
{
if
(
copy_from_user
(
&
fd
,
&
fds
[
done
],
sizeof
(
fd
)))
{
ret
=
-
EFAULT
;
break
;
...
...
@@ -7853,23 +7855,24 @@ static int io_files_update_with_index_alloc(struct io_kiocb *req,
static
int
io_files_update
(
struct
io_kiocb
*
req
,
unsigned
int
issue_flags
)
{
struct
io_rsrc_update
*
up
=
io_kiocb_to_cmd
(
req
);
struct
io_ring_ctx
*
ctx
=
req
->
ctx
;
struct
io_uring_rsrc_update2
up
;
struct
io_uring_rsrc_update2
up
2
;
int
ret
;
up
.
offset
=
req
->
rsrc_update
.
offset
;
up
.
data
=
req
->
rsrc_update
.
arg
;
up
.
nr
=
0
;
up
.
tags
=
0
;
up
.
resv
=
0
;
up
.
resv2
=
0
;
up
2
.
offset
=
up
->
offset
;
up
2
.
data
=
up
->
arg
;
up
2
.
nr
=
0
;
up
2
.
tags
=
0
;
up
2
.
resv
=
0
;
up
2
.
resv2
=
0
;
if
(
req
->
rsrc_update
.
offset
==
IORING_FILE_INDEX_ALLOC
)
{
if
(
up
->
offset
==
IORING_FILE_INDEX_ALLOC
)
{
ret
=
io_files_update_with_index_alloc
(
req
,
issue_flags
);
}
else
{
io_ring_submit_lock
(
ctx
,
issue_flags
);
ret
=
__io_register_rsrc_update
(
ctx
,
IORING_RSRC_FILE
,
&
up
,
req
->
rsrc_update
.
nr_args
);
&
up2
,
up
->
nr_args
);
io_ring_submit_unlock
(
ctx
,
issue_flags
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录