public inbox for [email protected]
 help / color / mirror / Atom feed
From: Pavel Begunkov <[email protected]>
To: Xiaoguang Wang <[email protected]>,
	[email protected]
Cc: [email protected]
Subject: Re: [RFC 1/1] io_uring: improve register file feature's usability
Date: Tue, 12 Oct 2021 15:33:48 +0100	[thread overview]
Message-ID: <[email protected]> (raw)
In-Reply-To: <[email protected]>

On 10/12/21 14:11, Xiaoguang Wang wrote:
>> On 10/12/21 09:48, Xiaoguang Wang wrote:
>>> The idea behind register file feature is good and straightforward, but
>>> there is a very big issue that it's hard to use for user apps. User apps
>>> need to bind slot info to file descriptor. For example, user app wants
>>> to register a file, then it first needs to find a free slot in register
>>> file infrastructure, that means user app needs to maintain slot info in
>>> userspace, which is a obvious burden for userspace developers.
>>
>> Slot allocation is specifically entirely given away to the userspace,
>> the userspace has more info and can use it more efficiently, e.g.
>> if there is only a small managed set of registered files they can
>> always have O(1) slot "lookup", and a couple of more use cases.
> 
> Can you explain more what is slot "lookup", thanks. For me, it seems that

I referred to nothing particular, just a way userspace finds a new index,
can be round robin or "index==fd".

> use fd as slot is the simplest and most efficient way, user does not need to> mange slot info at all in userspace.

As mentioned, it should be slightly more efficient to have a small table,
cache misses. Also, it's allocated with kvcalloc() so if it can't be
allocate physically contig memory it will set up virtual memory.

So, if the userspace has some other way of indexing files, small tables
are preferred. For instance if it operates with 1-2 files, or stores files
in an array and the index in the array may serve the purpose, or any other
way. Also, additional memory for those who care.

>> If userspace wants to mimic a fdtable into io_uring's registered table,
>> it's possible to do as is and without extra fdtable tracking
>>
>> fd = open();
>> io_uring_update_slot(off=fd, fd=fd);
> 
> No, currently it's hard to do above work, unless we register a big number of files initially.

If they intend to use a big number of files that's the way to go. They
can unregister/register if needed, usual grow factor=2  should make
it workable.

We may consider fast growing as a separate feature if really needed,
either as you did it, or even better doing it explicitly and separately
from updates.


> Say we call IORING_REGISTER_FILES to register 1000 files initially, then the io_uring
> 
> io_file_table only supports 1000 files, fd which is greater than 1000 will be not able to
> 
> be registered.
> 
> For safety,  you may need to register the number of getrlimit(RLIMIT_NOFILE) initially,
> 
> but it also may fail, user may change RLIMIT_NOFILE too. This is why I introduce a
> 
> io_uring io_file_table resize feature, but I agree this method may waste memory, for
> 
> example, user app only wants one file registered, but this file's fd is very large.

That's fine as long as it's optional

-- 
Pavel Begunkov

  reply	other threads:[~2021-10-12 14:34 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-12  8:48 [RFC 0/1] Is register file feature hard to use ? Xiaoguang Wang
2021-10-12  8:48 ` [RFC 1/1] io_uring: improve register file feature's usability Xiaoguang Wang
2021-10-12 11:10   ` Pavel Begunkov
2021-10-12 13:11     ` Xiaoguang Wang
2021-10-12 14:33       ` Pavel Begunkov [this message]
2021-10-13  3:32         ` Xiaoguang Wang
2021-10-14  9:43           ` Pavel Begunkov
2021-10-21  8:40             ` Xiaoguang Wang
2021-10-25  9:43               ` Pavel Begunkov

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 \
    [email protected] \
    [email protected] \
    [email protected] \
    [email protected] \
    [email protected] \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox