* [PATCH] kernel: trace: strncpy, using strlcpy instead of strncpy
@ 2013-04-08 4:06 Chen Gang
2013-04-08 15:30 ` [tip:perf/urgent] perf: Fix strncpy() use, use strlcpy() instead of strncpy() tip-bot for Chen Gang
0 siblings, 1 reply; 2+ messages in thread
From: Chen Gang @ 2013-04-08 4:06 UTC (permalink / raw)
To: rostedt, Frederic Weisbecker, mingo@redhat.com,
linux-kernel@vger.kernel.org
for NUL terminated string, need always set '\0' at the end.
Signed-off-by: Chen Gang <gang.chen@asianux.com>
---
kernel/trace/trace.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 829b2be..07860b9 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -125,7 +125,7 @@ static bool allocate_snapshot;
static int __init set_cmdline_ftrace(char *str)
{
- strncpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
+ strlcpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
default_bootup_tracer = bootup_tracer_buf;
/* We are using ftrace early, expand it */
ring_buffer_expanded = true;
@@ -164,7 +164,7 @@ static char *trace_boot_options __initdata;
static int __init set_trace_boot_options(char *str)
{
- strncpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
+ strlcpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
trace_boot_options = trace_boot_options_buf;
return 0;
}
--
1.7.7.6
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [tip:perf/urgent] perf: Fix strncpy() use, use strlcpy() instead of strncpy()
2013-04-08 4:06 [PATCH] kernel: trace: strncpy, using strlcpy instead of strncpy Chen Gang
@ 2013-04-08 15:30 ` tip-bot for Chen Gang
0 siblings, 0 replies; 2+ messages in thread
From: tip-bot for Chen Gang @ 2013-04-08 15:30 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, fweisbec, gang.chen, tglx
Commit-ID: 67012ab1d2ce871afea4ee55408f233f97d09d07
Gitweb: http://git.kernel.org/tip/67012ab1d2ce871afea4ee55408f233f97d09d07
Author: Chen Gang <gang.chen@asianux.com>
AuthorDate: Mon, 8 Apr 2013 12:06:44 +0800
Committer: Ingo Molnar <mingo@kernel.org>
CommitDate: Mon, 8 Apr 2013 13:26:56 +0200
perf: Fix strncpy() use, use strlcpy() instead of strncpy()
For NUL terminated string we always need to set '\0' at the end.
Signed-off-by: Chen Gang <gang.chen@asianux.com>
Cc: rostedt@goodmis.org
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Link: http://lkml.kernel.org/r/51624254.30301@asianux.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
kernel/trace/trace.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 4f1dade..3f5046a 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -132,7 +132,7 @@ static char *default_bootup_tracer;
static int __init set_cmdline_ftrace(char *str)
{
- strncpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
+ strlcpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
default_bootup_tracer = bootup_tracer_buf;
/* We are using ftrace early, expand it */
ring_buffer_expanded = 1;
@@ -162,7 +162,7 @@ static char *trace_boot_options __initdata;
static int __init set_trace_boot_options(char *str)
{
- strncpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
+ strlcpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
trace_boot_options = trace_boot_options_buf;
return 0;
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-04-08 15:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-08 4:06 [PATCH] kernel: trace: strncpy, using strlcpy instead of strncpy Chen Gang
2013-04-08 15:30 ` [tip:perf/urgent] perf: Fix strncpy() use, use strlcpy() instead of strncpy() tip-bot for Chen Gang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox