@@ -1476,7 +1476,7 @@ open_ctree_with_broken_chunk(struct recover_control *rc)
memcpy(fs_info->fsid, &disk_super->fsid, BTRFS_FSID_SIZE);
fs_info->sectorsize = btrfs_stack_super_sectorsize(disk_super);
- fs_info->nodesize = btrfs_super_nodesize(disk_super);
+ fs_info->nodesize = btrfs_stack_super_nodesize(disk_super);
fs_info->stripesize = btrfs_super_stripesize(disk_super);
ret = btrfs_check_fs_compatibility(disk_super, OPEN_CTREE_WRITES);
@@ -1535,7 +1535,7 @@ static int recover_prepare(struct recover_control *rc, char *path)
}
rc->sectorsize = btrfs_stack_super_sectorsize(sb);
- rc->nodesize = btrfs_super_nodesize(sb);
+ rc->nodesize = btrfs_stack_super_nodesize(sb);
rc->generation = btrfs_stack_super_generation(sb);
rc->chunk_root_generation = btrfs_stack_super_chunk_root_generation(sb);
rc->csum_size = btrfs_super_csum_size(sb);
@@ -12279,7 +12279,7 @@ static int check_tree_block_backref(struct btrfs_fs_info *fs_info, u64 root_id,
struct btrfs_path path;
struct extent_buffer *eb;
struct extent_buffer *node;
- u32 nodesize = btrfs_super_nodesize(fs_info->super_copy);
+ u32 nodesize = btrfs_stack_super_nodesize(fs_info->super_copy);
int err = 0;
int ret;
@@ -12656,7 +12656,7 @@ static int check_extent_item(struct btrfs_trans_handle *trans,
unsigned long ptr;
int slot = path->slots[0];
int type;
- u32 nodesize = btrfs_super_nodesize(fs_info->super_copy);
+ u32 nodesize = btrfs_stack_super_nodesize(fs_info->super_copy);
u32 item_size = btrfs_item_size_nr(eb, slot);
u64 flags;
u64 offset;
@@ -12946,7 +12946,7 @@ static int check_block_group_item(struct btrfs_fs_info *fs_info,
struct btrfs_chunk *chunk;
struct extent_buffer *leaf;
struct btrfs_extent_item *ei;
- u32 nodesize = btrfs_super_nodesize(fs_info->super_copy);
+ u32 nodesize = btrfs_stack_super_nodesize(fs_info->super_copy);
u64 flags;
u64 bg_flags;
u64 used;
@@ -396,7 +396,7 @@ static void dump_superblock(struct btrfs_super_block *sb, int full)
printf("sectorsize\t\t%llu\n",
(unsigned long long)btrfs_stack_super_sectorsize(sb));
printf("nodesize\t\t%llu\n",
- (unsigned long long)btrfs_super_nodesize(sb));
+ (unsigned long long)btrfs_stack_super_nodesize(sb));
printf("leafsize (deprecated)\t\t%u\n",
le32_to_cpu(sb->__unused_leafsize));
printf("stripesize\t\t%llu\n",
@@ -129,7 +129,7 @@ static int setup_temp_super(int fd, struct btrfs_mkfs_config *cfg,
btrfs_set_stack_super_bytes_used(super, 6 * cfg->nodesize);
btrfs_set_stack_super_sectorsize(super, cfg->sectorsize);
super->__unused_leafsize = cpu_to_le32(cfg->nodesize);
- btrfs_set_super_nodesize(super, cfg->nodesize);
+ btrfs_set_stack_super_nodesize(super, cfg->nodesize);
btrfs_set_super_stripesize(super, cfg->stripesize);
btrfs_set_super_csum_type(super, BTRFS_CSUM_TYPE_CRC32);
btrfs_set_stack_super_chunk_root(super, chunk_bytenr);
@@ -2190,7 +2190,7 @@ BTRFS_SETGET_STACK_FUNCS(stack_super_bytes_used, struct btrfs_super_block,
bytes_used, 64);
BTRFS_SETGET_STACK_FUNCS(stack_super_sectorsize, struct btrfs_super_block,
sectorsize, 32);
-BTRFS_SETGET_STACK_FUNCS(super_nodesize, struct btrfs_super_block,
+BTRFS_SETGET_STACK_FUNCS(stack_super_nodesize, struct btrfs_super_block,
nodesize, 32);
BTRFS_SETGET_STACK_FUNCS(super_stripesize, struct btrfs_super_block,
stripesize, 32);
@@ -1163,7 +1163,7 @@ static struct btrfs_fs_info *__open_ctree_fd(int fp, const char *path,
memcpy(fs_info->fsid, &disk_super->fsid, BTRFS_FSID_SIZE);
fs_info->sectorsize = btrfs_stack_super_sectorsize(disk_super);
- fs_info->nodesize = btrfs_super_nodesize(disk_super);
+ fs_info->nodesize = btrfs_stack_super_nodesize(disk_super);
fs_info->stripesize = btrfs_super_stripesize(disk_super);
ret = btrfs_check_fs_compatibility(fs_info->super_copy, flags);
@@ -1340,13 +1340,13 @@ static int check_super(struct btrfs_super_block *sb, unsigned sbflags)
btrfs_stack_super_log_root(sb));
goto error_out;
}
- if (btrfs_super_nodesize(sb) < 4096) {
+ if (btrfs_stack_super_nodesize(sb) < 4096) {
error("nodesize too small: %u < 4096",
- btrfs_super_nodesize(sb));
+ btrfs_stack_super_nodesize(sb));
goto error_out;
}
- if (!IS_ALIGNED(btrfs_super_nodesize(sb), 4096)) {
- error("nodesize unaligned: %u", btrfs_super_nodesize(sb));
+ if (!IS_ALIGNED(btrfs_stack_super_nodesize(sb), 4096)) {
+ error("nodesize unaligned: %u", btrfs_stack_super_nodesize(sb));
goto error_out;
}
if (btrfs_stack_super_sectorsize(sb) < 4096) {
@@ -1363,7 +1363,8 @@ static int check_super(struct btrfs_super_block *sb, unsigned sbflags)
error("invalid total_bytes 0");
goto error_out;
}
- if (btrfs_stack_super_bytes_used(sb) < 6 * btrfs_super_nodesize(sb)) {
+ if (btrfs_stack_super_bytes_used(sb) <
+ 6 * btrfs_stack_super_nodesize(sb)) {
error("invalid bytes_used %llu",
btrfs_stack_super_bytes_used(sb));
goto error_out;
@@ -110,7 +110,7 @@ int btrfs_find_root_search(struct btrfs_fs_info *fs_info,
u64 chunk_offset = 0;
u64 chunk_size = 0;
u64 offset = 0;
- u32 nodesize = btrfs_super_nodesize(fs_info->super_copy);
+ u32 nodesize = btrfs_stack_super_nodesize(fs_info->super_copy);
int suppress_errors = 0;
int ret = 0;
@@ -1599,7 +1599,7 @@ static int fill_mdres_info(struct mdrestore_struct *mdres,
}
super = (struct btrfs_super_block *)outbuf;
- mdres->nodesize = btrfs_super_nodesize(super);
+ mdres->nodesize = btrfs_stack_super_nodesize(super);
memcpy(mdres->fsid, super->fsid, BTRFS_FSID_SIZE);
memcpy(mdres->uuid, super->dev_item.uuid,
BTRFS_UUID_SIZE);
@@ -2044,7 +2044,7 @@ static int build_chunk_tree(struct mdrestore_struct *mdres,
pthread_mutex_lock(&mdres->mutex);
super = (struct btrfs_super_block *)buffer;
chunk_root_bytenr = btrfs_stack_super_chunk_root(super);
- mdres->nodesize = btrfs_super_nodesize(super);
+ mdres->nodesize = btrfs_stack_super_nodesize(super);
memcpy(mdres->fsid, super->fsid, BTRFS_FSID_SIZE);
memcpy(mdres->uuid, super->dev_item.uuid,
BTRFS_UUID_SIZE);
@@ -168,7 +168,7 @@ int make_btrfs(int fd, struct btrfs_mkfs_config *cfg)
btrfs_set_stack_super_bytes_used(&super, 6 * cfg->nodesize);
btrfs_set_stack_super_sectorsize(&super, cfg->sectorsize);
super.__unused_leafsize = cpu_to_le32(cfg->nodesize);
- btrfs_set_super_nodesize(&super, cfg->nodesize);
+ btrfs_set_stack_super_nodesize(&super, cfg->nodesize);
btrfs_set_super_stripesize(&super, cfg->stripesize);
btrfs_set_super_csum_type(&super, BTRFS_CSUM_TYPE_CRC32);
btrfs_set_stack_super_chunk_root_generation(&super, 1);
The super_nodesize set/get function defined by BTRFS_SETGET_STACK_FUNCS macro is missing the prefix stack. Signed-off-by: Lu Fengqi <lufq.fnst@cn.fujitsu.com> --- chunk-recover.c | 4 ++-- cmds-check.c | 6 +++--- cmds-inspect-dump-super.c | 2 +- convert/common.c | 2 +- ctree.h | 2 +- disk-io.c | 13 +++++++------ find-root.c | 2 +- image/main.c | 4 ++-- mkfs/common.c | 2 +- 9 files changed, 19 insertions(+), 18 deletions(-)