aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/inode.c
diff options
context:
space:
mode:
authorDulshani Gunawardhana <dulshani.gunawardhana89@gmail.com>2013-10-31 01:03:04 -0400
committerChris Mason <chris.mason@fusionio.com>2013-11-11 22:12:31 -0500
commit678712545b62715a6c867471320ff5f60a521f3a (patch)
treec4e65db09c0d070b52cb6be5b9ed748ef5866795 /fs/btrfs/inode.c
parentd9b0d9ba04cf99abff9125b688c03e154598a644 (diff)
btrfs: Fix checkpatch.pl warning of spacing issues
Fix spacing issues detected via checkpatch.pl in accordance with the kernel style guidelines. Signed-off-by: Dulshani Gunawardhana <dulshani.gunawardhana89@gmail.com> Signed-off-by: Josef Bacik <jbacik@fusionio.com> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r--fs/btrfs/inode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index ddecc9c332f4..57fa19d69e90 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -6262,7 +6262,7 @@ struct extent_map *btrfs_get_extent_fiemap(struct inode *inode, struct page *pag
6262 /* adjust the range_start to make sure it doesn't 6262 /* adjust the range_start to make sure it doesn't
6263 * go backwards from the start they passed in 6263 * go backwards from the start they passed in
6264 */ 6264 */
6265 range_start = max(start,range_start); 6265 range_start = max(start, range_start);
6266 found = found_end - range_start; 6266 found = found_end - range_start;
6267 6267
6268 if (found > 0) { 6268 if (found > 0) {
@@ -7066,7 +7066,7 @@ static int btrfs_submit_direct_hook(int rw, struct btrfs_dio_private *dip,
7066 } 7066 }
7067 } else { 7067 } else {
7068 submit_len += bvec->bv_len; 7068 submit_len += bvec->bv_len;
7069 nr_pages ++; 7069 nr_pages++;
7070 bvec++; 7070 bvec++;
7071 } 7071 }
7072 } 7072 }
@@ -8367,7 +8367,7 @@ static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
8367 int err; 8367 int err;
8368 int drop_inode = 0; 8368 int drop_inode = 0;
8369 u64 objectid; 8369 u64 objectid;
8370 u64 index = 0 ; 8370 u64 index = 0;
8371 int name_len; 8371 int name_len;
8372 int datasize; 8372 int datasize;
8373 unsigned long ptr; 8373 unsigned long ptr;