btrfs: rename bio_flags in parameters and switch type
authorDavid Sterba <dsterba@suse.com>
Tue, 27 Jul 2021 12:59:41 +0000 (14:59 +0200)
committerDavid Sterba <dsterba@suse.com>
Mon, 16 May 2022 15:17:31 +0000 (17:17 +0200)
Several functions take parameter bio_flags that was simplified to just
compress type, unify it and change the type accordingly.

Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/ctree.h
fs/btrfs/extent_io.c
fs/btrfs/extent_io.h
fs/btrfs/inode.c

index 57b5b76c7f9c902f948e9e364cccfa472f1600bb..0d1d43f171cc69060562fe7010110ca53a755ada 100644 (file)
@@ -3253,7 +3253,7 @@ u64 btrfs_file_extent_end(const struct btrfs_path *path);
 
 /* inode.c */
 void btrfs_submit_data_bio(struct inode *inode, struct bio *bio,
-                          int mirror_num, unsigned long bio_flags);
+                          int mirror_num, enum btrfs_compression_type compress_type);
 unsigned int btrfs_verify_data_csum(struct btrfs_bio *bbio,
                                    u32 bio_offset, struct page *page,
                                    u64 start, u64 end);
index faa41ca23bbb6d817586c1993a1275078b02650d..5ef07b2ebebf211f0a979b9b705a13a2b7be4d46 100644 (file)
@@ -178,7 +178,8 @@ static int add_extent_changeset(struct extent_state *state, u32 bits,
        return ret;
 }
 
