From: Al Viro Date: Fri, 10 Jun 2022 15:43:27 +0000 (-0400) Subject: ceph: switch the last caller of iov_iter_get_pages_alloc() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b53589927d73e28c62d3cd92ed4e1a0ea3c830ca;p=linux.git ceph: switch the last caller of iov_iter_get_pages_alloc() here nothing even looks at the iov_iter after the call, so we couldn't care less whether it advances or not. Reviewed-by: Jeff Layton Signed-off-by: Al Viro --- diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c index d6e5916138e4f..2c3a9b5b4b745 100644 --- a/fs/ceph/addr.c +++ b/fs/ceph/addr.c @@ -329,7 +329,7 @@ static void ceph_netfs_issue_read(struct netfs_io_subrequest *subreq) dout("%s: pos=%llu orig_len=%zu len=%llu\n", __func__, subreq->start, subreq->len, len); iov_iter_xarray(&iter, READ, &rreq->mapping->i_pages, subreq->start, len); - err = iov_iter_get_pages_alloc(&iter, &pages, len, &page_off); + err = iov_iter_get_pages_alloc2(&iter, &pages, len, &page_off); if (err < 0) { dout("%s: iov_ter_get_pages_alloc returned %d\n", __func__, err); goto out;