* with a length of PAGE_SIZE, each returned stripe
                 * represents one mirror
                 */
-               ret = btrfs_map_sblock(fs_info, REQ_GET_READ_MIRRORS, logical,
-                                      &mapped_length, &bbio, 0, 1);
+               ret = btrfs_map_sblock(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
+                               logical, &mapped_length, &bbio, 0, 1);
                if (ret || !bbio || mapped_length < sublen) {
                        btrfs_put_bbio(bbio);
                        return -EIO;
        int ret;
        int i;
 
-       ret = btrfs_map_sblock(fs_info, REQ_GET_READ_MIRRORS, logical, &length,
-                              &bbio, 0, 1);
+       ret = btrfs_map_sblock(fs_info, BTRFS_MAP_GET_READ_MIRRORS, logical,
+                       &length, &bbio, 0, 1);
        if (ret || !bbio || !bbio->raid_map)
                goto bbio_out;
 
                goto out;
 
        length = sparity->logic_end - sparity->logic_start;
-       ret = btrfs_map_sblock(sctx->dev_root->fs_info, WRITE,
+       ret = btrfs_map_sblock(sctx->dev_root->fs_info, BTRFS_MAP_WRITE,
                               sparity->logic_start,
                               &length, &bbio, 0, 1);
        if (ret || !bbio || !bbio->raid_map)
 
                        mapped_length = extent_len;
                        bbio = NULL;
-                       ret = btrfs_map_block(fs_info, READ, extent_logical,
-                                             &mapped_length, &bbio, 0);
+                       ret = btrfs_map_block(fs_info, BTRFS_MAP_READ,
+                                       extent_logical, &mapped_length, &bbio,
+                                       0);
                        if (!ret) {
                                if (!bbio || mapped_length < extent_len)
                                        ret = -EIO;
        int ret;
 
        mapped_length = extent_len;
-       ret = btrfs_map_block(fs_info, READ, extent_logical,
+       ret = btrfs_map_block(fs_info, BTRFS_MAP_READ, extent_logical,
                              &mapped_length, &bbio, 0);
        if (ret || !bbio || mapped_length < extent_len ||
            !bbio->stripes[0].dev->bdev) {
 
                kfree(bbio);
 }
 
-static int __btrfs_map_block(struct btrfs_fs_info *fs_info, int op,
+static int __btrfs_map_block(struct btrfs_fs_info *fs_info,
+                            enum btrfs_map_op op,
                             u64 logical, u64 *length,
                             struct btrfs_bio **bbio_ret,
                             int mirror_num, int need_raid_map)
                raid56_full_stripe_start *= full_stripe_len;
        }
 
-       if (op == REQ_OP_DISCARD) {
+       if (op == BTRFS_MAP_DISCARD) {
                /* we don't discard raid56 yet */
                if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
                        ret = -EOPNOTSUPP;
                   For other RAID types and for RAID[56] reads, just allow a single
                   stripe (on a single disk). */
                if ((map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) &&
-                   (op == REQ_OP_WRITE)) {
+                   (op == BTRFS_MAP_WRITE)) {
                        max_len = stripe_len * nr_data_stripes(map) -
                                (offset - raid56_full_stripe_start);
                } else {
                btrfs_dev_replace_set_lock_blocking(dev_replace);
 
        if (dev_replace_is_ongoing && mirror_num == map->num_stripes + 1 &&
-           op != REQ_OP_WRITE && op != REQ_OP_DISCARD &&
-           op != REQ_GET_READ_MIRRORS && dev_replace->tgtdev != NULL) {
+           op != BTRFS_MAP_WRITE && op != BTRFS_MAP_DISCARD &&
+           op != BTRFS_MAP_GET_READ_MIRRORS && dev_replace->tgtdev != NULL) {
                /*
                 * in dev-replace case, for repair case (that's the only
                 * case where the mirror is selected explicitly when
                int found = 0;
                u64 physical_of_found = 0;
 
-               ret = __btrfs_map_block(fs_info, REQ_GET_READ_MIRRORS,
+               ret = __btrfs_map_block(fs_info, BTRFS_MAP_GET_READ_MIRRORS,
                             logical, &tmp_length, &tmp_bbio, 0, 0);
                if (ret) {
                        WARN_ON(tmp_bbio != NULL);
                tmp_num_stripes = tmp_bbio->num_stripes;
                if (mirror_num > tmp_num_stripes) {
                        /*
-                        * REQ_GET_READ_MIRRORS does not contain this
+                        * BTRFS_MAP_GET_READ_MIRRORS does not contain this
                         * mirror, that means that the requested area
                         * is not left of the left cursor
                         */
                            (offset + *length);
 
        if (map->type & BTRFS_BLOCK_GROUP_RAID0) {
-               if (op == REQ_OP_DISCARD)
+               if (op == BTRFS_MAP_DISCARD)
                        num_stripes = min_t(u64, map->num_stripes,
                                            stripe_nr_end - stripe_nr_orig);
                stripe_nr = div_u64_rem(stripe_nr, map->num_stripes,
                                &stripe_index);
-               if (op != REQ_OP_WRITE && op != REQ_OP_DISCARD &&
-                   op != REQ_GET_READ_MIRRORS)
+               if (op != BTRFS_MAP_WRITE && op != BTRFS_MAP_DISCARD &&
+                   op != BTRFS_MAP_GET_READ_MIRRORS)
                        mirror_num = 1;
        } else if (map->type & BTRFS_BLOCK_GROUP_RAID1) {
-               if (op == REQ_OP_WRITE || op == REQ_OP_DISCARD ||
-                   op == REQ_GET_READ_MIRRORS)
+               if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD ||
+                   op == BTRFS_MAP_GET_READ_MIRRORS)
                        num_stripes = map->num_stripes;
                else if (mirror_num)
                        stripe_index = mirror_num - 1;
                }
 
        } else if (map->type & BTRFS_BLOCK_GROUP_DUP) {
-               if (op == REQ_OP_WRITE || op == REQ_OP_DISCARD ||
-                   op == REQ_GET_READ_MIRRORS) {
+               if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD ||
+                   op == BTRFS_MAP_GET_READ_MIRRORS) {
                        num_stripes = map->num_stripes;
                } else if (mirror_num) {
                        stripe_index = mirror_num - 1;
                stripe_nr = div_u64_rem(stripe_nr, factor, &stripe_index);
                stripe_index *= map->sub_stripes;
 
-               if (op == REQ_OP_WRITE || op == REQ_GET_READ_MIRRORS)
+               if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
                        num_stripes = map->sub_stripes;
-               else if (op == REQ_OP_DISCARD)
+               else if (op == BTRFS_MAP_DISCARD)
                        num_stripes = min_t(u64, map->sub_stripes *
                                            (stripe_nr_end - stripe_nr_orig),
                                            map->num_stripes);
 
        } else if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
                if (need_raid_map &&
-                   (op == REQ_OP_WRITE || op == REQ_GET_READ_MIRRORS ||
+                   (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS ||
                     mirror_num > 1)) {
                        /* push stripe_nr back to the start of the full stripe */
                        stripe_nr = div_u64(raid56_full_stripe_start,
                        /* We distribute the parity blocks across stripes */
                        div_u64_rem(stripe_nr + stripe_index, map->num_stripes,
                                        &stripe_index);
-                       if ((op != REQ_OP_WRITE && op != REQ_OP_DISCARD &&
-                           op != REQ_GET_READ_MIRRORS) && mirror_num <= 1)
+                       if ((op != BTRFS_MAP_WRITE && op != BTRFS_MAP_DISCARD &&
+                           op != BTRFS_MAP_GET_READ_MIRRORS) && mirror_num <= 1)
                                mirror_num = 1;
                }
        } else {
 
        num_alloc_stripes = num_stripes;
        if (dev_replace_is_ongoing) {
-               if (op == REQ_OP_WRITE || op == REQ_OP_DISCARD)
+               if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD)
                        num_alloc_stripes <<= 1;
-               if (op == REQ_GET_READ_MIRRORS)
+               if (op == BTRFS_MAP_GET_READ_MIRRORS)
                        num_alloc_stripes++;
                tgtdev_indexes = num_stripes;
        }
        /* build raid_map */
        if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK &&
            need_raid_map &&
-           ((op == REQ_OP_WRITE || op == REQ_GET_READ_MIRRORS) ||
+           ((op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS) ||
            mirror_num > 1)) {
                u64 tmp;
                unsigned rot;
                                RAID6_Q_STRIPE;
        }
 
-       if (op == REQ_OP_DISCARD) {
+       if (op == BTRFS_MAP_DISCARD) {
                u32 factor = 0;
                u32 sub_stripes = 0;
                u64 stripes_per_dev = 0;
                }
        }
 
-       if (op == REQ_OP_WRITE || op == REQ_GET_READ_MIRRORS)
+       if (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_GET_READ_MIRRORS)
                max_errors = btrfs_chunk_max_errors(map);
 
        if (bbio->raid_map)
 
        tgtdev_indexes = 0;
        if (dev_replace_is_ongoing &&
-          (op == REQ_OP_WRITE || op == REQ_OP_DISCARD) &&
+          (op == BTRFS_MAP_WRITE || op == BTRFS_MAP_DISCARD) &&
            dev_replace->tgtdev != NULL) {
                int index_where_to_add;
                u64 srcdev_devid = dev_replace->srcdev->devid;
                        }
                }
                num_stripes = index_where_to_add;
-       } else if (dev_replace_is_ongoing && (op == REQ_GET_READ_MIRRORS) &&
+       } else if (dev_replace_is_ongoing &&
+                  op == BTRFS_MAP_GET_READ_MIRRORS &&
                   dev_replace->tgtdev != NULL) {
                u64 srcdev_devid = dev_replace->srcdev->devid;
                int index_srcdev = 0;
        return ret;
 }
 
-int btrfs_map_block(struct btrfs_fs_info *fs_info, int op,
+int btrfs_map_block(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
                      u64 logical, u64 *length,
                      struct btrfs_bio **bbio_ret, int mirror_num)
 {
 }
 
 /* For Scrub/replace */
-int btrfs_map_sblock(struct btrfs_fs_info *fs_info, int op,
+int btrfs_map_sblock(struct btrfs_fs_info *fs_info, enum btrfs_map_op op,
                     u64 logical, u64 *length,
                     struct btrfs_bio **bbio_ret, int mirror_num,
                     int need_raid_map)