[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20150811230401.GA9072@www.outflux.net>
Date: Tue, 11 Aug 2015 16:04:01 -0700
From: Kees Cook <keescook@...omium.org>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] 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@...omium.org>
---
include/linux/seq_file.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h
index ff4c631348dd..d4c7271382cb 100644
--- a/include/linux/seq_file.h
+++ b/include/linux/seq_file.h
@@ -155,7 +155,8 @@ static inline struct user_namespace *seq_user_ns(struct seq_file *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\\");
--
1.9.1
--
Kees Cook
Chrome OS Security
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists