lkml.org 
[lkml]   [2020]   [Feb]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH v2 3/3] io_uring: add splice(2) support
From
Date
On 2/17/2020 6:18 PM, Stefan Metzmacher wrote:
> Hi Pavel,
>
>> +static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
>> +{
>> + struct io_splice* sp = &req->splice;
>> + unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
>> + int ret;
>> +
>> + if (req->flags & REQ_F_NEED_CLEANUP)
>> + return 0;
>> +
>> + sp->file_in = NULL;
>> + sp->off_in = READ_ONCE(sqe->off_in);
>> + sp->off_out = READ_ONCE(sqe->off);
>> + sp->len = READ_ONCE(sqe->len);
>> + sp->flags = READ_ONCE(sqe->splice_flags);
>> +
>> + if (unlikely(READ_ONCE(sqe->ioprio) || (sp->flags & ~valid_flags)))
>> + return -EINVAL;
>
> Why is ioprio not supported?

Because there is no way to set it without changing much of splice code.
It may be added later

BTW, it seems, only opcodes cares about ioprio are read*/write*.
recv*() and send*() don't reject it, but never use.

--
Pavel Begunkov

\
 
 \ /
  Last update: 2020-02-17 16:43    [W:0.134 / U:0.116 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site