The patch titled Subject: squashfs-implement-readahead-checkpatch-fixes has been added to the -mm mm-nonmm-unstable branch. Its filename is squashfs-implement-readahead-checkpatch-fixes.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/squashfs-implement-readahead-checkpatch-fixes.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-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-oom_killc-fix-vm_oom_kill_table-ifdeffery.patch 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-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 squashfs-implement-readahead-checkpatch-fixes.patch