projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a541641
)
tracing: Remove unneeded check of max_tr->buffer before tracing_reset
author
Steven Rostedt
<srostedt@redhat.com>
Fri, 21 Dec 2012 02:43:52 +0000
(21:43 -0500)
committer
Steven Rostedt
<rostedt@goodmis.org>
Mon, 21 Jan 2013 18:22:33 +0000
(13:22 -0500)
There's now a check in tracing_reset_online_cpus() if the buffer is
allocated or NULL. No need to do a check before calling it with max_tr.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
kernel/trace/trace.c
patch
|
blob
|
history
diff --git
a/kernel/trace/trace.c
b/kernel/trace/trace.c
index 72b171b90e5588cf10e86e1bf5bd1ae29585dfb7..d62248dfda760ce8b91fba6a192a29121c0f9b34 100644
(file)
--- a/
kernel/trace/trace.c
+++ b/
kernel/trace/trace.c
@@
-4040,8
+4040,7
@@
static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
* Reset the buffer so that it doesn't have incomparable timestamps.
*/
tracing_reset_online_cpus(&global_trace);
- if (max_tr.buffer)
- tracing_reset_online_cpus(&max_tr);
+ tracing_reset_online_cpus(&max_tr);
mutex_unlock(&trace_types_lock);