diff options
author | Anastasia Belova <abelova@astralinux.ru> | 2023-04-26 14:53:23 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2023-05-09 22:07:40 +0200 |
commit | c87f318e6f47696b4040b58f460d5c17ea0280e6 (patch) | |
tree | c1fc071519fe6e13a16f382249918147d3ac671b | |
parent | d246331b78cbef86237f9c22389205bc9b4e1cc1 (diff) | |
download | linux-c87f318e6f47696b4040b58f460d5c17ea0280e6.tar.gz linux-c87f318e6f47696b4040b58f460d5c17ea0280e6.tar.bz2 linux-c87f318e6f47696b4040b58f460d5c17ea0280e6.zip |
btrfs: print-tree: parent bytenr must be aligned to sector size
Check nodesize to sectorsize in alignment check in print_extent_item.
The comment states that and this is correct, similar check is done
elsewhere in the functions.
Found by Linux Verification Center (linuxtesting.org) with SVACE.
Fixes: ea57788eb76d ("btrfs: require only sector size alignment for parent eb bytenr")
CC: stable@vger.kernel.org # 4.14+
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: Anastasia Belova <abelova@astralinux.ru>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
-rw-r--r-- | fs/btrfs/print-tree.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/btrfs/print-tree.c b/fs/btrfs/print-tree.c index b93c96213304..497b9dbd8a13 100644 --- a/fs/btrfs/print-tree.c +++ b/fs/btrfs/print-tree.c @@ -151,10 +151,10 @@ static void print_extent_item(struct extent_buffer *eb, int slot, int type) pr_cont("shared data backref parent %llu count %u\n", offset, btrfs_shared_data_ref_count(eb, sref)); /* - * offset is supposed to be a tree block which - * must be aligned to nodesize. + * Offset is supposed to be a tree block which must be + * aligned to sectorsize. */ - if (!IS_ALIGNED(offset, eb->fs_info->nodesize)) + if (!IS_ALIGNED(offset, eb->fs_info->sectorsize)) pr_info( "\t\t\t(parent %llu not aligned to sectorsize %u)\n", offset, eb->fs_info->sectorsize); |