Re: [LSF/MM/BPF TOPIC] Improving iov_iter - and replacing scatterlists

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 1/17/25 4:16 PM, David Howells wrote:
> Hi,
> 
> I'd like to propose a discussion of two things: firstly, how might we improve
> iov_iter and, secondly, would it be possible to replace scatterlists.
> 
> [*] First: Improvements to iov_iter.
> 
> I'm trying to get rid of ITER_XARRAY; xarrays are too unstable (in the sense
> that their contents can shift under you).
> 
> I'm trying to replace that with ITER_FOLIOQ instead.  This is a segmented list
> of folios - so it can only hold folios, but has infinite capacity.  How easy
> would it be to extend this to be able to handle some other types of page, such
> as anon pages or stuff that's been spliced out of network receive buffers?
> 
> Would it make sense to be able to have a chain of disparate types of object?
> Say a couple of kmalloc'd buffers, followed by a number of folios, followed by
> another kmalloc'd buffer and mark them such we know which ones can be DMA'd
> and which ones must be copied.
> 
> Currently, the core iteration functions in linux/iov_iter.h each handle a
> specific type of iterable.  I wonder how much performance difference it would
> make to have each item in a list have its own type.  Now, I know, "try it and
> see" is a valid suggestion here.
> 
> Rumour has it that John Hubbard may be working along similar lines, possibly
> just in the area of bio_vecs and ITER_BVEC.
> 
> 
> [*] Second: Can we replace the uses of scatterlist with iov_iter and reduce
> the number of iterator classes we have?
> 
> One reason I'd like to do this is we have iov_iter at user end of the I/O
> stack, and it percolates down to various depths.  For network filesystems, for
> example, the socket API takes iov_iters, so we want to plumb iov_iters all the
> way down if we can - and have the filesystem know at little as possible about
> folios and pages if we can manage it.
> 
> However, one thing that particularly stands out for me is that network
> filesystems often want to use the crypto API - and that means allocating and
> constructing a scatterlist to talk to the crypto API.  Having spent some time
> looking at crypto API, in most places iteration functions are used that mean
> that changing to use an iov_iter might not be so hard.
> 
> That said, one thing that is made use of occasionally with scatterlists is the
> ability to chain something on the front.  That's significantly harder to do
> with iov_iter.
> 
> That that said, one reason it's hard to modify the list attached to an
> iterator is that we allow iterators to be rewound, using state stored in the
> list to go backwards.  I wonder if it might be possible to get rid of
> iov_iter_revert() and use iterator copying instead.

I don't have much to add other than that I am keenly interested in this
area.

The RPC client and server implementations are using bvecs and page
arrays for now. It would be more efficient if these consumers could
move folios from network to file system and back rather than splitting
them into individual pages, and use proper iterators to keep things
straightforward.

It would help us grow the maximum NFS rsize and wsize if we weren't
nailed to arrays of page-sized chunks of data.


-- 
Chuck Lever




[Index of Archives]     [Kernel]     [Gnu Classpath]     [Gnu Crypto]     [DM Crypt]     [Netfilter]     [Bugtraq]
  Powered by Linux