[PATCH 2/8] tools/lib/traceevent: Add counter to track parsing failures

2019-03-26 Thread Tzvetomir Stoyanov
: tep_get_parsing_failures() - returns the current value of the counter. tep_clear_parsing_failures() - clears the counter. Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/event-parse-api.c | 27 tools/lib/traceevent/event-parse-local.h | 2 ++ tools/lib/traceevent/event-parse.c

[PATCH 0/8] Cleanup traceevent API and make it more consistent

2019-03-26 Thread Tzvetomir Stoyanov
ated to libtracevent APIs" patchset and should be applied on top of it. Tzvetomir Stoyanov (8): tools/perf,tools/lib/traceevent: Make traceevent APIs more consistent tools/lib/traceevent: Add counter to track parsing failures tools/lib/traceevent: Remove tep filter trivial APIs tools/l

[PATCH 7/8] tools/lib/traceevent: rename input arguments and local variables of libtraceevent from pevent to tep

2019-03-26 Thread Tzvetomir Stoyanov
rser), and will avoid any confusion with the old pevent name Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/event-parse.c | 306 - tools/lib/traceevent/event-plugin.c| 24 +- tools/lib/traceevent/parse-filter.c| 26 +-- tools/lib/traceevent/plu

[PATCH 4/8] tools/lib/traceevent: rename input arguments of libtraceevent APIs from pevent to tep

2019-03-26 Thread Tzvetomir Stoyanov
This patch renames "struct tep_handle *pevent" input arguments of libtraceevent APIs to "struct tep_handle *tep". This makes the API consistent with the chosen naming convention: tep (trace event parser), instead of the old pevent. Signed-off-by: Tzvetomir Stoyanov ---

[PATCH 3/8] tools/lib/traceevent: Remove tep filter trivial APIs

2019-03-26 Thread Tzvetomir Stoyanov
not use it. Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/event-parse.h | 16 --- tools/lib/traceevent/parse-filter.c | 169 2 files changed, 185 deletions(-) diff --git a/tools/lib/traceevent/event-parse.h b/tools/lib/traceevent/event-parse.h index

[PATCH 5/8] tools/perf,tools/lib/traceevent: rename "pevent" member of struct tep_event to "tep"

2019-03-26 Thread Tzvetomir Stoyanov
This patch renames "pevent" member of the struct tep_event to "tep". This makes the struct consistent with the chosen naming convention: tep (trace event parser), instead of the old pevent. Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/event-par

[PATCH 6/8] tools/perf,tools/lib/traceevent: rename "pevent" member of struct tep_event_filter to "tep"

2019-03-26 Thread Tzvetomir Stoyanov
This patch renames "pevent" member of the struct tep_event_filter to "tep". This makes the struct consistent with the chosen naming convention: tep (trace event parser), instead of the old pevent. Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/event-parse.h

[PATCH 8/8] tools/lib/traceevent: remove call to exit() from tep_filter_add_filter_str()

2019-03-26 Thread Tzvetomir Stoyanov
de is set and to call exit, if needed. Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/parse-filter.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/lib/traceevent/parse-filter.c b/tools/lib/traceevent/parse-filter.c index 298694356277..552592d153fb 100644 --- a/tools

[PATCH 1/8] tools/perf,tools/lib/traceevent: Make traceevent APIs more consistent

2019-03-26 Thread Tzvetomir Stoyanov
le *tep) APIs return the saved data in the tep handle, while tep_is_bigendian() returns the running machine's endianness. All tep_is_... functions are modified to return bool value, instead of int. Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/event-parse-api.c | 44

[PATCH v2 3/5] tools/perf,tools/lib/traceevent: Rename "pevent" member of struct tep_event to "tep"

2019-03-27 Thread Tzvetomir Stoyanov
This patch renames "pevent" member of the struct tep_event to "tep". This makes the struct consistent with the chosen naming convention: tep (trace event parser), instead of the old pevent. Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/event-par

[PATCH v2 4/5] tools/perf,tools/lib/traceevent: Rename "pevent" member of struct tep_event_filter to "tep"

2019-03-27 Thread Tzvetomir Stoyanov
This patch renames "pevent" member of the struct tep_event_filter to "tep". This makes the struct consistent with the chosen naming convention: tep (trace event parser), instead of the old pevent. Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/event-parse.h

[PATCH v2 2/5] tools/lib/traceevent: Rename input arguments of libtraceevent APIs from pevent to tep

2019-03-27 Thread Tzvetomir Stoyanov
This patch renames "struct tep_handle *pevent" input arguments of libtraceevent APIs to "struct tep_handle *tep". This makes the API consistent with the chosen naming convention: tep (trace event parser), instead of the old pevent. Signed-off-by: Tzvetomir Stoyanov ---

[PATCH v2 5/5] tools/lib/traceevent: Rename input arguments and local variables of libtraceevent from pevent to tep

