Add the field names to marker example format string. Signed-off-by: Mathieu Desnoyers --- samples/markers/marker-example.c | 3 ++- samples/markers/probe-example.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) Index: linux-2.6-lttng/samples/markers/marker-example.c =================================================================== --- linux-2.6-lttng.orig/samples/markers/marker-example.c 2007-11-03 20:56:35.000000000 -0400 +++ linux-2.6-lttng/samples/markers/marker-example.c 2007-11-03 20:57:08.000000000 -0400 @@ -19,7 +19,8 @@ static int my_open(struct inode *inode, { 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; Index: linux-2.6-lttng/samples/markers/probe-example.c =================================================================== --- linux-2.6-lttng.orig/samples/markers/probe-example.c 2007-11-03 20:57:38.000000000 -0400 +++ linux-2.6-lttng/samples/markers/probe-example.c 2007-11-03 20:57:51.000000000 -0400 @@ -53,7 +53,7 @@ void probe_subsystem_eventb(const struct 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, -- Mathieu Desnoyers Computer Engineering Ph.D. Student, Ecole Polytechnique de Montreal OpenPGP key fingerprint: 8CD5 52C3 8E3C 4140 715F BA06 3F25 A8FE 3BAE 9A68 - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/