From ad70b55b66b516d0d8271a8f16bee7192c556987 Mon Sep 17 00:00:00 2001 From: Gui Hecheng Date: Wed, 25 Jun 2014 18:04:17 +0800 Subject: btrfs-progs: replace BTRFS_NUM_MIRRORS with BTRFS_MAX_MIRRORS The chunk-recover.c/BTRFS_NUM_MIRRORS in the userspace means the same thing as ctree.h/BTRFS_MAX_MIRRORS in the kernelspace, so to stay consistent with the kernelspace, just make this movement in the userspace: chunk-recover.c/BTRFS_NUM_MIRRORS ===> ctree.h/BTRFS_MAX_MIRRORS This provides convenience for future use. Signed-off-by: Gui Hecheng Signed-off-by: David Sterba --- ctree.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ctree.h') diff --git a/ctree.h b/ctree.h index 9489338..fa73c4a 100644 --- a/ctree.h +++ b/ctree.h @@ -40,6 +40,8 @@ struct btrfs_trans_handle; struct btrfs_free_space_ctl; #define BTRFS_MAGIC 0x4D5F53665248425FULL /* ascii _BHRfS_M, no null */ +#define BTRFS_MAX_MIRRORS 3 + #define BTRFS_MAX_LEVEL 8 #define BTRFS_COMPAT_EXTENT_TREE_V0 -- cgit v1.2.1