2019-03-27 Thread Tzvetomir Stoyanov
rser), and will avoid any confusion with the old pevent name Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/event-parse.c | 306 - tools/lib/traceevent/event-plugin.c| 24 +- tools/lib/traceevent/parse-filter.c| 26 +-- tools/lib/traceevent/plu

[PATCH v2 0/5] Cleanup traceevent API and make it more consistent

2019-03-27 Thread Tzvetomir Stoyanov
of tracevent APIs, to make names consistent and descriptive. - Unified all tep_is_... APIs to return bool value, instead of int. Changes depend on "Few patches, related to libtracevent APIs" patchset and should be applied on top of it. Tzvetomir Stoyanov (5): tools/perf,tools/lib/t

[PATCH v2 1/5] tools/perf,tools/lib/traceevent: Make traceevent APIs more consistent

2019-03-27 Thread Tzvetomir Stoyanov
le *tep) APIs return the saved data in the tep handle, while tep_is_bigendian() returns the running machine's endianness. All tep_is_... functions are modified to return bool value, instead of int. Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/event-parse-api.c | 42

Re: libtracevent: Build warning on 32-bit arches

2020-09-02 Thread Tzvetomir Stoyanov
On Wed, Sep 2, 2020 at 1:11 AM Arnaldo Carvalho de Melo wrote: > > Hi Tzvetomir, > > I noticed this: > > 27 debian:experimental-x-mips: Ok mips-linux-gnu-gcc (Debian > 8.3.0-19) 8.3.0 > 29 debian:experimental-x-mipsel : Ok mipsel-linux-gnu-gcc (Debian > 9.2.1-8) 9.2.1 201909

Re: [PATCH 2/9] tools/lib/traceevent: Added support for pkg-config

2018-12-04 Thread Tzvetomir Stoyanov
Hi Namhyung, On Tue, Dec 4, 2018 at 9:32 AM Namhyung Kim wrote: > > Hi Steve, > > On Fri, Nov 30, 2018 at 10:44:05AM -0500, Steven Rostedt wrote: > > From: Tzvetomir Stoyanov > > > > This patch implements integration with pkg-config framework. > > pkg-config

Re: [PATCH] tools/lib/traceevent, tools/perf: Move struct tep_handler definition in a local header file

2019-07-26 Thread Tzvetomir Stoyanov
Hi Andres, On Fri, Jul 26, 2019 at 6:58 AM Andres Freund wrote: > > Hi, > ... > > Is just plain wrong, as: > > > - return pevent->events[idx]; > > + return (all_events + idx); > > that's not a valid conversion. ->events isn't an array of tep_handle, > it's an array of tep_

[PATCH v2] Documentation/trace: Add clarification how histogram onmatch works

2019-05-07 Thread Tzvetomir Stoyanov
order to match the events. Signed-off-by: Tzvetomir Stoyanov --- Documentation/trace/histogram.txt | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Documentation/trace/histogram.txt b/Documentation/trace/histogram.txt index 7ffea6aa22e3..d97f0530a731 100644

[PATCH] Documentation/trace: Add clarification how histogram onmatch works

2019-05-03 Thread Tzvetomir Stoyanov
order to match the events. Signed-off-by: Tzvetomir Stoyanov --- Documentation/trace/histogram.txt | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Documentation/trace/histogram.txt b/Documentation/trace/histogram.txt index 7ffea6aa22e3..b75a75cfab8c 100644

[PATCH v2] tools/lib/traceevent: Remove hardcoded install paths from pkg-config file

2019-03-29 Thread Tzvetomir Stoyanov
Install directories of header and library files are hardcoded in pkg-config templete file. They must be configurable, the Makefile should set them on the compilation / install stage. Signed-off-by: Tzvetomir Stoyanov --- tools/lib/traceevent/Makefile | 13 + tools

[PATCH] tools/perf,tools/lib/traceevent: Make traceevent APIs more consistent

2019-03-22 Thread Tzvetomir Stoyanov
Rename few traceevent APIs, in order to make it more consistent: tep_pid_is_registered(), tep_file_bigendian(), tep_is_latency_format(), tep_get_header_page_ts_size(), tep_set_host_bigendian(), tep_is_host_bigendian() and tep_data_lat_fmt() Signed-off-by: Tzvetomir Stoyanov --- tools/lib

[PATCH v4] tools lib traceevent: Hide non API functions

2020-09-30 Thread Tzvetomir Stoyanov (VMware)
ed-by: Ben Hutchings Signed-off-by: Tzvetomir Stoyanov (VMware) --- v1 of the patch is here: https://lore.kernel.org/r/20200924070609.100771-2-tz.stoya...@gmail.com v2 changes (addressed Steven's comments): - Removed leading underscores from the names of newly hidden internal functions. v3 cha

[PATCH v2 1/2] tools lib traceevent: Man page for tep_add_plugin_path() API

