linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] kernel: trace: ftrace: strncpy, using strlcpy instead of strncpy
@ 2013-04-08  4:12 Chen Gang
  2013-04-08 15:31 ` [tip:perf/urgent] ftrace: Fix strncpy() use, use strlcpy() instead of strncpy() tip-bot for Chen Gang
  2013-04-09 15:00 ` [PATCH] kernel: trace: ftrace: strncpy, using strlcpy instead of strncpy Steven Rostedt
  0 siblings, 2 replies; 5+ messages in thread
From: Chen Gang @ 2013-04-08  4:12 UTC (permalink / raw)
  To: rostedt, Frederic Weisbecker, mingo, linux-kernel


  for NUL terminated string, need always set '\0' at the end.

Signed-off-by: Chen Gang <gang.chen@asianux.com>
---
 kernel/trace/ftrace.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
index dfd33f0..fa984b7 100644
--- a/kernel/trace/ftrace.c
+++ b/kernel/trace/ftrace.c
@@ -3492,14 +3492,14 @@ static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
 
 static int __init set_ftrace_notrace(char *str)
 {
-	strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
+	strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
 	return 1;
 }
 __setup("ftrace_notrace=", set_ftrace_notrace);
 
 static int __init set_ftrace_filter(char *str)
 {
-	strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
+	strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
 	return 1;
 }
 __setup("ftrace_filter=", set_ftrace_filter);
-- 
1.7.7.6

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-04-10  6:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-08  4:12 [PATCH] kernel: trace: ftrace: strncpy, using strlcpy instead of strncpy Chen Gang
2013-04-08 15:31 ` [tip:perf/urgent] ftrace: Fix strncpy() use, use strlcpy() instead of strncpy() tip-bot for Chen Gang
2013-04-09  1:38   ` Chen Gang
2013-04-09 15:00 ` [PATCH] kernel: trace: ftrace: strncpy, using strlcpy instead of strncpy Steven Rostedt
2013-04-10  6:25   ` Chen Gang F T

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).