Commit 4d85a45df031 for kernel

commit 4d85a45df03118ade0eb34486fb7948bca17acf8
Merge: 31a4327ffe2d 135d84c66f85
Author: Linus Torvalds <torvalds@linux-foundation.org>
Date:   Sat Sep 12 08:18:50 2026 -0700

    Merge tag 'erofs-for-7.3-rc3-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs

    Pull erofs updates from Gao Xiang:
     "The most impactful fix here is to disable LZ4 rolling decompression
      for now.

      AWS folks recently found their systems could get corrupted data with
      some rare, specific LZ4 datasets, and after a deeper analysis, I found
      the root cause is that there could be uncontrolled backward memory
      copies in the current LZ4 implementation and it breaks the assumption
      of the rolling decompression optimization, since the kernel LZ4
      codebase is out of our control and it needs more time to plan how to
      do next, so disable LZ4 rolling decompression for now to ensure data
      correctness for real production on these rare cases first. The
      technical details also see the corresponding commit.

      Other changes are random minor fixes.

      Summary:

       - Disable LZ4 rolling decompression for now due to the uncontrolled
         LZ4 implementation

       - Fix missing sysfs feature entry for xattr prefixes

       - Fix invalid LZMA decoders on resize failure

       - Rearrange the inode_share cache key to avoid potential collisions

       - Fix erofs_bread() when fsoffset is used on sub-page-block EROFS
         filesystems"

    * tag 'erofs-for-7.3-rc3-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs:
      erofs: add missing buf->off in erofs_bread()
      erofs: delimit inode_share cache key components
      erofs: disable LZ4 rolling decompression for now
      erofs: preserve LZMA decoders on resize failure
      erofs: add sysfs feature entry for xattr prefixes