-static void submit_one_bio(struct bio *bio, int mirror_num, unsigned long bio_flags)
+static void submit_one_bio(struct bio *bio, int mirror_num,
+                          enum btrfs_compression_type compress_type)
 {
        struct extent_io_tree *tree = bio->bi_private;
 
@@ -189,7 +190,7 @@ static void submit_one_bio(struct bio *bio, int mirror_num, unsigned long bio_fl
 
        if (is_data_inode(tree->private_data))
                btrfs_submit_data_bio(tree->private_data, bio, mirror_num,
-                                           bio_flags);
+                                           compress_type);
        else
                btrfs_submit_metadata_bio(tree->private_data, bio, mirror_num);
        /*
@@ -3246,7 +3247,7 @@ struct bio *btrfs_bio_clone_partial(struct bio *orig, u64 offset, u64 size)
  *                a contiguous page to the previous one
  * @size:      portion of page that we want to write
  * @pg_offset: starting offset in the page
- * @bio_flags: flags of the current bio to see if we can merge them
+ * @compress_type:   compression type of the current bio to see if we can merge them
  *
  * Attempt to add a page to bio considering stripe alignment etc.
  *
@@ -3258,7 +3259,7 @@ static int btrfs_bio_add_page(struct btrfs_bio_ctrl *bio_ctrl,
                              struct page *page,
                              u64 disk_bytenr, unsigned int size,
                              unsigned int pg_offset,
-                             unsigned long bio_flags)
+                             enum btrfs_compression_type compress_type)
 {
        struct bio *bio = bio_ctrl->bio;
        u32 bio_size = bio->bi_iter.bi_size;
@@ -3270,7 +3271,7 @@ static int btrfs_bio_add_page(struct btrfs_bio_ctrl *bio_ctrl,
        ASSERT(bio);
        /* The limit should be calculated when bio_ctrl->bio is allocated */
        ASSERT(bio_ctrl->len_to_oe_boundary && bio_ctrl->len_to_stripe_boundary);
-       if (bio_ctrl->bio_flags != bio_flags)
+       if (bio_ctrl->bio_flags != compress_type)
                return 0;
 
        if (bio_ctrl->bio_flags != BTRFS_COMPRESS_NONE)
@@ -3359,7 +3360,7 @@ static int alloc_new_bio(struct btrfs_inode *inode,
                         unsigned int opf,
                         bio_end_io_t end_io_func,
                         u64 disk_bytenr, u32 offset, u64 file_offset,
-                        unsigned long bio_flags)
+                        enum btrfs_compression_type compress_type)
 {
        struct btrfs_fs_info *fs_info = inode->root->fs_info;
        struct bio *bio;
@@ -3370,12 +3371,12 @@ static int alloc_new_bio(struct btrfs_inode *inode,
         * For compressed page range, its disk_bytenr is always @disk_bytenr
         * passed in, no matter if we have added any range into previous bio.
         */
-       if (bio_flags != BTRFS_COMPRESS_NONE)
+       if (compress_type != BTRFS_COMPRESS_NONE)
                bio->bi_iter.bi_sector = disk_bytenr >> SECTOR_SHIFT;
        else
                bio->bi_iter.bi_sector = (disk_bytenr + offset) >> SECTOR_SHIFT;
        bio_ctrl->bio = bio;
-       bio_ctrl->bio_flags = bio_flags;
+       bio_ctrl->bio_flags = compress_type;
        bio->bi_end_io = end_io_func;
        bio->bi_private = &inode->io_tree;
        bio->bi_opf = opf;
@@ -3434,7 +3435,7 @@ error:
  * @end_io_func:     end_io callback for new bio
  * @mirror_num:             desired mirror to read/write
  * @prev_bio_flags:  flags of previous bio to see if we can merge the current one
- * @bio_flags: flags of the current bio to see if we can merge them
+ * @compress_type:   compress type for current bio
  */
 static int submit_extent_page(unsigned int opf,
                              struct writeback_control *wbc,
@@ -3443,7 +3444,7 @@ static int submit_extent_page(unsigned int opf,
                              size_t size, unsigned long pg_offset,
                              bio_end_io_t end_io_func,
                              int mirror_num,
-                             unsigned long bio_flags,
+                             enum btrfs_compression_type compress_type,
                              bool force_bio_submit)
 {
        int ret = 0;
@@ -3468,7 +3469,7 @@ static int submit_extent_page(unsigned int opf,
                        ret = alloc_new_bio(inode, bio_ctrl, wbc, opf,
                                            end_io_func, disk_bytenr, offset,
                                            page_offset(page) + cur,
-                                           bio_flags);
+                                           compress_type);
                        if (ret < 0)
                                return ret;
                }
@@ -3476,14 +3477,14 @@ static int submit_extent_page(unsigned int opf,
                 * We must go through btrfs_bio_add_page() to ensure each
                 * page range won't cross various boundaries.
                 */
-               if (bio_flags != BTRFS_COMPRESS_NONE)
+               if (compress_type != BTRFS_COMPRESS_NONE)
                        added = btrfs_bio_add_page(bio_ctrl, page, disk_bytenr,
                                        size - offset, pg_offset + offset,
-                                       bio_flags);
+                                       compress_type);
                else
                        added = btrfs_bio_add_page(bio_ctrl, page,
                                        disk_bytenr + offset, size - offset,
-                                       pg_offset + offset, bio_flags);
+                                       pg_offset + offset, compress_type);
 
                /* Metadata page range should never be split */
                if (!is_data_inode(&inode->vfs_inode))
index 7774a48053fdfce127ba960a619ca0cebef6259d..17674b7e699c66b9733f10f0e93dd44a32424c56 100644 (file)
@@ -67,7 +67,7 @@ struct extent_io_tree;
 
 typedef void (submit_bio_hook_t)(struct inode *inode, struct bio *bio,
                                         int mirror_num,
-                                        unsigned long bio_flags);
+                                        enum btrfs_compression_type compress_type);
 
 typedef blk_status_t (extent_submit_bio_start_t)(struct inode *inode,
                struct bio *bio, u64 dio_file_offset);
index 97b5342e66c2fa43b9490a33323e4dd3bade0ddc..63f71b3097d8cfde19e62738f9688b1fcfeac367 100644 (file)
@@ -2573,7 +2573,7 @@ out:
  *    c-3) otherwise:                  async submit
  */
 void btrfs_submit_data_bio(struct inode *inode, struct bio *bio,
-                          int mirror_num, unsigned long bio_flags)
+                          int mirror_num, enum btrfs_compression_type compress_type)
 {
        struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
        struct btrfs_root *root = BTRFS_I(inode)->root;
@@ -2602,7 +2602,7 @@ void btrfs_submit_data_bio(struct inode *inode, struct bio *bio,
                if (ret)
                        goto out;
 
-               if (bio_flags != BTRFS_COMPRESS_NONE) {
+               if (compress_type != BTRFS_COMPRESS_NONE) {
                        /*
                         * btrfs_submit_compressed_read will handle completing
                         * the bio if there were any errors, so just return
@@ -7834,7 +7834,8 @@ static void btrfs_dio_private_put(struct btrfs_dio_private *dip)
 }
 
 static void submit_dio_repair_bio(struct inode *inode, struct bio *bio,
-                                 int mirror_num, unsigned long bio_flags)
+                                 int mirror_num,
+                                 enum btrfs_compression_type compress_type)
 {
        struct btrfs_dio_private *dip = bio->bi_private;
        struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);