2020-09-30 Thread Tzvetomir Stoyanov (VMware)
Add documentation of tep_add_plugin_path() API in the libtraceevent plugin man page. Signed-off-by: Tzvetomir Stoyanov (VMware) --- v2 changes: - Fixed grammar mistakes, found by Steven Rostedt. .../Documentation/libtraceevent-plugins.txt | 25 +-- 1 file changed, 23

[PATCH v2 2/2] tools lib traceevent: Man page libtraceevent debug APIs

2020-09-30 Thread Tzvetomir Stoyanov (VMware)
Add a new libtraceevent man page with documentation of these debug APIs: tep_print_printk tep_print_funcs tep_set_test_filters tep_plugin_print_options Signed-off-by: Tzvetomir Stoyanov (VMware) --- v2 changes: - Removed an extra interval from the example&#

[PATCH v2] tools lib traceevent: Hide non API functions

2020-09-28 Thread Tzvetomir Stoyanov (VMware)
ugin_paths tep_peek_char tep_buffer_init tep_get_input_buf_ptr tep_get_input_buf tep_read_token tep_free_token tep_free_event tep_free_format_field Reported-by: Ben Hutchings Signed-off-by: Tzvetomir Stoyanov (VMware) --- v1 of the patch is here: https://lore.kernel.org/r/2020092407060

[PATCH v3] tools lib traceevent: Hide non API functions

2020-09-29 Thread Tzvetomir Stoyanov (VMware)
ned-off-by: Tzvetomir Stoyanov (VMware) --- v1 of the patch is here: https://lore.kernel.org/r/20200924070609.100771-2-tz.stoya...@gmail.com v2 changes (addressed Steven's comments): - Removed leading underscores from the names of newly hidden internal functions. v3 changes (addressed S

[PATCH 2/2] tools lib traceevent: Man page libtraceevent debug APIs

2020-09-29 Thread Tzvetomir Stoyanov (VMware)
Add a new libtraceevent man page with documentation of these debug APIs: tep_print_printk tep_print_funcs tep_set_test_filters tep_plugin_print_options Signed-off-by: Tzvetomir Stoyanov (VMware) --- .../Documentation/libtraceevent-debug.txt | 95

[PATCH 1/2] tools lib traceevent: Man page for tep_add_plugin_path() API

2020-09-29 Thread Tzvetomir Stoyanov (VMware)
Add documentation of tep_add_plugin_path() API in the libtraceevent plugin man page. Signed-off-by: Tzvetomir Stoyanov (VMware) --- .../Documentation/libtraceevent-plugins.txt | 22 +-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/tools/lib/traceevent

[tip:perf/core] tools lib traceevent: Remove hard coded install paths from pkg-config file

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 53dbabfe50262eeebb56ce18789c3c885f15e6ac Gitweb: https://git.kernel.org/tip/53dbabfe50262eeebb56ce18789c3c885f15e6ac Author: Tzvetomir Stoyanov AuthorDate: Thu, 18 Apr 2019 21:15:56 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:46 -0300 tools

[tip:perf/core] tools lib traceevent: Introduce man pages

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: dc7fd7bfe98e268f96fbc66d6ece4bf6a5bc057c Gitweb: https://git.kernel.org/tip/dc7fd7bfe98e268f96fbc66d6ece4bf6a5bc057c Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:08 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:47 -0300 tools

[tip:perf/core] tools lib traceevent: Add support for man pages with multiple names

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: f7dff58a8b5a35a65379cdc76fe11c168f9ef198 Gitweb: https://git.kernel.org/tip/f7dff58a8b5a35a65379cdc76fe11c168f9ef198 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:09 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:47 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for tep_handler related APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 680ca343d2290f94302ac4f60a6c69023d5a5f8a Gitweb: https://git.kernel.org/tip/680ca343d2290f94302ac4f60a6c69023d5a5f8a Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:10 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:47 -0300 tools

[tip:perf/core] tools lib traceevent: Man page for header_page APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 3d2626bd1f15711711b575463befbe137ac1adc6 Gitweb: https://git.kernel.org/tip/3d2626bd1f15711711b575463befbe137ac1adc6 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:11 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:47 -0300 tools

[tip:perf/core] tools lib traceevent: Man page for get/set cpus APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: ba28fabe43c3a13bbc6e48f78fdf609dcc5e114b Gitweb: https://git.kernel.org/tip/ba28fabe43c3a13bbc6e48f78fdf609dcc5e114b Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:12 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:47 -0300 tools

[tip:perf/core] tools lib traceevent: Man page for host endian APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 802e985eb682e766992d2f851e4f1843414b3b0e Gitweb: https://git.kernel.org/tip/802e985eb682e766992d2f851e4f1843414b3b0e Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:14 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:47 -0300 tools

