The patch titled Subject: sysctl-handle-error-writing-uint_max-to-u32-fields-checkpatch-fixes has been removed from the -mm tree. Its filename was sysctl-handle-error-writing-uint_max-to-u32-fields-checkpatch-fixes.patch This patch was dropped because it was folded into sysctl-handle-error-writing-uint_max-to-u32-fields.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: sysctl-handle-error-writing-uint_max-to-u32-fields-checkpatch-fixes WARNING: please, no spaces at the start of a line #101: FILE: kernel/sysctl.c:2297: + return do_proc_dointvec(table,write,buffer,lenp,ppos,$ ERROR: space required after that ',' (ctx:VxV) #101: FILE: kernel/sysctl.c:2297: + return do_proc_dointvec(table,write,buffer,lenp,ppos, ^ ERROR: space required after that ',' (ctx:VxV) #101: FILE: kernel/sysctl.c:2297: + return do_proc_dointvec(table,write,buffer,lenp,ppos, ^ ERROR: space required after that ',' (ctx:VxV) #101: FILE: kernel/sysctl.c:2297: + return do_proc_dointvec(table,write,buffer,lenp,ppos, ^ ERROR: space required after that ',' (ctx:VxV) #101: FILE: kernel/sysctl.c:2297: + return do_proc_dointvec(table,write,buffer,lenp,ppos, ^ WARNING: ENOSYS means 'invalid syscall nr' and nothing else #115: FILE: kernel/sysctl.c:2899: + return -ENOSYS; total: 4 errors, 2 warnings, 74 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/sysctl-handle-error-writing-uint_max-to-u32-fields.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: Subash Abhinov Kasiviswanathan <subashab@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/sysctl.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff -puN kernel/sysctl.c~sysctl-handle-error-writing-uint_max-to-u32-fields-checkpatch-fixes kernel/sysctl.c --- a/kernel/sysctl.c~sysctl-handle-error-writing-uint_max-to-u32-fields-checkpatch-fixes +++ a/kernel/sysctl.c @@ -2274,8 +2274,7 @@ static int do_proc_dointvec(struct ctl_t int proc_dointvec(struct ctl_table *table, int write, void __user *buffer, size_t *lenp, loff_t *ppos) { - return do_proc_dointvec(table,write,buffer,lenp,ppos, - NULL,NULL); + return do_proc_dointvec(table, write, buffer, lenp, ppos, NULL, NULL); } /** @@ -2294,7 +2293,7 @@ int proc_dointvec(struct ctl_table *tabl int proc_douintvec(struct ctl_table *table, int write, void __user *buffer, size_t *lenp, loff_t *ppos) { - return do_proc_dointvec(table,write,buffer,lenp,ppos, + return do_proc_dointvec(table, write, buffer, lenp, ppos, do_proc_douintvec_conv, NULL); } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are sysctl-handle-error-writing-uint_max-to-u32-fields.patch sysctl-handle-error-writing-uint_max-to-u32-fields-checkpatch-fixes-checkpatch-fixes.patch arch-alpha-kernel-systblss-remove-debug-check.patch i-need-old-gcc.patch arm-arch-arm-include-asm-pageh-needs-personalityh.patch mm.patch mm-vmalloc-fix-align-value-calculation-error-fix.patch mm-vmalloc-fix-align-value-calculation-error-v2-fix.patch mm-vmalloc-fix-align-value-calculation-error-v2-fix-fix.patch mm-compaction-make-whole_zone-flag-ignore-cached-scanner-positions-checkpatch-fixes.patch mm-swap-add-swap_cluster_list-checkpatch-fixes.patch seq-proc-modify-seq_put_decimal_ll-to-take-a-const-char-not-char-fix.patch powerpc-factor-out-relocation-code-from-module_64c-to-elf_util_64c-checkpatch-fixes.patch powerpc-adapt-elf64_apply_relocate_add-for-kexec_file_load-checkpatch-fixes.patch powerpc-add-code-to-work-with-device-trees-in-kexec_file_load-checkpatch-fixes.patch ima-demonstration-code-for-kexec-buffer-passing-checkpatch-fixes.patch ipc-msg-avoid-waking-sender-upon-full-queue-checkpatch-fixes.patch drivers-net-wireless-intel-iwlwifi-dvm-calibc-fix-min-warning.patch include-linux-mlx5-deviceh-kill-build_bug_ons.patch kernel-forkc-export-kernel_thread-to-modules.patch slab-leaks3-default-y.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html