]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readable
authorAndreas Gruenbacher <agruenba@redhat.com>
Thu, 14 Apr 2022 22:28:40 +0000 (06:28 +0800)
committerStefan Bader <stefan.bader@canonical.com>
Wed, 22 Jun 2022 12:22:30 +0000 (14:22 +0200)
commit0b6acf4e489504e0ededb0dc0b16ff70572b283b
treee5980bc9bdfd64fee8c4744e7589f6bccfbecaa4
parentf4925cfbb343afa65ade9a35cbb879bf5a6ebc6b
iov_iter: Turn iov_iter_fault_in_readable into fault_in_iov_iter_readable

BugLink: https://bugs.launchpad.net/bugs/1976135
commit a6294593e8a1290091d0b078d5d33da5e0cd3dfe upstream

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>
Signed-off-by: Anand Jain <anand.jain@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Stefan Bader <stefan.bader@canonical.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