[tip:perf/core] tools lib traceevent: Man page for page size APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 71ee989f94cf06ce73ec5bd8a9f28cca5d167499 Gitweb: https://git.kernel.org/tip/71ee989f94cf06ce73ec5bd8a9f28cca5d167499 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:15 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:47 -0300 tools

[tip:perf/core] tools lib traceevent: Man page for file endian APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 9571f7371f143cfb7a324b531aac2814cb9044c7 Gitweb: https://git.kernel.org/tip/9571f7371f143cfb7a324b531aac2814cb9044c7 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:13 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:47 -0300 tools

[tip:perf/core] tools lib traceevent: Man page for tep_strerror()

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: c127ef56761e41ad3eb4cb6eaaf1805e04c9a46e Gitweb: https://git.kernel.org/tip/c127ef56761e41ad3eb4cb6eaaf1805e04c9a46e Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:16 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for function related libtraceevent APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: c818e2dbe4720151f99876a28252cc9b27e561f8 Gitweb: https://git.kernel.org/tip/c818e2dbe4720151f99876a28252cc9b27e561f8 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:18 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for event handler APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: db5570e5e30aa2362fc34f5ee3b4b741362d41fa Gitweb: https://git.kernel.org/tip/db5570e5e30aa2362fc34f5ee3b4b741362d41fa Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:17 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for registering print function

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 10e679751cde169434dffb6c87f9b93c02050bef Gitweb: https://git.kernel.org/tip/10e679751cde169434dffb6c87f9b93c02050bef Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:19 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man page for tep_read_number()

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: c76c22421875bbcbadd3c9fd4033981677aacfb0 Gitweb: https://git.kernel.org/tip/c76c22421875bbcbadd3c9fd4033981677aacfb0 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:20 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for event find APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 86e8076e93ff69213931f867878709f2c6139032 Gitweb: https://git.kernel.org/tip/86e8076e93ff69213931f867878709f2c6139032 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:21 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man page for list events APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 7935c316ef067881ee4043c4c7d611e982e5fe21 Gitweb: https://git.kernel.org/tip/7935c316ef067881ee4043c4c7d611e982e5fe21 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:22 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for libtraceevent event get APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 747e942c3925bb85e2865371664499a98fca83b0 Gitweb: https://git.kernel.org/tip/747e942c3925bb85e2865371664499a98fca83b0 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:23 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for find field APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 0b51220ee0c3f6634b9fcf9208cc0764d5861163 Gitweb: https://git.kernel.org/tip/0b51220ee0c3f6634b9fcf9208cc0764d5861163 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:24 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for get field value APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 96e75ef97d882655d3d2f14aec444d5544bd93ff Gitweb: https://git.kernel.org/tip/96e75ef97d882655d3d2f14aec444d5544bd93ff Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:25 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for print field APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 6dfe6849b6ee69975eb82181e0afb03fbd8b578f Gitweb: https://git.kernel.org/tip/6dfe6849b6ee69975eb82181e0afb03fbd8b578f Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:26 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man page for tep_read_number_field()

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 95ec2822a976af27c9cb77cdc01c650a3640adfa Gitweb: https://git.kernel.org/tip/95ec2822a976af27c9cb77cdc01c650a3640adfa Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:27 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for event fields APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: e64392019c0537829ef1d555451c513f1046ae2a Gitweb: https://git.kernel.org/tip/e64392019c0537829ef1d555451c513f1046ae2a Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:28 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for event filter APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 854d73c6665984765f8d93dea3d6c1dcafa17154 Gitweb: https://git.kernel.org/tip/854d73c6665984765f8d93dea3d6c1dcafa17154 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:29 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for parse event APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: e57ea935ad744a36168a181a3c01e019fc237c3c Gitweb: https://git.kernel.org/tip/e57ea935ad744a36168a181a3c01e019fc237c3c Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:30 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for APIs used to extract common fields from a record

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 0133fc6068fb51aa7ce8876e8fee465d92acfc14 Gitweb: https://git.kernel.org/tip/0133fc6068fb51aa7ce8876e8fee465d92acfc14 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:32 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man pages for trace sequences APIs

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 1df9d75776c9813abc7f6abff3a32ee782a86c8a Gitweb: https://git.kernel.org/tip/1df9d75776c9813abc7f6abff3a32ee782a86c8a Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:33 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Man page for tep_parse_header_page()

2019-05-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 73b6b470f60641cf763eab60640b6dd9360297c7 Gitweb: https://git.kernel.org/tip/73b6b470f60641cf763eab60640b6dd9360297c7 Author: Tzvetomir Stoyanov AuthorDate: Fri, 10 May 2019 15:56:31 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 15 May 2019 16:36:48 -0300 tools

[tip:perf/core] tools lib traceevent: Add sanity check to is_timestamp_in_us()

