[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <52A8004F.4090705@huawei.com>
Date: Wed, 11 Dec 2013 14:03:59 +0800
From: Libo Chen <clbchenlibo.chen@...wei.com>
To: <clm@...com>, <jbacik@...com>, <chris.mason@...ionio.com>,
<jbacik@...ionio.com>
CC: <linux-btrfs@...r.kernel.org>, LKML <linux-kernel@...r.kernel.org>,
<mfasheh@...e.de>, <hch@....de>, <viro@...iv.linux.org.uk>,
<miaox@...fujitsu.com>, Li Zefan <lizefan@...wei.com>
Subject: [PATCH RESEND] fs: btrfs: new helper: file_inode(file)
Signed-off-by: Libo Chen <clbchenlibo.chen@...wei.com>
---
fs/btrfs/ioctl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
- just change style
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
index a111622..fdfc0d7 100644
--- a/fs/btrfs/ioctl.c
+++ b/fs/btrfs/ioctl.c
@@ -2690,7 +2690,7 @@ static long btrfs_ioctl_file_extent_same(struct file *file,
struct btrfs_ioctl_same_args tmp;
struct btrfs_ioctl_same_args *same;
struct btrfs_ioctl_same_extent_info *info;
- struct inode *src = file->f_dentry->d_inode;
+ struct inode *src = file_inode(file);
struct file *dst_file = NULL;
struct inode *dst;
u64 off;
@@ -2779,7 +2779,7 @@ static long btrfs_ioctl_file_extent_same(struct file *file,
if (file->f_path.mnt != dst_file->f_path.mnt)
goto next;
- dst = dst_file->f_dentry->d_inode;
+ dst = file_inode(dst_file);
if (src->i_sb != dst->i_sb)
goto next;
--
1.8.2.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists