The patch titled Subject: fs-create-and-use-seq_show_option-for-escaping-fix2 has been removed from the -mm tree. Its filename was fs-create-and-use-seq_show_option-for-escaping-fix2.patch This patch was dropped because it was folded into fs-create-and-use-seq_show_option-for-escaping.patch ------------------------------------------------------ From: Kees Cook <keescook@xxxxxxxxxxxx> Subject: fs-create-and-use-seq_show_option-for-escaping-fix2 The buildbots noticed seq_show_option should be using const parameters. Signed-off-by: Kees Cook <keescook@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/seq_file.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN include/linux/seq_file.h~fs-create-and-use-seq_show_option-for-escaping-fix2 include/linux/seq_file.h --- a/include/linux/seq_file.h~fs-create-and-use-seq_show_option-for-escaping-fix2 +++ a/include/linux/seq_file.h @@ -155,7 +155,8 @@ static inline struct user_namespace *seq * @name: the mount option name * @value: the mount option name's value, can be NULL */ -static inline void seq_show_option(struct seq_file *m, char *name, char *value) +static inline void seq_show_option(struct seq_file *m, const char *name, + const char *value) { seq_putc(m, ','); seq_escape(m, name, ",= \t\n\\"); _ Patches currently in -mm which might be from keescook@xxxxxxxxxxxx are clk_register_clkdev-handle-callers-needing-format-string.patch fs-create-and-use-seq_show_option-for-escaping.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