btrfs: remove struct btrfs_bio::is_metadata flag
authorChristoph Hellwig <hch@lst.de>
Sat, 21 Jan 2023 06:50:14 +0000 (07:50 +0100)
committerDavid Sterba <dsterba@suse.com>
Wed, 15 Feb 2023 18:38:52 +0000 (19:38 +0100)
This flag is unused now, so remove it.  Re-expand the mirror_num field
to 8 bits, and move it to the I/O completion internal section of the
structure.

Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/bio.h
fs/btrfs/disk-io.c

index c232148348dfe37592a32f5a2b896ceb327fe3bc..a96bcb3f36f684e49d7c1c8aaa33fbc19302b444 100644 (file)
@@ -30,16 +30,6 @@ typedef void (*btrfs_bio_end_io_t)(struct btrfs_bio *bbio);
  * passed to btrfs_submit_bio for mapping to the physical devices.
  */
 struct btrfs_bio {
-       unsigned int mirror_num:7;
-
-       /*
-        * Extra indicator for metadata bios.
-        * For some btrfs bios they use pages without a mapping, thus
-        * we can not rely on page->mapping->host to determine if
-        * it's a metadata bio.
-        */
-       unsigned int is_metadata:1;
-
        /* Inode and offset into it that this I/O operates on. */
        struct btrfs_inode *inode;
        u64 file_offset;
@@ -64,6 +54,7 @@ struct btrfs_bio {
        void *private;
 
        /* For internal use in read end I/O handling */
+       unsigned int mirror_num;
        struct work_struct end_io_work;
 
        /*
index dc5bf46529f09731c1fc8a5b106a052c432f2144..cb8e495f981bc2cee9dbce6e9d1dcc28712d9a67 100644 (file)
@@ -846,7 +846,6 @@ void btrfs_submit_metadata_bio(struct btrfs_inode *inode, struct bio *bio, int m
        blk_status_t ret;
 
        bio->bi_opf |= REQ_META;
-       bbio->is_metadata = 1;
 
        if (btrfs_op(bio) != BTRFS_MAP_WRITE) {
                btrfs_submit_bio(fs_info, bio, mirror_num);