]> git.hungrycats.org Git - linux/commitdiff
btrfs: cleanup: remove no-used alloc_chunk in btrfs_check_data_free_space()
authorZhao Lei <zhaolei@cn.fujitsu.com>
Mon, 9 Feb 2015 06:40:20 +0000 (14:40 +0800)
committerZygo Blaxell <zblaxell@serenity.furryterror.org>
Mon, 4 May 2015 00:40:37 +0000 (20:40 -0400)
int alloc_chunk is never used in this function, remove it.

Signed-off-by: Zhao Lei <zhaolei@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
(cherry picked from commit b9fd47cde5dd9725ca37769861b7424f40828492)

fs/btrfs/extent-tree.c

index 8bff0f85ee724984c3d815d26cd9bc56780c2497..ee743cda316ad214f37eb3f6b143079536b51f3d 100644 (file)
@@ -3641,7 +3641,7 @@ int btrfs_check_data_free_space(struct inode *inode, u64 bytes)
        struct btrfs_root *root = BTRFS_I(inode)->root;
        struct btrfs_fs_info *fs_info = root->fs_info;
        u64 used;
-       int ret = 0, committed = 0, alloc_chunk = 1;
+       int ret = 0, committed = 0;
 
        /* make sure bytes are sectorsize aligned */
        bytes = ALIGN(bytes, root->sectorsize);
@@ -3669,7 +3669,7 @@ again:
                 * if we don't have enough free bytes in this space then we need
                 * to alloc a new chunk.
                 */
-               if (!data_sinfo->full && alloc_chunk) {
+               if (!data_sinfo->full) {
                        u64 alloc_target;
 
                        data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;