2018-12-14 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 51d0337d01985d0cccb6e41f976cc0dbe921fd84 Gitweb: https://git.kernel.org/tip/51d0337d01985d0cccb6e41f976cc0dbe921fd84 Author: Tzvetomir Stoyanov AuthorDate: Wed, 28 Nov 2018 14:55:52 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Thu, 29 Nov 2018 20:42:50 -0300 tools

[tip:perf/core] tools lib traceevent: Added support for pkg-config

2018-12-14 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: cadb29db628d761b190875e54e9d5b65a30b1925 Gitweb: https://git.kernel.org/tip/cadb29db628d761b190875e54e9d5b65a30b1925 Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:05 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 30 Nov 2018 17:14:53 -0300 tools

[tip:perf/core] tools lib traceevent: Implement new API tep_get_ref()

2018-12-14 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: c1f71ed8f5d1bb8d048c54c509ee9b08878900c6 Gitweb: https://git.kernel.org/tip/c1f71ed8f5d1bb8d048c54c509ee9b08878900c6 Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:04 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 30 Nov 2018 17:14:52 -0300 tools

[tip:perf/core] tools lib traceevent: Install trace-seq.h API header file

2018-12-14 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 01b56c0296da84f2b0a91db98a18d177a57e19eb Gitweb: https://git.kernel.org/tip/01b56c0296da84f2b0a91db98a18d177a57e19eb Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:06 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 30 Nov 2018 17:14:53 -0300 tools

[tip:perf/core] tools lib traceevent: Rename tep_free_format() to tep_free_event()

2018-12-14 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 94888c7cef41d435506acd2e93cedf039d3db69d Gitweb: https://git.kernel.org/tip/94888c7cef41d435506acd2e93cedf039d3db69d Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:08 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 30 Nov 2018 17:14:53 -0300 tools

[tip:perf/core] tools lib traceevent, perf tools: Rename 'struct tep_event_format' to 'struct tep_event'

2018-12-14 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 2d6b708fb58af050101cbdaba0e970b0fe4f6a63 Gitweb: https://git.kernel.org/tip/2d6b708fb58af050101cbdaba0e970b0fe4f6a63 Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:07 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 30 Nov 2018 17:14:53 -0300 tools

[tip:perf/core] perf tools: traceevent API cleanup, remove __tep_data2host*()

2018-12-14 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 9f8e7683d1f54bed7d7cd33391ca9e31d24c942d Gitweb: https://git.kernel.org/tip/9f8e7683d1f54bed7d7cd33391ca9e31d24c942d Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:09 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 30 Nov 2018 17:15:06 -0300 perf

[tip:perf/core] tools lib traceevent: traceevent API cleanup

2018-12-14 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 34434e3633de8fde7d9a8bed374ba17897ac30ef Gitweb: https://git.kernel.org/tip/34434e3633de8fde7d9a8bed374ba17897ac30ef Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:10 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 30 Nov 2018 17:15:34 -0300 tools

[tip:perf/core] tools lib traceevent: Add sanity check to is_timestamp_in_us()

2018-12-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 44e92f8389b2242efde77d5321ffa88decd47df6 Gitweb: https://git.kernel.org/tip/44e92f8389b2242efde77d5321ffa88decd47df6 Author: Tzvetomir Stoyanov AuthorDate: Wed, 28 Nov 2018 14:55:52 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 17 Dec 2018 14:55:19 -0300 tools

[tip:perf/core] tools lib traceevent: Implement new API tep_get_ref()

2018-12-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 477be10ca781bbee29d6a1da958d63d5c9a2d83b Gitweb: https://git.kernel.org/tip/477be10ca781bbee29d6a1da958d63d5c9a2d83b Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:04 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 17 Dec 2018 14:55:52 -0300 tools

[tip:perf/core] tools lib traceevent: Added support for pkg-config

2018-12-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: cc03e1a8f82dff36fb329469c28cbfe7d2e6156a Gitweb: https://git.kernel.org/tip/cc03e1a8f82dff36fb329469c28cbfe7d2e6156a Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:05 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 17 Dec 2018 14:55:55 -0300 tools

[tip:perf/core] tools lib traceevent: Install trace-seq.h API header file

2018-12-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 4c784894ac29195af24362125a72beda4aeb8b9f Gitweb: https://git.kernel.org/tip/4c784894ac29195af24362125a72beda4aeb8b9f Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:06 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 17 Dec 2018 14:55:59 -0300 tools

[tip:perf/core] tools lib traceevent: Rename tep_free_format() to tep_free_event()

2018-12-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: fc39851c455ce9e593302c9e376cdb9593c10704 Gitweb: https://git.kernel.org/tip/fc39851c455ce9e593302c9e376cdb9593c10704 Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:08 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 17 Dec 2018 14:56:05 -0300 tools

[tip:perf/core] tools lib traceevent, perf tools: Rename 'struct tep_event_format' to 'struct tep_event'

