Signed-off-by: Mark Fasheh <mfas...@suse.de>
---
 fs/read_write.c | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/fs/read_write.c b/fs/read_write.c
index f8547b82dfb3..cf9900707558 100644
--- a/fs/read_write.c
+++ b/fs/read_write.c
@@ -146,7 +146,7 @@ loff_t generic_file_llseek(struct file *file, loff_t 
offset, int whence)
        struct inode *inode = file->f_mapping->host;
 
        return generic_file_llseek_size(file, offset, whence,
-                                       inode->i_sb->s_maxbytes,
+                                       inode_sb(inode)->s_maxbytes,
                                        i_size_read(inode));
 }
 EXPORT_SYMBOL(generic_file_llseek);
@@ -1389,7 +1389,8 @@ static ssize_t do_sendfile(int out_fd, int in_fd, loff_t 
*ppos,
                goto fput_out;
 
        if (!max)
-               max = min(in_inode->i_sb->s_maxbytes, 
out_inode->i_sb->s_maxbytes);
+               max = min(inode_sb(in_inode)->s_maxbytes,
+                         inode_sb(out_inode)->s_maxbytes);
 
        if (unlikely(pos + count > max)) {
                retval = -EOVERFLOW;
@@ -1549,7 +1550,7 @@ ssize_t vfs_copy_file_range(struct file *file_in, loff_t 
pos_in,
                return -EBADF;
 
        /* this could be relaxed once a method supports cross-fs copies */
-       if (inode_in->i_sb != inode_out->i_sb)
+       if (inode_sb(inode_in) != inode_sb(inode_out))
                return -EXDEV;
 
        if (len == 0)
@@ -1694,7 +1695,7 @@ int vfs_clone_file_prep_inodes(struct inode *inode_in, 
loff_t pos_in,
                               struct inode *inode_out, loff_t pos_out,
                               u64 *len, bool is_dedupe)
 {
-       loff_t bs = inode_out->i_sb->s_blocksize;
+       loff_t bs = inode_sb(inode_out)->s_blocksize;
        loff_t blen;
        loff_t isize;
        bool same_inode = (inode_in == inode_out);
@@ -1808,7 +1809,7 @@ int vfs_clone_file_range(struct file *file_in, loff_t 
pos_in,
         * the same mount. Practically, they only need to be on the same file
         * system.
         */
-       if (inode_in->i_sb != inode_out->i_sb)
+       if (inode_sb(inode_in) != inode_sb(inode_out))
                return -EXDEV;
 
        if (!(file_in->f_mode & FMODE_READ) ||
-- 
2.15.1

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to