aboutsummaryrefslogtreecommitdiff
path: root/fs/btrfs/ctree.h
diff options
context:
space:
mode:
authorGravatar Christoph Hellwig <hch@lst.de> 2016-10-27 09:27:36 +0200
committerGravatar David Sterba <dsterba@suse.com> 2016-11-29 14:10:38 +0100
commitcf8cddd38bab31b284af8d51fee536be9914f6ef (patch)
treea5b6b272c219bf07f06b82a314f26c7a51c29b8b /fs/btrfs/ctree.h
parentLinux 4.9-rc7 (diff)
downloadlinux-cf8cddd38bab31b284af8d51fee536be9914f6ef.tar.gz
linux-cf8cddd38bab31b284af8d51fee536be9914f6ef.tar.bz2
linux-cf8cddd38bab31b284af8d51fee536be9914f6ef.zip
btrfs: don't abuse REQ_OP_* flags for btrfs_map_block
btrfs_map_block supports different types of mappings, which to a large extent resemble block layer operations. But they don't always do, and currently btrfs dangerously overlays it's own flag over the block layer flags. This is just asking for a conflict, so introduce a different map flags enum inside of btrfs instead. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r--fs/btrfs/ctree.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h
index 0b8ce2b9f7d0..e4e01a99201a 100644
--- a/fs/btrfs/ctree.h
+++ b/fs/btrfs/ctree.h
@@ -90,9 +90,6 @@ static const int btrfs_csum_sizes[] = { 4 };
/* four bytes for CRC32 */
#define BTRFS_EMPTY_DIR_SIZE 0
-/* specific to btrfs_map_block(), therefore not in include/linux/blk_types.h */
-#define REQ_GET_READ_MIRRORS (1 << 30)
-
/* ioprio of readahead is set to idle */
#define BTRFS_IOPRIO_READA (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_IDLE, 0))