The patch titled Subject: fs-seq_file-convert-int-seq_vprint-seq_printf-etc-returns-to-void-fix has been removed from the -mm tree. Its filename was fs-seq_file-convert-int-seq_vprint-seq_printf-etc-returns-to-void-fix.patch This patch was dropped because it was folded into fs-seq_file-convert-int-seq_vprint-seq_printf-etc-returns-to-void.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: fs-seq_file-convert-int-seq_vprint-seq_printf-etc-returns-to-void-fix Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Cc: Steven Rostedt <rostedt@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/nsfs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN fs/nsfs.c~fs-seq_file-convert-int-seq_vprint-seq_printf-etc-returns-to-void-fix fs/nsfs.c --- a/fs/nsfs.c~fs-seq_file-convert-int-seq_vprint-seq_printf-etc-returns-to-void-fix +++ a/fs/nsfs.c @@ -142,7 +142,8 @@ static int nsfs_show_path(struct seq_fil struct inode *inode = d_inode(dentry); const struct proc_ns_operations *ns_ops = dentry->d_fsdata; - return seq_printf(seq, "%s:[%lu]", ns_ops->name, inode->i_ino); + seq_printf(seq, "%s:[%lu]", ns_ops->name, inode->i_ino); + return 0; } static const struct super_operations nsfs_ops = { _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are fs-seq_file-convert-int-seq_vprint-seq_printf-etc-returns-to-void.patch fs-seq_file-convert-int-seq_vprint-seq_printf-etc-returns-to-void-fix-fix.patch revert-ocfs2-dlm-use-list_for_each_entry-instead-of-list_for_each.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