2018-12-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 97fbf3f0e0aa854ed33141dc9a5410f0ac6c71f3 Gitweb: https://git.kernel.org/tip/97fbf3f0e0aa854ed33141dc9a5410f0ac6c71f3 Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:07 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 17 Dec 2018 14:56:02 -0300 tools

[tip:perf/core] perf tools: traceevent API cleanup, remove __tep_data2host*()

2018-12-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: f0bba09ce3f88ddeef7a3e45f612d26b1e951d5b Gitweb: https://git.kernel.org/tip/f0bba09ce3f88ddeef7a3e45f612d26b1e951d5b Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:09 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 17 Dec 2018 14:56:08 -0300 perf

[tip:perf/core] tools lib traceevent: traceevent API cleanup

2018-12-18 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 6cd99d21741dbffb40e28ab7d955b27d09c3352f Gitweb: https://git.kernel.org/tip/6cd99d21741dbffb40e28ab7d955b27d09c3352f Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:10 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 17 Dec 2018 14:56:10 -0300 tools

[tip:perf/urgent] tools lib traceevent: Introduce new libtracevent API: tep_override_comm()

2019-01-08 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: ca3958b1c0968a6f3105e211355f128ce871e796 Gitweb: https://git.kernel.org/tip/ca3958b1c0968a6f3105e211355f128ce871e796 Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 10:44:11 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 8 Jan 2019 13:28:13 -0300 tools

[tip:perf/urgent] tools lib traceevent: Rename struct cmdline to struct tep_cmdline

2019-01-08 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 2e4318a287bdf815140462257ab8697f5289a12f Gitweb: https://git.kernel.org/tip/2e4318a287bdf815140462257ab8697f5289a12f Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 23:08:09 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 8 Jan 2019 13:28:13 -0300 tools

[tip:perf/urgent] tools lib traceevent: Initialize host_bigendian at tep_handle allocation

2019-01-08 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: eed14f4b075ec594ac09921b998bf3dd61f5886b Gitweb: https://git.kernel.org/tip/eed14f4b075ec594ac09921b998bf3dd61f5886b Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 23:08:08 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 8 Jan 2019 13:28:13 -0300 tools

[tip:perf/urgent] tools lib traceevent: Changed return logic of trace_seq_printf() and trace_seq_vprintf() APIs

2019-01-08 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 6d2d6fd7e3ee0daf0d8308741792b3ec41aafd0c Gitweb: https://git.kernel.org/tip/6d2d6fd7e3ee0daf0d8308741792b3ec41aafd0c Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 23:08:10 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 8 Jan 2019 13:28:13 -0300 tools

[tip:perf/urgent] tools lib traceevent: Changed return logic of tep_register_event_handler() API

2019-01-08 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: f87ce7c43f36d4abff91b19edadd23939f99ff98 Gitweb: https://git.kernel.org/tip/f87ce7c43f36d4abff91b19edadd23939f99ff98 Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 23:08:11 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 8 Jan 2019 13:28:13 -0300 tools

[tip:perf/urgent] tools lib traceevent: Rename tep_is_file_bigendian() to tep_file_bigendian()

2019-01-08 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 4104e604277016b3e6a7d120368054f9d2716953 Gitweb: https://git.kernel.org/tip/4104e604277016b3e6a7d120368054f9d2716953 Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 23:08:12 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 8 Jan 2019 13:28:13 -0300 tools

[tip:perf/urgent] tools lib traceevent: Remove tep_data_event_from_type() API

2019-01-08 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 9231967e2f515fce9e19687c0c40dfda416b3512 Gitweb: https://git.kernel.org/tip/9231967e2f515fce9e19687c0c40dfda416b3512 Author: Tzvetomir Stoyanov AuthorDate: Fri, 30 Nov 2018 23:08:13 -0500 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 8 Jan 2019 13:28:13 -0300 tools

[tip:perf/core] tools lib traceevent, perf tools: Move struct tep_handler definition in a local header file

2018-10-08 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: bb3dd7e7c4d5e024d607c0ec06c2a2fb9408cc99 Gitweb: https://git.kernel.org/tip/bb3dd7e7c4d5e024d607c0ec06c2a2fb9408cc99 Author: Tzvetomir Stoyanov AuthorDate: Fri, 5 Oct 2018 12:22:25 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 8 Oct 2018 15:05:37 -0300 tools

[tip: perf/core] libtraceevent: Remove tep_register_trace_clock()

2019-09-02 Thread tip-bot2 for Tzvetomir Stoyanov
The following commit has been merged into the perf/core branch of tip: Commit-ID: 5d6552ab3b71fac48a9c7452c7014d37ca80b17f Gitweb: https://git.kernel.org/tip/5d6552ab3b71fac48a9c7452c7014d37ca80b17f Author:Tzvetomir Stoyanov AuthorDate:Mon, 05 Aug 2019 16:43:14 -04:00

