tracing: Fix trace_printk() to print when not using bprintk()
authorSteven Rostedt (Red Hat) <rostedt@goodmis.org>
Tue, 22 Mar 2016 21:30:58 +0000 (17:30 -0400)
committerSasha Levin <sasha.levin@oracle.com>
Mon, 18 Apr 2016 12:51:06 +0000 (08:51 -0400)
commitbef794e8c891b60da2dec86c90f1e46fa142ea1e
treea9e8b8eb99829123676c84ce406f53ec33225db7
parent01954dfd48d936199204ae0860897b8aed18c1e2
tracing: Fix trace_printk() to print when not using bprintk()

[ Upstream commit 3debb0a9ddb16526de8b456491b7db60114f7b5e ]

The trace_printk() code will allocate extra buffers if the compile detects
that a trace_printk() is used. To do this, the format of the trace_printk()
is saved to the __trace_printk_fmt section, and if that section is bigger
than zero, the buffers are allocated (along with a message that this has
happened).

If trace_printk() uses a format that is not a constant, and thus something
not guaranteed to be around when the print happens, the compiler optimizes
the fmt out, as it is not used, and the __trace_printk_fmt section is not
filled. This means the kernel will not allocate the special buffers needed
for the trace_printk() and the trace_printk() will not write anything to the
tracing buffer.

Adding a "__used" to the variable in the __trace_printk_fmt section will
keep it around, even though it is set to NULL. This will keep the string
from being printed in the debugfs/tracing/printk_formats section as it is
not needed.

Reported-by: Vlastimil Babka <vbabka@suse.cz>
Fixes: 07d777fe8c398 "tracing: Add percpu buffers for trace_printk()"
Cc: stable@vger.kernel.org # v3.5+
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
include/linux/kernel.h
kernel/trace/trace_printk.c