]> git.baikalelectronics.ru Git - kernel.git/commit
iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readable
authorAndreas Gruenbacher <agruenba@redhat.com>
Mon, 2 Aug 2021 12:54:16 +0000 (14:54 +0200)
committerAndreas Gruenbacher <agruenba@redhat.com>
Mon, 18 Oct 2021 14:35:06 +0000 (16:35 +0200)
commit0025de2cd74f96edcd20d14ef0b9a8b0d764f42e
treec5d95c10317d752b3d2e8ceebdf3a943112f5a76
parent9a454364c9449d5d041dad02110ce1abe42669c2
iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readable

Turn iov_iter_fault_in_readable into a function that returns the number
of bytes not faulted in, similar to copy_to_user, instead of returning a
non-zero value when any of the requested pages couldn't be faulted in.
This supports the existing users that require all pages to be faulted in
as well as new users that are happy if any pages can be faulted in.

Rename iov_iter_fault_in_readable to fault_in_iov_iter_readable to make
sure this change doesn't silently break things.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
fs/btrfs/file.c
fs/f2fs/file.c
fs/fuse/file.c
fs/iomap/buffered-io.c
fs/ntfs/file.c
fs/ntfs3/file.c
include/linux/uio.h
lib/iov_iter.c
mm/filemap.c