[tip: perf/core] libtraceevent: Change users plugin directory

2019-09-02 Thread tip-bot2 for Tzvetomir Stoyanov
The following commit has been merged into the perf/core branch of tip: Commit-ID: e97fd1383cd77c467d2aed7fa4e596789df83977 Gitweb: https://git.kernel.org/tip/e97fd1383cd77c467d2aed7fa4e596789df83977 Author:Tzvetomir Stoyanov AuthorDate:Mon, 05 Aug 2019 16:43:15 -04:00

[tip: perf/core] libtraceevent, perf tools: Changes in tep_print_event_* APIs

2019-09-02 Thread tip-bot2 for Tzvetomir Stoyanov
The following commit has been merged into the perf/core branch of tip: Commit-ID: 38847db9740a984e8538ce2573cbc0fc7edf22b3 Gitweb: https://git.kernel.org/tip/38847db9740a984e8538ce2573cbc0fc7edf22b3 Author:Tzvetomir Stoyanov AuthorDate:Mon, 05 Aug 2019 16:43:13 -04:00

[tip:perf/core] tools lib traceevent: Implement a new API, tep_list_events_copy()

2019-04-05 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 6699ed712a97f70267e017f509126b890f6f6b28 Gitweb: https://git.kernel.org/tip/6699ed712a97f70267e017f509126b890f6f6b28 Author: Tzvetomir Stoyanov AuthorDate: Mon, 1 Apr 2019 12:43:08 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 1 Apr 2019 15:18:09 -0300 tools

[tip:perf/core] tools lib traceevent: Coding style fixes

2019-04-05 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: d5d2d05bd5b02efa8545a3323a60465de9efb21e Gitweb: https://git.kernel.org/tip/d5d2d05bd5b02efa8545a3323a60465de9efb21e Author: Tzvetomir Stoyanov AuthorDate: Mon, 1 Apr 2019 12:43:11 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 1 Apr 2019 15:18:09 -0300 tools

[tip:perf/core] tools lib traceevent: Change description of few APIs

2019-04-05 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 489b34948cbbc725755e1b1125dbdb16401eea07 Gitweb: https://git.kernel.org/tip/489b34948cbbc725755e1b1125dbdb16401eea07 Author: Tzvetomir Stoyanov AuthorDate: Mon, 1 Apr 2019 12:43:10 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 1 Apr 2019 15:18:09 -0300 tools

[tip:perf/core] tools lib traceevent: Implement new traceevent APIs for accessing struct tep_handler fields

2019-04-05 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 80c5526c8544ae76cba31fb9702ab8accac1f0f3 Gitweb: https://git.kernel.org/tip/80c5526c8544ae76cba31fb9702ab8accac1f0f3 Author: Tzvetomir Stoyanov AuthorDate: Mon, 1 Apr 2019 12:43:12 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 1 Apr 2019 15:18:09 -0300 tools

[tip:perf/core] tools lib traceevent: Remove tep filter trivial APIs

2019-04-05 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: a634b278ec2504fdd2acd694f5158ae79016fb70 Gitweb: https://git.kernel.org/tip/a634b278ec2504fdd2acd694f5158ae79016fb70 Author: Tzvetomir Stoyanov AuthorDate: Mon, 1 Apr 2019 12:43:14 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 1 Apr 2019 15:18:09 -0300 tools

[tip:perf/core] tools lib traceevent: Remove call to exit() from tep_filter_add_filter_str()

2019-04-05 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: fea6b632235b9bedc58c72cd24f1865bb0c365db Gitweb: https://git.kernel.org/tip/fea6b632235b9bedc58c72cd24f1865bb0c365db Author: Tzvetomir Stoyanov AuthorDate: Mon, 1 Apr 2019 12:43:15 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 1 Apr 2019 15:18:09 -0300 tools

[tip:perf/core] tools tools, tools lib traceevent: Make traceevent APIs more consistent

2019-04-05 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 55c34ae076f62ed7ad0fc86cd8b697a6f577c431 Gitweb: https://git.kernel.org/tip/55c34ae076f62ed7ad0fc86cd8b697a6f577c431 Author: Tzvetomir Stoyanov AuthorDate: Mon, 1 Apr 2019 12:43:16 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 1 Apr 2019 15:18:09 -0300 tools

[tip:perf/core] tools lib traceevent: Rename input arguments of libtraceevent APIs from pevent to tep

2019-04-05 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 047ff221e3ab07129a3566683e95a4d142f7c3c0 Gitweb: https://git.kernel.org/tip/047ff221e3ab07129a3566683e95a4d142f7c3c0 Author: Tzvetomir Stoyanov AuthorDate: Mon, 1 Apr 2019 12:43:17 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 1 Apr 2019 15:18:09 -0300 tools

[tip:perf/core] perf tools, tools lib traceevent: Rename "pevent" member of struct tep_event to "tep"

