cifs: Pass unbyteswapped eof value into SMB2_set_eof()
[linux-2.6-block.git] / fs / smb / client / smb2ops.c
index b813485c0e86e906b65ef013b61fb9c823a1cce4..938d51a88dd6ea517a815a9f8a9ebacd470407f7 100644 (file)
@@ -1935,7 +1935,6 @@ static int
 smb2_set_file_size(const unsigned int xid, struct cifs_tcon *tcon,
                   struct cifsFileInfo *cfile, __u64 size, bool set_alloc)
 {
-       __le64 eof = cpu_to_le64(size);
        struct inode *inode;
 
        /*
@@ -1952,7 +1951,7 @@ smb2_set_file_size(const unsigned int xid, struct cifs_tcon *tcon,
        }
 
        return SMB2_set_eof(xid, tcon, cfile->fid.persistent_fid,
-                           cfile->fid.volatile_fid, cfile->pid, &eof);
+                           cfile->fid.volatile_fid, cfile->pid, size);
 }
 
 static int
@@ -3197,7 +3196,6 @@ static long smb3_zero_range(struct file *file, struct cifs_tcon *tcon,
        unsigned long long new_size;
        long rc;
        unsigned int xid;
-       __le64 eof;
 
        xid = get_xid();
 
@@ -3227,9 +3225,8 @@ static long smb3_zero_range(struct file *file, struct cifs_tcon *tcon,
         */
        new_size = offset + len;
        if (keep_size == false && (unsigned long long)i_size_read(inode) < new_size) {
-               eof = cpu_to_le64(new_size);
                rc = SMB2_set_eof(xid, tcon, cfile->fid.persistent_fid,
-                                 cfile->fid.volatile_fid, cfile->pid, &eof);
+                                 cfile->fid.volatile_fid, cfile->pid, new_size);
                if (rc >= 0) {
                        truncate_setsize(inode, new_size);
                        fscache_resize_cookie(cifs_inode_cookie(inode), new_size);
@@ -3422,7 +3419,7 @@ static long smb3_simple_falloc(struct file *file, struct cifs_tcon *tcon,
        struct cifsFileInfo *cfile = file->private_data;
        long rc = -EOPNOTSUPP;
        unsigned int xid;
-       __le64 eof;
+       loff_t new_eof;
 
        xid = get_xid();
 
@@ -3451,14 +3448,14 @@ static long smb3_simple_falloc(struct file *file, struct cifs_tcon *tcon,
                if (cifsi->cifsAttrs & FILE_ATTRIBUTE_SPARSE_FILE)
                        smb2_set_sparse(xid, tcon, cfile, inode, false);
 
-               eof = cpu_to_le64(off + len);
+               new_eof = off + len;
                rc = SMB2_set_eof(xid, tcon, cfile->fid.persistent_fid,
-                                 cfile->fid.volatile_fid, cfile->pid, &eof);
+                                 cfile->fid.volatile_fid, cfile->pid, new_eof);
                if (rc == 0) {
-                       cifsi->server_eof = off + len;
-                       cifs_setsize(inode, off + len);
+                       cifsi->server_eof = new_eof;
+                       cifs_setsize(inode, new_eof);
                        cifs_truncate_page(inode->i_mapping, inode->i_size);
-                       truncate_setsize(inode, off + len);
+                       truncate_setsize(inode, new_eof);
                }
                goto out;
        }
@@ -3549,8 +3546,7 @@ static long smb3_collapse_range(struct file *file, struct cifs_tcon *tcon,
        struct inode *inode = file_inode(file);
        struct cifsFileInfo *cfile = file->private_data;
        struct cifsInodeInfo *cifsi = CIFS_I(inode);
-       __le64 eof;
-       loff_t old_eof;
+       loff_t old_eof, new_eof;
 
        xid = get_xid();
 
@@ -3575,9 +3571,9 @@ static long smb3_collapse_range(struct file *file, struct cifs_tcon *tcon,
        if (rc < 0)
                goto out_2;
 
-       eof = cpu_to_le64(old_eof - len);
+       new_eof = old_eof - len;
        rc = SMB2_set_eof(xid, tcon, cfile->fid.persistent_fid,
-                         cfile->fid.volatile_fid, cfile->pid, &eof);
+                         cfile->fid.volatile_fid, cfile->pid, new_eof);
        if (rc < 0)
                goto out_2;
 
@@ -3601,8 +3597,7 @@ static long smb3_insert_range(struct file *file, struct cifs_tcon *tcon,
        unsigned int xid;
        struct cifsFileInfo *cfile = file->private_data;
        struct inode *inode = file_inode(file);
-       __le64 eof;
-       __u64  count, old_eof;
+       __u64 count, old_eof, new_eof;
 
        xid = get_xid();
 
@@ -3615,20 +3610,20 @@ static long smb3_insert_range(struct file *file, struct cifs_tcon *tcon,
        }
 
        count = old_eof - off;
-       eof = cpu_to_le64(old_eof + len);
+       new_eof = old_eof + len;
 
        filemap_invalidate_lock(inode->i_mapping);
-       rc = filemap_write_and_wait_range(inode->i_mapping, off, old_eof + len - 1);
+       rc = filemap_write_and_wait_range(inode->i_mapping, off, new_eof - 1);
        if (rc < 0)
                goto out_2;
        truncate_pagecache_range(inode, off, old_eof);
 
        rc = SMB2_set_eof(xid, tcon, cfile->fid.persistent_fid,
-                         cfile->fid.volatile_fid, cfile->pid, &eof);
+                         cfile->fid.volatile_fid, cfile->pid, new_eof);
        if (rc < 0)
                goto out_2;
 
-       truncate_setsize(inode, old_eof + len);
+       truncate_setsize(inode, new_eof);
        fscache_resize_cookie(cifs_inode_cookie(inode), i_size_read(inode));
 
        rc = smb2_copychunk_range(xid, cfile, cfile, off, count, off + len);