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)
commit9e8bb078859a559b17effdb21bafdb050b859b6e
treef3f1d25feb8b60e601bb9e6c22a193e2bb5c1a71
parent53ba2c21c2df142b37bb2f0d6850d79dcfd8976f
fs: btrfs: Add missing cache aligned allocation

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