summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/relocation.c
diff options
context:
space:
mode:
authorDavid Sterba2017-01-20 14:54:07 +0100
committerDavid Sterba2017-02-14 15:50:57 +0100
commitf85b7379cd76ad25590c4059299b018eac6fbc50 (patch)
tree284d4f55b0abebebe37702990979132cec79e523 /fs/btrfs/relocation.c
parentbtrfs: Make count_inode_refs take btrfs_inode (diff)
downloadkernel-qcow2-linux-f85b7379cd76ad25590c4059299b018eac6fbc50.tar.gz
kernel-qcow2-linux-f85b7379cd76ad25590c4059299b018eac6fbc50.tar.xz
kernel-qcow2-linux-f85b7379cd76ad25590c4059299b018eac6fbc50.zip
btrfs: fix over-80 lines introduced by previous cleanups
This goes as a separate patch because fixing that inside the patches caused too many many conflicts. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/relocation.c')
-rw-r--r--fs/btrfs/relocation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c
index 7a3fc99e93b7..37175ace7fae 100644
--- a/fs/btrfs/relocation.c
+++ b/fs/btrfs/relocation.c
@@ -1609,8 +1609,8 @@ static int get_new_location(struct inode *reloc_inode, u64 *new_bytenr,
return -ENOMEM;
bytenr -= BTRFS_I(reloc_inode)->index_cnt;
- ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(BTRFS_I(reloc_inode)),
- bytenr, 0);
+ ret = btrfs_lookup_file_extent(NULL, root, path,
+ btrfs_ino(BTRFS_I(reloc_inode)), bytenr, 0);
if (ret < 0)
goto out;
if (ret > 0) {