]> git.apps.os.sepia.ceph.com Git - ceph-client.git/commitdiff
ceph: align data in pages in ceph_sync_write
authorJeff Layton <jlayton@kernel.org>
Mon, 25 Jan 2021 18:47:30 +0000 (13:47 -0500)
committerJeff Layton <jlayton@kernel.org>
Tue, 31 May 2022 15:50:01 +0000 (11:50 -0400)
Encrypted files will need to be dealt with in block-sized chunks and
once we do that, the way that ceph_sync_write aligns the data in the
bounce buffer won't be acceptable.

Change it to align the data the same way it would be aligned in the
pagecache.

Reviewed-by: Xiubo Li <xiubli@redhat.com>
Signed-off-by: Jeff Layton <jlayton@kernel.org>
fs/ceph/file.c

index 747744948d93f99b9728abb7adf1a037cc66c6cc..d01ca3b7273f0ba50333c0914ca3dc9e2392838a 100644 (file)
@@ -1566,6 +1566,7 @@ ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
        bool check_caps = false;
        struct timespec64 mtime = current_time(inode);
        size_t count = iov_iter_count(from);
+       size_t off;
 
        if (ceph_snap(file_inode(file)) != CEPH_NOSNAP)
                return -EROFS;
@@ -1603,12 +1604,7 @@ ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
                        break;
                }
 
-               /*
-                * write from beginning of first page,
-                * regardless of io alignment
-                */
-               num_pages = (len + PAGE_SIZE - 1) >> PAGE_SHIFT;
-
+               num_pages = calc_pages_for(pos, len);
                pages = ceph_alloc_page_vector(num_pages, GFP_KERNEL);
                if (IS_ERR(pages)) {
                        ret = PTR_ERR(pages);
@@ -1616,9 +1612,12 @@ ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
                }
 
                left = len;
+               off = offset_in_page(pos);
                for (n = 0; n < num_pages; n++) {
-                       size_t plen = min_t(size_t, left, PAGE_SIZE);
-                       ret = copy_page_from_iter(pages[n], 0, plen, from);
+                       size_t plen = min_t(size_t, left, PAGE_SIZE - off);
+
+                       ret = copy_page_from_iter(pages[n], off, plen, from);
+                       off = 0;
                        if (ret != plen) {
                                ret = -EFAULT;
                                break;
@@ -1633,8 +1632,9 @@ ceph_sync_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos,
 
                req->r_inode = inode;
 
-               osd_req_op_extent_osd_data_pages(req, 0, pages, len, 0,
-                                               false, true);
+               osd_req_op_extent_osd_data_pages(req, 0, pages, len,
+                                                offset_in_page(pos),
+                                                false, true);
 
                req->r_mtime = mtime;
                ret = ceph_osdc_start_request(&fsc->client->osdc, req, false);