Btrfs: make inode.c:compress_file_range() return void
authorFilipe Manana <fdmanana@suse.com>
Thu, 9 Oct 2014 20:15:44 +0000 (21:15 +0100)
committerChris Mason <clm@fb.com>
Fri, 21 Nov 2014 01:14:27 +0000 (17:14 -0800)
Its return value is useless, its single caller ignores it and can't do
anything with it anyway, since it's a workqueue task and not the task
calling filemap_fdatawrite_range (writepages) nor filemap_fdatawait_range().
Failure is communicated to such functions via start and end of writeback
with the respective pages tagged with an error and AS_EIO flag set in the
inode's imapping.

Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: Chris Mason <clm@fb.com>
fs/btrfs/inode.c

index 793e033..5a8a749 100644 (file)
@@ -382,7 +382,7 @@ static inline int inode_need_compress(struct inode *inode)
  * are written in the same order that the flusher thread sent them
  * down.
  */
-static noinline int compress_file_range(struct inode *inode,
+static noinline void compress_file_range(struct inode *inode,
                                        struct page *locked_page,
                                        u64 start, u64 end,
                                        struct async_cow *async_cow,
@@ -620,8 +620,7 @@ cleanup_and_bail_uncompressed:
                *num_added += 1;
        }
 
-out:
-       return ret;
+       return;
 
 free_pages_out:
        for (i = 0; i < nr_pages_ret; i++) {
@@ -629,8 +628,6 @@ free_pages_out:
                page_cache_release(pages[i]);
        }
        kfree(pages);
-
-       goto out;
 }
 
 static void free_async_extent_pages(struct async_extent *async_extent)