tools lib traceevent: Fix %pM print format arg handling
authorSteven Rostedt <srostedt@redhat.com>
Mon, 9 Jan 2012 20:58:09 +0000 (15:58 -0500)
committerNamhyung Kim <namhyung@kernel.org>
Wed, 4 Jul 2012 04:40:30 +0000 (13:40 +0900)
commitaaf05c725bed1c7a8c940d9215662c78bea05dfd
tree54da02fec56da35c1ce9e27ad206b1c81a1ea4d0
parent0866a97eb7562409ba792f5e904841dd8e23c8b5
tools lib traceevent: Fix %pM print format arg handling

When %pM is used, the arg value must be a 6 byte character that will
be printed as a 6 byte MAC address. But the code does a break over the
main code which updates the current processing arg to point to the
next arg. If there are other print arguments after a %pM, they will be
off by one. The next arg will still be processing the %pM arg.

Reported-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/n/tip-q3g0n1espikynsdkpbi6ue6t@git.kernel.org
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
tools/lib/traceevent/event-parse.c