summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/file.c
diff options
context:
space:
mode:
authorJosef Bacik2011-01-25 18:42:37 +0100
committerJosef Bacik2011-03-17 19:21:13 +0100
commit9f570b8d48b6677b5557d86fb3ca148215e295f2 (patch)
treed4cfb2622bad6559bd6afb2a3b3fe19f1cc274fa /fs/btrfs/file.c
parentLinux 2.6.38 (diff)
downloadkernel-qcow2-linux-9f570b8d48b6677b5557d86fb3ca148215e295f2.tar.gz
kernel-qcow2-linux-9f570b8d48b6677b5557d86fb3ca148215e295f2.tar.xz
kernel-qcow2-linux-9f570b8d48b6677b5557d86fb3ca148215e295f2.zip
Btrfs: fix formatting in file.c
Sorry, but these were bugging me. Just cleanup some of the formatting in file.c. Signed-off-by: Josef Bacik <josef@redhat.com>
Diffstat (limited to 'fs/btrfs/file.c')
-rw-r--r--fs/btrfs/file.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index f447b783bb84..4d4975592668 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -88,9 +88,8 @@ static noinline int btrfs_copy_from_user(loff_t pos, int num_pages,
total_copied += copied;
/* Return to btrfs_file_aio_write to fault page */
- if (unlikely(copied == 0)) {
+ if (unlikely(copied == 0))
break;
- }
if (unlikely(copied < PAGE_CACHE_SIZE - offset)) {
offset += copied;
@@ -162,13 +161,14 @@ static noinline int dirty_and_release_pages(struct btrfs_trans_handle *trans,
ClearPageChecked(p);
set_page_dirty(p);
}
- if (end_pos > isize) {
+
+ /*
+ * we've only changed i_size in ram, and we haven't updated
+ * the disk i_size. There is no need to log the inode
+ * at this time.
+ */
+ if (end_pos > isize)
i_size_write(inode, end_pos);
- /* we've only changed i_size in ram, and we haven't updated
- * the disk i_size. There is no need to log the inode
- * at this time.
- */
- }
return 0;
}