The patch titled Subject: squashfs-cache-partial-compressed-blocks-fix-3-fix has been added to the -mm mm-nonmm-unstable branch. Its filename is squashfs-cache-partial-compressed-blocks-fix-3-fix.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/squashfs-cache-partial-compressed-blocks-fix-3-fix.patch This patch will later appear in the mm-nonmm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: squashfs-cache-partial-compressed-blocks-fix-3-fix Date: Fri May 26 10:55:48 AM PDT 2023 fix layout, per hch Cc: Christoph Hellwig <hch@xxxxxx> Cc: Phillip Lougher <phillip@xxxxxxxxxxxxxxx> Cc: Vincent Whitchurch <vincent.whitchurch@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/squashfs/block.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/fs/squashfs/block.c~squashfs-cache-partial-compressed-blocks-fix-3-fix +++ a/fs/squashfs/block.c @@ -142,7 +142,8 @@ static int squashfs_bio_read_cached(stru if (head_to_cache) { int ret = add_to_page_cache_lru(head_to_cache, cache_mapping, - read_start >> PAGE_SHIFT, GFP_NOIO); + read_start >> PAGE_SHIFT, + GFP_NOIO); if (!ret) { SetPageUptodate(head_to_cache); @@ -153,7 +154,8 @@ static int squashfs_bio_read_cached(stru if (tail_to_cache) { int ret = add_to_page_cache_lru(tail_to_cache, cache_mapping, - (read_end >> PAGE_SHIFT) - 1, GFP_NOIO); + (read_end >> PAGE_SHIFT) - 1, + GFP_NOIO); if (!ret) { SetPageUptodate(tail_to_cache); _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-compaction-optimize-compact_memory-to-comply-with-the-admin-guide-fix.patch mm-page_owner-add-page_owner_stacks-file-to-print-out-only-stacks-and-their-counte-fix.patch mm-page_owner-add-page_owner_stacks-file-to-print-out-only-stacks-and-their-counte-fix-fix.patch mmpage_owner-filter-out-stacks-by-a-threshold-counter-fix.patch mm-mlock-rename-mlock_future_check-to-mlock_future_ok.patch fork-optimize-memcg_charge_kernel_stack-a-bit-fix.patch squashfs-cache-partial-compressed-blocks-fix.patch squashfs-cache-partial-compressed-blocks-fix-3-fix.patch init-add-bdev-fs-printk-if-mount_block_root-failed-fix.patch