]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
tools lib traceevent: Fix output of %llu for 64 bit values read on 32 bit machines
authorSteven Rostedt <rostedt@goodmis.org>
Mon, 16 Nov 2015 22:25:16 +0000 (17:25 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Feb 2016 19:58:52 +0000 (11:58 -0800)
commitce57c15c188facb665568777e6509af07d6019b9
treec7c2fff8a175ec7189fd0edeceae13780836234f
parent8a558d9a0567b62f89aa6419fbf61d220cf140dd
tools lib traceevent: Fix output of %llu for 64 bit values read on 32 bit machines

commit 32abc2ede536aae52978d6c0a8944eb1df14f460 upstream.

When a long value is read on 32 bit machines for 64 bit output, the
parsing needs to change "%lu" into "%llu", as the value is read
natively.

Unfortunately, if "%llu" is already there, the code will add another "l"
to it and fail to parse it properly.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Acked-by: Namhyung Kim <namhyung@kernel.org>
Link: http://lkml.kernel.org/r/20151116172516.4b79b109@gandalf.local.home
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
tools/lib/traceevent/event-parse.c