@@ -169,6 +169,7 @@ static u64 treeid_from_string(const char *str, const char **end)
{ "TREE_RELOC", BTRFS_TREE_RELOC_OBJECTID },
{ "DATA_RELOC", BTRFS_DATA_RELOC_TREE_OBJECTID },
{ "BLOCK_GROUP_TREE", BTRFS_BLOCK_GROUP_TREE_OBJECTID },
+ { "RAID_STRIPE", BTRFS_RAID_STRIPE_TREE_OBJECTID },
};
if (strncasecmp("BTRFS_", str, strlen("BTRFS_")) == 0)
@@ -724,6 +725,10 @@ again:
if (!skip)
pr_verbose(LOG_DEFAULT, "block group");
break;
+ case BTRFS_RAID_STRIPE_TREE_OBJECTID:
+ if (!skip)
+ printf("raid stripe");
+ break;
default:
if (!skip) {
pr_verbose(LOG_DEFAULT, "file");
@@ -1503,6 +1503,9 @@ static inline u32 BTRFS_MAX_XATTR_SIZE(const struct btrfs_fs_info *info)
#define BTRFS_QGROUP_LIMIT_KEY 244
#define BTRFS_QGROUP_RELATION_KEY 246
+
+#define BTRFS_RAID_STRIPE_KEY 247
+
/*
* Obsolete name, see BTRFS_TEMPORARY_ITEM_KEY.
*/
@@ -635,6 +635,22 @@ static void print_free_space_header(struct extent_buffer *leaf, int slot)
(unsigned long long)btrfs_free_space_bitmaps(leaf, header));
}
+static void print_raid_stripe_key(struct extent_buffer *eb,
+ u32 item_size,
+ struct btrfs_stripe_extent *stripe)
+{
+ int num_stripes;
+ int i;
+
+ num_stripes = (item_size - offsetof(struct btrfs_stripe_extent, strides)) /
+ sizeof(struct btrfs_raid_stride);
+
+ for (i = 0; i < num_stripes; i++)
+ printf("\t\t\tstripe %d devid %llu offset %llu\n", i,
+ (unsigned long long)btrfs_raid_stride_devid_nr(eb, stripe, i),
+ (unsigned long long)btrfs_raid_stride_offset_nr(eb, stripe, i));
+}
+
void print_key_type(FILE *stream, u64 objectid, u8 type)
{
static const char* key_to_str[256] = {
@@ -679,6 +695,7 @@ void print_key_type(FILE *stream, u64 objectid, u8 type)
[BTRFS_PERSISTENT_ITEM_KEY] = "PERSISTENT_ITEM",
[BTRFS_UUID_KEY_SUBVOL] = "UUID_KEY_SUBVOL",
[BTRFS_UUID_KEY_RECEIVED_SUBVOL] = "UUID_KEY_RECEIVED_SUBVOL",
+ [BTRFS_RAID_STRIPE_KEY] = "RAID_STRIPE_KEY",
};
if (type == 0 && objectid == BTRFS_FREE_SPACE_OBJECTID) {
@@ -788,6 +805,9 @@ void print_objectid(FILE *stream, u64 objectid, u8 type)
case BTRFS_BLOCK_GROUP_TREE_OBJECTID:
fprintf(stream, "BLOCK_GROUP_TREE");
break;
+ case BTRFS_RAID_STRIPE_TREE_OBJECTID:
+ fprintf(stream, "RAID_STRIPE_TREE");
+ break;
case (u64)-1:
fprintf(stream, "-1");
break;
@@ -1454,6 +1474,9 @@ void btrfs_print_leaf(struct extent_buffer *eb, unsigned int mode)
case BTRFS_TEMPORARY_ITEM_KEY:
print_temporary_item(eb, ptr, objectid, offset);
break;
+ case BTRFS_RAID_STRIPE_KEY:
+ print_raid_stripe_key(eb, item_size, ptr);
+ break;
};
fflush(stdout);
}
Add support for the RAID stripe tree to btrfs inspect-internal dump-tree. Signed-off-by: Johannes Thumshirn <johannes.thumshirn@wdc.com> --- cmds/inspect-dump-tree.c | 5 +++++ kernel-shared/ctree.h | 3 +++ kernel-shared/print-tree.c | 23 +++++++++++++++++++++++ 3 files changed, 31 insertions(+)