aboutsummaryrefslogtreecommitdiffstats
path: root/lib/iov_iter.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2022-08-08ITER_PIPE: clean iov_iter_revert()Al Viro1-46/+14
2022-08-08ITER_PIPE: clean pipe_advance() upAl Viro1-17/+17
2022-08-08ITER_PIPE: lose iter_head argument of __pipe_get_pages()Al Viro1-4/+3
2022-08-08ITER_PIPE: fold push_pipe() into __pipe_get_pages()Al Viro1-55/+25
2022-08-08ITER_PIPE: allocate buffers as we go in copy-to-pipe primitivesAl Viro1-73/+98
2022-08-08ITER_PIPE: helpers for adding pipe buffersAl Viro1-42/+46
2022-08-08ITER_PIPE: helper for getting pipe buffer by indexAl Viro1-6/+9
2022-08-08new iov_iter flavour - ITER_UBUFAl Viro1-18/+69
2022-08-03Merge tag 'pull-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsLinus Torvalds1-4/+11
2022-08-03Merge tag 'pull-work.iov_iter-base' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsLinus Torvalds1-231/+52
2022-07-06first_iovec_segment(): just return addressAl Viro1-7/+8
2022-07-06iov_iter: massage calling conventions for first_{iovec,bvec}_segment()Al Viro1-24/+18
2022-07-06iov_iter: first_{iovec,bvec}_segment() - simplify a bitAl Viro1-16/+16
2022-07-06iov_iter: lift dealing with maxpages out of first_{iovec,bvec}_segment()Al Viro1-10/+10
2022-07-06iov_iter_get_pages{,_alloc}(): cap the maxsize with MAX_RW_COUNTAl Viro1-0/+4
2022-07-06iov_iter_bvec_advance(): don't bother with bvec_iterAl Viro1-9/+14
2022-06-28fix short copy handling in copy_mc_pipe_to_iter()Al Viro1-4/+11
2022-06-28copy_page_{to,from}_iter(): switch iovec variants to genericAl Viro1-187/+4
2022-06-27iov: introduce iov_iter_alignedKeith Busch1-0/+92
2022-06-11iov_iter: fix build issue due to possible type mis-matchLinus Torvalds1-2/+2
2022-06-10iov_iter: Fix iter_xarray_get_pages{,_alloc}()David Howells1-16/+4
2022-02-21lib/iov_iter: initialize "flags" in new pipe_bufferMax Kellermann1-0/+2
2022-01-04iov_iter: Convert iter_xarray to use foliosMatthew Wilcox (Oracle)1-16/+14
2021-10-24iov_iter: Introduce nofault flag to disable page faultsAndreas Gruenbacher1-5/+15
2021-10-20iov_iter: Introduce fault_in_iov_iter_writeableAndreas Gruenbacher1-0/+39
2021-10-18iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readableAndreas Gruenbacher1-12/+21
2021-10-18gup: Turn fault_in_pages_{readable,writeable} into fault_in_{readable,writeable}Andreas Gruenbacher1-6/+4
2021-10-12iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return valueAndreas Gruenbacher1-2/+3
2021-09-14iov_iter: add helper to save iov_iter stateJens Axboe1-0/+36
2021-09-08lib/iov_iter.c: fix kernel-doc warningsRandy Dunlap1-2/+6
2021-07-04iov_iter: remove uaccess_kernel() warning from iov_iter_init()Linus Torvalds1-1/+0
2021-06-10csum_and_copy_to_pipe_iter(): leave handling of csum_state to callerAl Viro1-23/+18
2021-06-10clean up copy_mc_pipe_to_iter()Al Viro1-24/+9
2021-06-10pipe_zero(): we don't need no stinkin' kmap_atomic()...Al Viro1-1/+3
2021-06-10iov_iter: clean csum_and_copy_...() primitives up a bitAl Viro1-6/+4
2021-06-10copy_page_from_iter(): don't need kmap_atomic() for kvec/bvec casesAl Viro1-2/+2
2021-06-10copy_page_to_iter(): don't bother with kmap_atomic() for bvec/kvec casesAl Viro1-3/+3
2021-06-10iterate_xarray(): only of the first iteration we might get offset != 0Al Viro1-3/+3
2021-06-10pull handling of ->iov_offset into iterate_{iovec,bvec,xarray}Al Viro1-12/+14
2021-06-10iov_iter: make iterator callbacks use base and len instead of iovecAl Viro1-91/+91
2021-06-10iov_iter: make the amount already copied available to iterator callbacksAl Viro1-70/+50
2021-06-10iov_iter: get rid of separate bvec and xarray callbacksAl Viro1-82/+30
2021-06-10iov_iter: teach iterate_{bvec,xarray}() about possible short copiesAl Viro1-41/+24
2021-06-10iterate_bvec(): expand bvec.h macro forest, massage a bitAl Viro1-13/+20
2021-06-10iov_iter: unify iterate_iovec and iterate_kvecAl Viro1-23/+5
2021-06-10iov_iter: massage iterate_iovec and iterate_kvec to logics similar to iterate_bvecAl Viro1-55/+36
2021-06-10iterate_and_advance(): get rid of magic in case when n is 0Al Viro1-1/+1
2021-06-10csum_and_copy_to_iter(): massage into form closer to csum_and_copy_from_iter()Al Viro1-4/+4
2021-06-10iov_iter: replace iov_iter_copy_from_user_atomic() with iterator-advancing variantAl Viro1-26/+4
2021-06-10[xarray] iov_iter_npages(): just use DIV_ROUND_UP()Al Viro1-14/+2