fs: btrfs: Add missing cache aligned allocation
authorMarek Vasut <marex@denx.de>
Mon, 17 May 2021 22:39:39 +0000 (00:39 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 26 May 2021 21:26:07 +0000 (17:26 -0400)
The superblock buffer must be cache aligned, since it might be used
in DMA context, allocate it using ALLOC_CACHE_ALIGN_BUFFER() just
like it was done in btrfs_read_superblock() and read_tree_node().

This fixes this output on boot and non-working btrfs on iMX53:
CACHE: Misaligned operation at range [ced299d0ced2a9d0]

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Marek BehĂșn <marek.behun@nic.cz>
Cc: Qu Wenruo <wqu@suse.com>
Reviewed-by: Marek BehĂșn <marek.behun@nic.cz>
fs/btrfs/disk-io.c

index c6fdec9..349411c 100644 (file)
@@ -291,7 +291,7 @@ error_out:
 int btrfs_read_dev_super(struct blk_desc *desc, struct disk_partition *part,
                         struct btrfs_super_block *sb)
 {
-       char tmp[BTRFS_SUPER_INFO_SIZE];
+       ALLOC_CACHE_ALIGN_BUFFER(char, tmp, BTRFS_SUPER_INFO_SIZE);
        struct btrfs_super_block *buf = (struct btrfs_super_block *)tmp;
        int ret;