pnfs: align layoutget requests on page boundaries
authorBenny Halevy <bhalevy@panasas.com>
Sun, 22 May 2011 16:47:46 +0000 (19:47 +0300)
committerBoaz Harrosh <bharrosh@panasas.com>
Sun, 29 May 2011 17:52:33 +0000 (20:52 +0300)
Signed-off-by: Benny Halevy <bhalevy@panasas.com>
fs/nfs/pnfs.c

index c2f09e9..2357ee3 100644 (file)
@@ -850,6 +850,7 @@ pnfs_update_layout(struct inode *ino,
                .offset = pos,
                .length = count,
        };
+       unsigned pg_offset;
        struct nfs_inode *nfsi = NFS_I(ino);
        struct nfs_client *clp = NFS_SERVER(ino)->nfs_client;
        struct pnfs_layout_hdr *lo;
@@ -899,6 +900,13 @@ pnfs_update_layout(struct inode *ino,
                spin_unlock(&clp->cl_lock);
        }
 
+       pg_offset = arg.offset & ~PAGE_CACHE_MASK;
+       if (pg_offset) {
+               arg.offset -= pg_offset;
+               arg.length += pg_offset;
+       }
+       arg.length = PAGE_CACHE_ALIGN(arg.length);
+
        lseg = send_layoutget(lo, ctx, &arg, gfp_flags);
        if (!lseg && first) {
                spin_lock(&clp->cl_lock);