Use simple bool type for the block reserve failfast status, there's
short to save space as there used to be int but there's no reason for
that.
Reviewed-by: Anand Jain <anand.jain@oracle.com>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
        struct btrfs_space_info *space_info;
        spinlock_t lock;
        bool full;
+       bool failfast;
        unsigned short type;
-       unsigned short failfast;
 
        /*
         * Qgroup equivalent for @size @reserved
 
                goto out;
        }
        rsv->size = btrfs_calc_insert_metadata_size(fs_info, 1);
-       rsv->failfast = 1;
+       rsv->failfast = true;
 
        /*
         * 1 - update the inode
 
        if (!rsv)
                goto no_delete;
        rsv->size = btrfs_calc_metadata_size(fs_info, 1);
-       rsv->failfast = 1;
+       rsv->failfast = true;
 
        btrfs_i_size_write(BTRFS_I(inode), 0);
 
        if (!rsv)
                return -ENOMEM;
        rsv->size = min_size;
-       rsv->failfast = 1;
+       rsv->failfast = true;
 
        /*
         * 1 for the truncate slack space