The patch titled proc-fix-proc_kill_inodes-to-kill-dentries-on-all-proc-superblocks-checkpatch-fixes has been removed from the -mm tree. Its filename was proc-fix-proc_kill_inodes-to-kill-dentries-on-all-proc-superblocks-checkpatch-fixes.patch This patch was dropped because it was folded into proc-fix-proc_kill_inodes-to-kill-dentries-on-all-proc-superblocks.patch ------------------------------------------------------ Subject: proc-fix-proc_kill_inodes-to-kill-dentries-on-all-proc-superblocks-checkpatch-fixes From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> WARNING: line over 80 characters #51: FILE: fs/proc/generic.c:573: + struct file * filp = list_entry(p, struct file, f_u.fu_list); ERROR: "foo * bar" should be "foo *bar" #51: FILE: fs/proc/generic.c:573: + struct file * filp = list_entry(p, struct file, f_u.fu_list); ERROR: "foo * bar" should be "foo *bar" #52: FILE: fs/proc/generic.c:574: + struct dentry * dentry = filp->f_path.dentry; ERROR: "foo * bar" should be "foo *bar" #53: FILE: fs/proc/generic.c:575: + struct inode * inode; total: 3 errors, 1 warnings, 62 lines checked Your patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Alexey Dobriyan <adobriyan@xxxxx> Cc: Eric W. Biederman <ebiederm@xxxxxxxxxxxx> Cc: Pavel Emelyanov <xemul@xxxxxxxxxx> Cc: Sukadev Bhattiprolu <sukadev@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/proc/generic.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff -puN fs/proc/generic.c~proc-fix-proc_kill_inodes-to-kill-dentries-on-all-proc-superblocks-checkpatch-fixes fs/proc/generic.c --- a/fs/proc/generic.c~proc-fix-proc_kill_inodes-to-kill-dentries-on-all-proc-superblocks-checkpatch-fixes +++ a/fs/proc/generic.c @@ -570,9 +570,10 @@ static void proc_kill_inodes(struct proc list_for_each_entry(sb, &proc_fs_type.fs_supers, s_instances) { file_list_lock(); list_for_each(p, &sb->s_files) { - struct file * filp = list_entry(p, struct file, f_u.fu_list); - struct dentry * dentry = filp->f_path.dentry; - struct inode * inode; + struct file *filp = list_entry(p, struct file, + f_u.fu_list); + struct dentry *dentry = filp->f_path.dentry; + struct inode *inode; const struct file_operations *fops; if (dentry->d_op != &proc_dentry_operations) _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch uml-update-address-space-affected-by-pud_clear.patch proc-fix-proc_kill_inodes-to-kill-dentries-on-all-proc-superblocks.patch proc-fix-proc_kill_inodes-to-kill-dentries-on-all-proc-superblocks-checkpatch-fixes.patch acpi-make-acpi_procfs-default-to-y.patch hugetlb-split-alloc_huge_page-into-private-and-shared-components-checkpatch-fixes.patch revert-task-control-groups-example-cpu-accounting-subsystem.patch mips-undo-locking-on-error-path-returns-checkpatch-fixes.patch pidns-place-under-config_experimental-checkpatch-fixes.patch fix-64kb-blocksize-in-ext3-directories-checkpatch-fixes.patch file-capabilities-allow-sigcont-within-session-v2-checkpatch-fixes.patch x86-disable-preemption-in-delay_tsc.patch aic94xx_sds-rename-flash_size.patch mips-pcspkr-build-fix.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