All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hao Xu <haoxu.linux@gmail.com>
To: Jens Axboe <axboe@kernel.dk>, io-uring@vger.kernel.org
Cc: asml.silence@gmail.com
Subject: Re: [PATCH 3/6] io_uring: allow allocated fixed files for openat/openat2
Date: Fri, 13 May 2022 13:28:58 +0800	[thread overview]
Message-ID: <ac6d7ee0-3bff-3f33-c492-d5861af2d277@gmail.com> (raw)
In-Reply-To: <bac35aa1-02ee-d241-2427-207a1931c444@kernel.dk>

在 2022/5/12 下午8:23, Jens Axboe 写道:
> On 5/12/22 2:21 AM, Hao Xu wrote:
>> ? 2022/5/9 ??11:50, Jens Axboe ??:
>>> If the application passes in IORING_FILE_INDEX_ALLOC as the file_slot,
>>> then that's a hint to allocate a fixed file descriptor rather than have
>>> one be passed in directly.
>>>
>>> This can be useful for having io_uring manage the direct descriptor space.
>>>
>>> Normal open direct requests will complete with 0 for success, and < 0
>>> in case of error. If io_uring is asked to allocated the direct descriptor,
>>> then the direct descriptor is returned in case of success.
>>>
>>> Signed-off-by: Jens Axboe <axboe@kernel.dk>
>>> ---
>>>    fs/io_uring.c                 | 32 +++++++++++++++++++++++++++++---
>>>    include/uapi/linux/io_uring.h |  9 +++++++++
>>>    2 files changed, 38 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/fs/io_uring.c b/fs/io_uring.c
>>> index 8c40411a7e78..ef999d0e09de 100644
>>> --- a/fs/io_uring.c
>>> +++ b/fs/io_uring.c
>>> @@ -4697,7 +4697,7 @@ static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
>>>        return __io_openat_prep(req, sqe);
>>>    }
>>>    -static int __maybe_unused io_file_bitmap_get(struct io_ring_ctx *ctx)
>>> +static int io_file_bitmap_get(struct io_ring_ctx *ctx)
>>>    {
>>>        struct io_file_table *table = &ctx->file_table;
>>>        unsigned long nr = ctx->nr_user_files;
>>> @@ -4722,6 +4722,32 @@ static int __maybe_unused io_file_bitmap_get(struct io_ring_ctx *ctx)
>>>        return -ENFILE;
>>>    }
>>>    +static int io_fixed_fd_install(struct io_kiocb *req, unsigned int issue_flags,
>>> +                   struct file *file, unsigned int file_slot)
>>> +{
>>> +    int alloc_slot = file_slot == IORING_FILE_INDEX_ALLOC;
>>> +    struct io_ring_ctx *ctx = req->ctx;
>>> +    int ret;
>>> +
>>> +    if (alloc_slot) {
>>> +        io_ring_submit_lock(ctx, issue_flags);
>>> +        file_slot = io_file_bitmap_get(ctx);
>>> +        if (unlikely(file_slot < 0)) {
>>> +            io_ring_submit_unlock(ctx, issue_flags);
>>> +            return file_slot;
>>> +        }
>>> +    }
>>
>> if (alloc_slot) {
>>   ...
>> } else {
>>          file_slot -= 1;
>> }
>>
>> Otherwise there is off-by-one error.
>>
>> Others looks good,
>>
>> Reviewed-by: Hao Xu <howeyxu@tencent.com>
> 
> Thanks, you are correct, I've folded that in.
> 

Hi Jens,
I've rebased multishot accept based on your fixed-alloc branch:

https://github.com/HowHsu/linux/commits/for-5.19/io_uring_multishot_accept_v6

Let me know when ixed-alloc is ready, then I'll do the final rebase
for multishot accept and send it to the list, including the liburing
change.

Thanks,
Hao


  reply	other threads:[~2022-05-13  5:28 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-09 15:50 [PATCHSET v2 0/6] Allow allocated direct descriptors Jens Axboe
2022-05-09 15:50 ` [PATCH 1/6] io_uring: track fixed files with a bitmap Jens Axboe
2022-05-09 15:50 ` [PATCH 2/6] io_uring: add basic fixed file allocator Jens Axboe
2022-05-09 15:50 ` [PATCH 3/6] io_uring: allow allocated fixed files for openat/openat2 Jens Axboe
2022-05-12  8:21   ` Hao Xu
2022-05-12 12:23     ` Jens Axboe
2022-05-13  5:28       ` Hao Xu [this message]
2022-05-13 12:25         ` Jens Axboe
2022-05-13 12:56           ` Jens Axboe
2022-05-13  4:38   ` Hao Xu
2022-05-13 12:28     ` Jens Axboe
2022-05-09 15:50 ` [PATCH 4/6] io_uring: allow allocated fixed files for accept Jens Axboe
2022-05-09 15:50 ` [PATCH 5/6] io_uring: bump max direct descriptor count to 1M Jens Axboe
2022-05-09 15:50 ` [PATCH 6/6] io_uring: add flag for allocating a fully sparse direct descriptor space Jens Axboe
2022-05-10  4:44   ` Hao Xu
2022-05-10 12:27     ` Jens Axboe
2022-05-13 10:56 ` [PATCHSET v2 0/6] Allow allocated direct descriptors Hao Xu
2022-06-09  8:57 ` Stefan Metzmacher
2022-06-10 11:06   ` Hao Xu
2022-06-10 11:28     ` Stefan Metzmacher
2022-06-10 13:04       ` Hao Xu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ac6d7ee0-3bff-3f33-c492-d5861af2d277@gmail.com \
    --to=haoxu.linux@gmail.com \
    --cc=asml.silence@gmail.com \
    --cc=axboe@kernel.dk \
    --cc=io-uring@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.