The quilt patch titled Subject: squashfs-implement-readahead-checkpatch-fixes has been removed from the -mm tree. Its filename was squashfs-implement-readahead-checkpatch-fixes.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: squashfs-implement-readahead-checkpatch-fixes Date: Wed Jun 1 01:59:05 PM PDT 2022 ERROR: need consistent spacing around '&' (ctx:WxO) #54: FILE: fs/squashfs/file.c:505: + loff_t start = readahead_pos(ractl) &~ mask; ^ ERROR: space prohibited after that '~' (ctx:OxW) #54: FILE: fs/squashfs/file.c:505: + loff_t start = readahead_pos(ractl) &~ mask; ^ total: 2 errors, 0 warnings, 109 lines checked NOTE: For some of the reported defects, checkpatch may be able to mechanically convert to the typical style using --fix or --fix-inplace. ./patches/squashfs-implement-readahead.patch has style problems, please review. NOTE: If any of the errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Hsin-Yi Wang <hsinyi@xxxxxxxxxxxx> Cc: Phillip Lougher <phillip@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/squashfs/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/squashfs/file.c~squashfs-implement-readahead-checkpatch-fixes +++ a/fs/squashfs/file.c @@ -502,7 +502,7 @@ static void squashfs_readahead(struct re struct squashfs_sb_info *msblk = inode->i_sb->s_fs_info; size_t mask = (1UL << msblk->block_log) - 1; unsigned short shift = msblk->block_log - PAGE_SHIFT; - loff_t start = readahead_pos(ractl) &~ mask; + loff_t start = readahead_pos(ractl) & ~mask; size_t len = readahead_length(ractl) + readahead_pos(ractl) - start; struct squashfs_page_actor *actor; unsigned int nr_pages = 0; _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-page_alloc-remotely-drain-per-cpu-lists-checkpatch-fixes.patch mm-start-tracking-vmas-with-maple-tree-fix.patch damon-convert-__damon_va_three_regions-to-use-the-vma-iterator-fix.patch mm-mmap-use-advanced-maple-tree-api-for-mmap_region-fix-checkpatch-fixes.patch mm-remove-the-vma-linked-list-fix-fix.patch mm-remove-the-vma-linked-list-fix-fix-fix.patch mm-handling-non-lru-pages-returned-by-vm_normal_pages-fix.patch mm-introduce-clear_highpage_tagged-fix.patch kasan-fix-zeroing-vmalloc-memory-with-hw_tags-fix.patch mm-shrinkers-add-scan-interface-for-shrinker-debugfs-fix-fix.patch mm-drop-oom-code-from-exit_mmap-fix-fix.patch mm-add-merging-after-mremap-resize-checkpatch-fixes.patch