提交 cc9f2f8f 编写于 作者: M Mathieu Desnoyers 提交者: Linus Torvalds

Linux Kernel Markers: fix samples to follow format string standard

Add the field names to marker example format string.
Signed-off-by: NMathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 5f9468ce
......@@ -19,7 +19,8 @@ static int my_open(struct inode *inode, struct file *file)
{
int i;
trace_mark(subsystem_event, "%d %s", 123, "example string");
trace_mark(subsystem_event, "integer %d string %s", 123,
"example string");
for (i = 0; i < 10; i++)
trace_mark(subsystem_eventb, MARK_NOARGS);
return -EPERM;
......
......@@ -53,7 +53,7 @@ void probe_subsystem_eventb(const struct marker *mdata, void *private,
static struct probe_data probe_array[] =
{
{ .name = "subsystem_event",
.format = "%d %s",
.format = "integer %d string %s",
.probe_func = probe_subsystem_event },
{ .name = "subsystem_eventb",
.format = MARK_NOARGS,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册