The patch titled Subject: ipc/msg.c: Adjust indentation in ksys_msgctl has been added to the -mm tree. Its filename is ipc-consolidate-all-xxxctl_down-functions-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/ipc-consolidate-all-xxxctl_down-functions-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/ipc-consolidate-all-xxxctl_down-functions-fix.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: Nathan Chancellor <natechancellor@xxxxxxxxx> Subject: ipc/msg.c: Adjust indentation in ksys_msgctl Clang warns: ../ipc/msg.c:621:4: warning: misleading indentation; statement is not part of the previous 'if' [-Wmisleading-indentation] return msgctl_down(ns, msqid, cmd, &msqid64.msg_perm, msqid64.msg_qbytes); ^ ../ipc/msg.c:619:3: note: previous statement is here if (copy_msqid_from_user(&msqid64, buf, version)) ^ 1 warning generated. This warning occurs because there is a space after the tab on this line. Remove it so that the indentation is consistent with the Linux kernel coding style and clang no longer warns. Link: https://github.com/ClangBuiltLinux/linux/issues/829 Link: http://lkml.kernel.org/r/20191218032932.37479-1-natechancellor@xxxxxxxxx Signed-off-by: Nathan Chancellor <natechancellor@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- ipc/msg.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/ipc/msg.c~ipc-consolidate-all-xxxctl_down-functions-fix +++ a/ipc/msg.c @@ -618,7 +618,8 @@ static long ksys_msgctl(int msqid, int c case IPC_SET: if (copy_msqid_from_user(&msqid64, buf, version)) return -EFAULT; - return msgctl_down(ns, msqid, cmd, &msqid64.msg_perm, msqid64.msg_qbytes); + return msgctl_down(ns, msqid, cmd, &msqid64.msg_perm, + msqid64.msg_qbytes); case IPC_RMID: return msgctl_down(ns, msqid, cmd, NULL, 0); default: _ Patches currently in -mm which might be from natechancellor@xxxxxxxxx are lib-scatterlist-adjust-indentation-in-__sg_alloc_table.patch ipc-consolidate-all-xxxctl_down-functions-fix.patch