public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/22] perf tools: Backport of latest changes on trace-cmd's libparseevent
@ 2012-05-23  2:36 Namhyung Kim
  2012-05-23  2:36 ` [PATCH 01/22] lib/traceevent: Let filtering numbers by string use function names Namhyung Kim
                   ` (23 more replies)
  0 siblings, 24 replies; 41+ messages in thread
From: Namhyung Kim @ 2012-05-23  2:36 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: Peter Zijlstra, Paul Mackerras, Ingo Molnar, Namhyung Kim, LKML,
	Steven Rostedt, Frederic Weisbecker

Hi,

This is a patchset which attempts to sync what we have on trace-cmd
into libtraceevent. Although some patch introduced new call-sites of
die() or malloc_or_die(), it'll be removed eventually (or later work)
and this helps marking the every locations that we need to track.

Thanks,
Namhyung


Namhyung Kim (15):
  lib/traceevent: Fix printk_cmp()
  lib/traceevent: Introduce extend_token()
  lib/traceevent: Handle strdup failure cases
  lib/traceevent: Fix a possible memory leak
  lib/traceevent: Handle realloc() failure path
  lib/traceevent: Fix a possibly wrong memory dereference
  lib/traceevent: Fix freeing arg on process_dynamic_array()
  lib/traceevent: Use proper function parameter type
  lib/traceevent: Pass string type argument to args
  lib/traceevent: Do not call add_event() again if allocation failed
  lib/traceevent: Fix some comments
  lib/traceevent: Check result of malloc() during reading token
  lib/traceevent: Fix signature of create_arg_item()
  lib/traceevent: Check return value of arg_to_str()
  lib/traceevent: Cleanup realloc use

Peter Huewe (1):
  lib/traceevent: Add missing break in make_bprint_args

Stefan Hajnoczi (1):
  lib/traceevent: Allow expressions in __print_symbolic() fields

Steven Rostedt (4):
  lib/traceevent: Let filtering numbers by string use function names
  lib/traceevent: Add support for "%.*s" in bprintk events
  lib/traceevent: Add support to show migrate disable counter
  lib/traceevent: Fix %pM print format arg handling

Wolfgang Mauerer (1):
  lib/traceevent: Fix trace_printk for long integers

 tools/lib/traceevent/event-parse.c  |  309 ++++++++++++++++++++++++-----------
 tools/lib/traceevent/parse-filter.c |   91 +++++++----
 2 files changed, 271 insertions(+), 129 deletions(-)

-- 
1.7.10.1


^ permalink raw reply	[flat|nested] 41+ messages in thread

end of thread, other threads:[~2012-06-13  2:42 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-23  2:36 [PATCH 00/22] perf tools: Backport of latest changes on trace-cmd's libparseevent Namhyung Kim
2012-05-23  2:36 ` [PATCH 01/22] lib/traceevent: Let filtering numbers by string use function names Namhyung Kim
2012-05-23  2:36 ` [PATCH 02/22] lib/traceevent: Add support for "%.*s" in bprintk events Namhyung Kim
2012-05-23  2:36 ` [PATCH 03/22] lib/traceevent: Add support to show migrate disable counter Namhyung Kim
2012-05-23  2:36 ` [PATCH 04/22] lib/traceevent: Fix %pM print format arg handling Namhyung Kim
2012-05-23  2:36 ` [PATCH 05/22] lib/traceevent: Allow expressions in __print_symbolic() fields Namhyung Kim
2012-05-24 17:16   ` [tip:perf/urgent] tools lib traceevent: " tip-bot for Stefan Hajnoczi
2012-05-23  2:36 ` [PATCH 06/22] lib/traceevent: Fix trace_printk for long integers Namhyung Kim
2012-05-23  2:36 ` [PATCH 07/22] lib/traceevent: Fix printk_cmp() Namhyung Kim
2012-05-23  2:36 ` [PATCH 08/22] lib/traceevent: Introduce extend_token() Namhyung Kim
2012-05-23  2:36 ` [PATCH 09/22] lib/traceevent: Handle strdup failure cases Namhyung Kim
2012-05-23  2:36 ` [PATCH 10/22] lib/traceevent: Fix a possible memory leak Namhyung Kim
2012-05-24 17:17   ` [tip:perf/urgent] tools lib traceevent: " tip-bot for Namhyung Kim
2012-05-23  2:36 ` [PATCH 11/22] lib/traceevent: Handle realloc() failure path Namhyung Kim
2012-05-23  2:36 ` [PATCH 12/22] lib/traceevent: Fix a possibly wrong memory dereference Namhyung Kim
2012-05-24 17:18   ` [tip:perf/urgent] tools lib traceevent: " tip-bot for Namhyung Kim
2012-05-23  2:36 ` [PATCH 13/22] lib/traceevent: Fix freeing arg on process_dynamic_array() Namhyung Kim
2012-05-24 17:19   ` [tip:perf/urgent] tools lib traceevent: " tip-bot for Namhyung Kim
2012-05-23  2:36 ` [PATCH 14/22] lib/traceevent: Use proper function parameter type Namhyung Kim
2012-05-24 17:19   ` [tip:perf/urgent] tools lib traceevent: " tip-bot for Namhyung Kim
2012-05-23  2:36 ` [PATCH 15/22] lib/traceevent: Pass string type argument to args Namhyung Kim
2012-05-23  2:36 ` [PATCH 16/22] lib/traceevent: Do not call add_event() again if allocation failed Namhyung Kim
2012-05-23  2:36 ` [PATCH 17/22] lib/traceevent: Fix some comments Namhyung Kim
2012-05-23  2:36 ` [PATCH 18/22] lib/traceevent: Check result of malloc() during reading token Namhyung Kim
2012-05-23  2:36 ` [PATCH 19/22] lib/traceevent: Fix signature of create_arg_item() Namhyung Kim
2012-05-24 17:20   ` [tip:perf/urgent] tools lib traceevent: " tip-bot for Namhyung Kim
2012-05-23  2:36 ` [PATCH 20/22] lib/traceevent: Check return value of arg_to_str() Namhyung Kim
2012-05-23  2:36 ` [PATCH 21/22] lib/traceevent: Add missing break in make_bprint_args Namhyung Kim
2012-05-23  2:36 ` [PATCH 22/22] lib/traceevent: Cleanup realloc use Namhyung Kim
2012-05-24  1:08 ` [PATCH 00/22] perf tools: Backport of latest changes on trace-cmd's libparseevent Steven Rostedt
2012-05-31  6:07 ` Namhyung Kim
2012-05-31 14:52   ` Arnaldo Carvalho de Melo
2012-05-31 15:09     ` Steven Rostedt
2012-05-31 15:13       ` Arnaldo Carvalho de Melo
2012-05-31 15:22         ` Frederic Weisbecker
2012-05-31 15:31           ` Arnaldo Carvalho de Melo
2012-06-01  2:48             ` Namhyung Kim
2012-06-11  2:47             ` Namhyung Kim
2012-06-11 14:17               ` Arnaldo Carvalho de Melo
2012-06-12  6:39                 ` Namhyung Kim
2012-06-13  2:39                 ` Namhyung Kim

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox