1. 01 Sep, 2019 2 commits
    • Tzvetomir Stoyanov's avatar
      libtraceevent, perf tools: Changes in tep_print_event_* APIs · 38847db9
      Tzvetomir Stoyanov authored
      Libtraceevent APIs for printing various trace events information are
      complicated, there are complex extra parameters. To control the way
      event information is printed, the user should call a set of functions in
      a specific sequence.
      
      These APIs are reimplemented to provide a more simple interface for
      printing event information.
      
      Removed APIs:
      
       	tep_print_event_task()
      	tep_print_event_time()
      	tep_print_event_data()
      	tep_event_info()
      	tep_is_latency_format()
      	tep_set_latency_format()
      	tep_data_latency_format()
      	tep_set_print_raw()
      
      A new API for printing event information is introduced:
         void tep_print_event(struct tep_handle *tep, struct trace_seq *s,
      		        struct tep_record *record, const char *fmt, ...);
      where "fmt" is a printf-like format string, followed by the event
      fields to be printed. Supported fields:
       TEP_PRINT_PID, "%d" - event PID
       TEP_PRINT_CPU, "%d" - event CPU
       TEP_PRINT_COMM, "%s" - event command string
       TEP_PRINT_NAME, "%s" - event name
       TEP_PRINT_LATENCY, "%s" - event latency
       TEP_PRINT_TIME, %d - event time stamp. A divisor and precision
         can be specified as part of this format string:
         "%precision.divisord". Example:
         "%3.1000d" - divide the time by 1000 and print the first 3 digits
         before the dot. Thus, the time stamp "123456000" will be printed as
         "123.456"
       TEP_PRINT_INFO, "%s" - event information.
       TEP_PRINT_INFO_RAW, "%s" - event information, in raw format.
      
      Example:
        tep_print_event(tep, s, record, "%16s-%-5d [%03d] %s %6.1000d %s %s",
      		  TEP_PRINT_COMM, TEP_PRINT_PID, TEP_PRINT_CPU,
      		  TEP_PRINT_LATENCY, TEP_PRINT_TIME, TEP_PRINT_NAME, TEP_PRINT_INFO);
      Output:
      	ls-11314 [005] d.h. 185207.366383 function __wake_up
      Signed-off-by: default avatarTzvetomir Stoyanov <tstoyanov@vmware.com>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: Jiri Olsa <jolsa@redhat.com>
      Cc: Namhyung Kim <namhyung@kernel.org>
      Cc: linux-trace-devel@vger.kernel.org
      Cc: Patrick McLean <chutzpah@gentoo.org>
      Link: http://lore.kernel.org/linux-trace-devel/20190801074959.22023-2-tz.stoyanov@gmail.com
      Link: http://lore.kernel.org/lkml/20190805204355.041132030@goodmis.orgSigned-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
      Signed-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
      38847db9
    • Arnaldo Carvalho de Melo's avatar
      perf event: Remove needless include directives from event.h · 4cb3c6d5
      Arnaldo Carvalho de Melo authored
      bpf.h and build-id.h are not needed at all in event.h, remove them.
      
      And fixup the fallout of files that were getting needed stuff from this
      now pruned include.
      
      Cc: Adrian Hunter <adrian.hunter@intel.com>
      Cc: Jiri Olsa <jolsa@kernel.org>
      Cc: Namhyung Kim <namhyung@kernel.org>
      Link: https://lkml.kernel.org/n/tip-rdm3dgtlrndmmnlc4bafsg3b@git.kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
      4cb3c6d5
  2. 31 Aug, 2019 2 commits
  3. 29 Aug, 2019 35 commits
  4. 28 Aug, 2019 1 commit