The patch titled Subject: mm/mlock: minor coding style tweaks has been added to the -mm tree. Its filename is mm-mlock-minor-coding-style-tweaks.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/mm-mlock-minor-coding-style-tweaks.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/mm-mlock-minor-coding-style-tweaks.patch 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 and is updated there every 3-4 working days ------------------------------------------------------ From: Zhiyuan Dai <daizhiyuan@xxxxxxxxxxxxxx> Subject: mm/mlock: minor coding style tweaks Move the pointer location to fix coding style issues, improve code reading. Link: https://lkml.kernel.org/r/1613956588-2453-1-git-send-email-daizhiyuan@xxxxxxxxxxxxxx Signed-off-by: Zhiyuan Dai <daizhiyuan@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/mlock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/mm/mlock.c~mm-mlock-minor-coding-style-tweaks +++ a/mm/mlock.c @@ -559,7 +559,7 @@ static int apply_vma_lock_flags(unsigned vm_flags_t flags) { unsigned long nstart, end, tmp; - struct vm_area_struct * vma, * prev; + struct vm_area_struct *vma, *prev; int error; VM_BUG_ON(offset_in_page(start)); @@ -737,7 +737,7 @@ SYSCALL_DEFINE2(munlock, unsigned long, */ static int apply_mlockall_flags(int flags) { - struct vm_area_struct * vma, * prev = NULL; + struct vm_area_struct *vma, *prev = NULL; vm_flags_t to_add = 0; current->mm->def_flags &= VM_LOCKED_CLEAR_MASK; _ Patches currently in -mm which might be from daizhiyuan@xxxxxxxxxxxxxx are mm-memremap-fixes-improper-spdx-comment-style.patch mm-zswap-switch-from-strlcpy-to-strscpy.patch mm-swapfile-minor-coding-style-tweaks.patch mm-sparse-minor-coding-style-tweaks.patch mm-vmscan-minor-coding-style-tweaks.patch mm-compaction-minor-coding-style-tweaks.patch mm-oom_kill-minor-coding-style-tweaks.patch mm-shmem-minor-coding-style-tweaks.patch mm-page_alloc-minor-coding-style-tweaks.patch mm-filemap-minor-coding-style-tweaks.patch mm-mlock-minor-coding-style-tweaks.patch mm-frontswap-minor-coding-style-tweaks.patch mm-vmalloc-minor-coding-style-tweaks.patch mm-memory_hotplug-minor-coding-style-tweaks.patch mm-mempolicy-minor-coding-style-tweaks.patch