2019-04-05 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 69769ce159cbfd7567815a86cfc3ea63423de61b Gitweb: https://git.kernel.org/tip/69769ce159cbfd7567815a86cfc3ea63423de61b Author: Tzvetomir Stoyanov AuthorDate: Mon, 1 Apr 2019 12:43:18 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 1 Apr 2019 15:18:10 -0300 perf

[tip:perf/core] perf tools, tools lib traceevent: Rename "pevent" member of struct tep_event_filter to "tep"

2019-04-05 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: 6b1f4c426a60387f1291d2ba3838c7b0914be12f Gitweb: https://git.kernel.org/tip/6b1f4c426a60387f1291d2ba3838c7b0914be12f Author: Tzvetomir Stoyanov AuthorDate: Mon, 1 Apr 2019 12:43:19 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 1 Apr 2019 15:18:10 -0300 perf

[tip:perf/core] tools lib traceevent: Rename input arguments and local variables of libtraceevent from pevent to tep

2019-04-05 Thread tip-bot for Tzvetomir Stoyanov
Commit-ID: c9bd7796959a8b92afe79c392dd54992bfc67328 Gitweb: https://git.kernel.org/tip/c9bd7796959a8b92afe79c392dd54992bfc67328 Author: Tzvetomir Stoyanov AuthorDate: Mon, 1 Apr 2019 12:43:20 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 1 Apr 2019 15:18:10 -0300 tools

[tip:perf/urgent] tools lib traceevent, perf tools: Rename struct pevent to struct tep_handle

2018-08-18 Thread tip-bot for Tzvetomir Stoyanov (VMware)
Commit-ID: 096177a8b51937ba3004164f0366ef20656bb17a Gitweb: https://git.kernel.org/tip/096177a8b51937ba3004164f0366ef20656bb17a Author: Tzvetomir Stoyanov (VMware) AuthorDate: Wed, 8 Aug 2018 14:02:46 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 10 Aug 2018 15:29:35 -0300

[tip:perf/urgent] tools lib traceevent, perf tools: Rename 'struct pevent_record' to 'struct tep_record'

2018-08-18 Thread tip-bot for Tzvetomir Stoyanov (VMware)
Commit-ID: cbc49b25b9cf26bf8c91169085be27382d945dd7 Gitweb: https://git.kernel.org/tip/cbc49b25b9cf26bf8c91169085be27382d945dd7 Author: Tzvetomir Stoyanov (VMware) AuthorDate: Wed, 8 Aug 2018 14:02:47 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 13 Aug 2018 15:21:13 -0300

[tip:perf/urgent] tools lib traceevent, perf tools: Rename pevent plugin related APIs

2018-08-18 Thread tip-bot for Tzvetomir Stoyanov (VMware)
Commit-ID: c32d52b4641d3c7b2569b3fe148bf687e5c61888 Gitweb: https://git.kernel.org/tip/c32d52b4641d3c7b2569b3fe148bf687e5c61888 Author: Tzvetomir Stoyanov (VMware) AuthorDate: Wed, 8 Aug 2018 14:02:48 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 13 Aug 2018 15:21:39 -0300

[tip:perf/urgent] tools lib traceevent, perf tools: Rename pevent alloc / free APIs

2018-08-18 Thread tip-bot for Tzvetomir Stoyanov (VMware)
Commit-ID: 4d5c58b15c4363219e19380848eb74ca60143187 Gitweb: https://git.kernel.org/tip/4d5c58b15c4363219e19380848eb74ca60143187 Author: Tzvetomir Stoyanov (VMware) AuthorDate: Wed, 8 Aug 2018 14:02:49 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 13 Aug 2018 15:21:43 -0300

[tip:perf/urgent] tools lib traceevent, perf tools: Rename pevent parse APIs

2018-08-18 Thread tip-bot for Tzvetomir Stoyanov (VMware)
Commit-ID: c60167c187f9255e698998887bfbbba6418861b5 Gitweb: https://git.kernel.org/tip/c60167c187f9255e698998887bfbbba6418861b5 Author: Tzvetomir Stoyanov (VMware) AuthorDate: Wed, 8 Aug 2018 14:02:51 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 13 Aug 2018 15:21:57 -0300

[tip:perf/urgent] tools lib traceevent, perf tools: Rename pevent find APIs

2018-08-18 Thread tip-bot for Tzvetomir Stoyanov (VMware)
Commit-ID: af85cd19521fe956eeb2cc8b9e41b9b5bbb8e3ae Gitweb: https://git.kernel.org/tip/af85cd19521fe956eeb2cc8b9e41b9b5bbb8e3ae Author: Tzvetomir Stoyanov (VMware) AuthorDate: Wed, 8 Aug 2018 14:02:50 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 13 Aug 2018 15:21:51 -0300

  1   2   >