linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-11-15 08:57:18 to 2021-12-02 12:22:48 UTC [more...]

[PATCH v6 00/23] Trace file version 7 - sections
 2021-12-02 12:21 UTC  (15+ messages)
` [PATCH v6 01/23] trace-cmd library: Define trace file version 7
` [PATCH v6 02/23] trace-cmd library: Add cache functionality to network message handler
` [PATCH v6 03/23] trace-cmd library: New APIs to get and set version of output handler
` [PATCH v6 04/23] trace-cmd library: Add internal helper function for writing headers before file sections
` [PATCH v6 05/23] trace-cmd library: Write header "
` [PATCH v6 06/23] trace-cmd library: Add multiple options sections in trace file version 7
` [PATCH v6 07/23] trace-cmd library: Do not write CPU count section in trace files "
` [PATCH v6 08/23] trace-cmd library: Move CPU flyrecord trace metadata into the buffer option, for trace file "
` [PATCH v6 09/23] trace-cmd library: Add section header before flyrecord trace data
` [PATCH v6 10/23] trace-cmd library: Fit CPU latency trace data in the new trace file version 7 format
` [PATCH v6 11/23] trace-cmd library: Add macro to check file state on reading
` [PATCH v6 13/23] trace-cmd library: Initialize internal sections database on file read
` [PATCH v6 14/23] trace-cmd library: Use sections database when reading parts of the trace file
` [PATCH v6 15/23] trace-cmd library: Read headers from trace file version 7

[PATCH 0/5] Cleanups of tracecmd_output_ APIs
 2021-12-02 12:19 UTC  (6+ messages)
` [PATCH 1/5] trace-cmd library: Fix typo in tracecmd_output_set_msg()
` [PATCH 2/5] trace-cmd library: New API for creating an output trace handle
` [PATCH 3/5] trace-cmd library: Rename tracecmd_output_allocate()
` [PATCH 4/5] trace-cmd library: Remove APIs for create and init output handle
` [PATCH 5/5] trace-cmd library: Make tracecmd_output_write_init static

[PATCH v2 0/4] New tracefs APIs
 2021-12-02 10:59 UTC  (5+ messages)
` [PATCH v2 1/4] libtracefs: Reuse logic for loading events inside the library
` [PATCH v2 2/4] libtracefs: New API for getting dynamic event
` [PATCH v2 3/4] libtracefs: Unit test for tracefs_dynevent_get_event()
` [PATCH v2 4/4] libtracefs: New API for applying filter on event

[PATCH 0/4] New tracefs APIs
 2021-12-02  5:05 UTC  (8+ messages)
` [PATCH 1/4] libtracefs: Reuse logic for loading events inside the library
` [PATCH 2/4] libtracefs: New API for getting dynamic event
` [PATCH 3/4] libtracefs: Unit test for tracefs_dynevent_get_event()
` [PATCH 4/4] libtracefs: New API for applying filter on event

[PATCH] trace-cmd library: Add API to get information from trace file
 2021-12-02  2:55 UTC  (4+ messages)

[PATCH v6 00/13] user_events: Enable user processes to create and write to trace events
 2021-12-01 18:25 UTC  (14+ messages)
` [PATCH v6 01/13] user_events: Add UABI header for user access to user_events
` [PATCH v6 02/13] user_events: Add minimal support for trace_event into ftrace
` [PATCH v6 03/13] user_events: Add print_fmt generation support for basic types
` [PATCH v6 04/13] user_events: Handle matching arguments from dyn_events
` [PATCH v6 05/13] user_events: Add basic perf and eBPF support
` [PATCH v6 06/13] user_events: Add self-test for ftrace integration
` [PATCH v6 07/13] user_events: Add self-test for dynamic_events integration
` [PATCH v6 08/13] user_events: Add self-test for perf_event integration
` [PATCH v6 09/13] user_events: Optimize writing events by only copying data once
` [PATCH v6 10/13] user_events: Add documentation file
` [PATCH v6 11/13] user_events: Add sample code for typical usage
` [PATCH v6 12/13] user_events: Validate user payloads for size and null termination
` [PATCH v6 13/13] user_events: Use __get_rel_str for relative string fields

[PATCH V8 00/14] RTLA: An interface for osnoise/timerlat tracers
 2021-11-30 15:35 UTC  (16+ messages)
` [PATCH V8 01/14] rtla: Real-Time Linux Analysis tool
` [PATCH V8 02/14] rtla: Helper functions for rtla
` [PATCH V8 03/14] rtla: Add osnoise tool
` [PATCH V8 04/14] rtla/osnoise: Add osnoise top mode
` [PATCH V8 05/14] rtla/osnoise: Add the hist mode
` [PATCH V8 06/14] rtla: Add timerlat tool and timelart top mode
` [PATCH V8 07/14] rtla/timerlat: Add timerlat hist mode
` [PATCH V8 08/14] rtla: Add Documentation
` [PATCH V8 09/14] rtla: Add rtla osnoise man page
` [PATCH V8 10/14] rtla: Add rtla osnoise top documentation
` [PATCH V8 11/14] rtla: Add rtla osnoise hist documentation
` [PATCH V8 12/14] rtla: Add rtla timerlat documentation
` [PATCH V8 13/14] rtla: Add rtla timerlat top documentation
` [PATCH V8 14/14] rtla: Add rtla timerlat hist documentation

[PATCH 0/1] libtracefs: New API for clearing filters
 2021-11-30 14:52 UTC  (4+ messages)
` [PATCH 1/1] libtracefs: New API for clearing filter on event

[PATCH] libtraceevent: Add __rel_loc support
 2021-11-30  0:16 UTC  (13+ messages)
` [PATCH] libtraceevent: Add __rel_loc relative location attribute support
    ` [PATCH v2] "

[PATCH] libtracefs: Rename tracefs_event_append/verify_filter() functions
 2021-11-29 17:31 UTC 

[PATCH v5 00/12] user_events: Enable user processes to create and write to trace events
 2021-11-27 15:09 UTC  (19+ messages)
` [PATCH v5 01/12] user_events: Add UABI header for user access to user_events
` [PATCH v5 02/12] user_events: Add minimal support for trace_event into ftrace
` [PATCH v5 03/12] user_events: Add print_fmt generation support for basic types
` [PATCH v5 04/12] user_events: Handle matching arguments from dyn_events
` [PATCH v5 05/12] user_events: Add basic perf and eBPF support
` [PATCH v5 06/12] user_events: Add self-test for ftrace integration
` [PATCH v5 07/12] user_events: Add self-test for dynamic_events integration
` [PATCH v5 08/12] user_events: Add self-test for perf_event integration
` [PATCH v5 09/12] user_events: Optimize writing events by only copying data once
` [PATCH v5 10/12] user_events: Add documentation file
` [PATCH v5 11/12] user_events: Add sample code for typical usage
` [PATCH v5 12/12] user_events: Validate user payloads for size and null termination

[PATCH v2 09/10] trace-cmd: Use the new flow when creating output handler
 2021-11-26 13:33 UTC  (3+ messages)

[PATCH v3] libtraceevent: A new API for trace page size
 2021-11-26  3:46 UTC 

[PATCH] libtracefs: Rename tracefs_hist*alloc*() functions once again
 2021-11-25 14:58 UTC 

[PATCH V7 00/14] RTLA: An interface for osnoise/timerlat tracers
 2021-11-25 14:30 UTC  (15+ messages)
` [PATCH V7 01/14] rtla: Real-Time Linux Analysis tool
` [PATCH V7 02/14] rtla: Helper functions for rtla
` [PATCH V7 05/14] rtla/osnoise: Add the hist mode

[PATCH] libtracefs: Don't ignore LDFLAGS when linking the shared libs
 2021-11-24 22:34 UTC 

[PATCH] trace-cmd library: Clean up comments and handle variable name
 2021-11-24 20:48 UTC 

[PATCH v5 20/25] trace-cmd library: Initialize CPU data for reading from version 7 trace files
 2021-11-24 19:51 UTC  (3+ messages)
` [PATCH v5 24/25] trace-cmd: Call additional APIs when creating trace file

[PATCH v5 10/25] trace-cmd library: Add section header before flyrecord trace data
 2021-11-24 19:36 UTC  (6+ messages)
` [PATCH v5 12/25] trace-cmd library: Do not write CPUs with empty "
` [PATCH v5 14/25] trace-cmd library: Introduce sections in trace file reading logic

[PATCH v5 09/25] trace-cmd record: Append trace options after the trace data are written
 2021-11-24 19:27 UTC  (2+ messages)

[PATCH v5 01/25] trace-cmd library: Define trace file version 7
 2021-11-24 19:17 UTC  (3+ messages)

[PATCH v5 04/25] trace-cmd library: Add internal helper function for writing headers before file sections
 2021-11-24 19:15 UTC  (2+ messages)

[PATCH v3 0/4] Refactor the logic for writing trace data in the file
 2021-11-24 17:22 UTC  (5+ messages)
` [PATCH v3 2/4] trace-cmd: Use the new trace buffers API
` [PATCH v3 3/4] trace-cmd library: Helper logic to update the trace buffer offset

[RFC PATCH 1/2] arm64/tracing: add cntvct based trace clock
 2021-11-24  9:45 UTC  (2+ messages)

[PATCH v2 04/10] trace-cmd library: New API for setting a custom kallsyms to an output handler
 2021-11-24  3:46 UTC  (2+ messages)

[PATCH v2 00/10] Refactor APIs for creating output handler
 2021-11-24  3:41 UTC  (6+ messages)
` [PATCH v2 01/10] trace-cmd library: New API for allocating an "
` [PATCH v2 02/10] trace-cmd library: New API for setting a message context to "

[PATCH] libtraceevent: Do not read non printable characters
 2021-11-23 22:10 UTC 

[PATCH 0/3] libtracefs: Update hist example
 2021-11-23 21:59 UTC  (4+ messages)
` [PATCH 1/3] libtracefs/sqlhist: Add -B option to use instances for histograms
` [PATCH 2/3] libtracefs/Documentation: Clean up libtracefs-hist man pages
` [PATCH 3/3] libtracefs/Documentation: Modify the hist man page example

[PATCH] libtracefs: Rename *_show() to *_echo_cmd()
 2021-11-23 18:33 UTC 

[PATCH] trace-cmd report: Avoid crash on unknown event
 2021-11-23 15:38 UTC  (4+ messages)

[PATCH v2] libtraceevent: A new API for trace page size
 2021-11-23  3:30 UTC  (2+ messages)

[PATCH 00/11] libtracefs: Have all man page examples be executable
 2021-11-22 23:49 UTC  (12+ messages)
` [PATCH 01/11] libtracefs: Move creation of sqlhist into new samples directory
` [PATCH 02/11] libtracefs: Fix example in the dynamic events man page to compile
` [PATCH 03/11] libtracefs/Documentation: Fix man page examples to include the proper header
` [PATCH 04/11] tracefs/Documentation: Fix example in libtracefs-eprobes.txt to compile
` [PATCH 05/11] libtracefs: Make samples easily extract man page example programs
` [PATCH 06/11] libtracefs: Add new API tracefs_dynevent_get()
` [PATCH 07/11] libtracefs/Documentation: Fix example in libtracefs-error.txt
` [PATCH 08/11] libtracefs/Documentation: Fix function-filter call to tracefs_list_free()
` [PATCH 09/11] libtracefs/Documentation: Update libtracefs-hist-cont.txt to new API
` [PATCH 10/11] libtracefs: Add all working man page examples to samples
` [PATCH 11/11] libtracefs/Documentation: Update stream example to have a parameter

[PATCH v2 0/5] tracing: Add __rel_loc support
 2021-11-22  9:30 UTC  (6+ messages)
` [PATCH v2 1/5] tracing: Support __rel_loc relative dynamic data location attribute
` [PATCH v2 2/5] tracing: Add '__rel_loc' using trace event macros
` [PATCH v2 3/5] samples/trace_event: Add '__rel_loc' using sample event
` [PATCH v2 4/5] libtraceevent: Add __rel_loc relative location attribute support
` [PATCH v2 5/5] tools/perf: Add '__rel_loc' event field parsing support

[PATCH] libtracefs: Use getpid instead of gettid
 2021-11-21 21:25 UTC  (2+ messages)

[RFC PATCH 0/3] Introduce configurable ring buffer page size
 2021-11-18  4:32 UTC  (10+ messages)
` [PATCH 1/3] [RFC] trace: Page size per ring buffer
` [PATCH 2/3] [RFC] trace: Add interface for configuring trace ring buffer size
` [PATCH 3/3] [WiP] trace: Set new size of the ring buffer page

[PATCH] trace-cmd: Fix trace_tsc2nsec_is_supported() on !x86
 2021-11-16 19:50 UTC  (2+ messages)

[PATCH] trace-cmd: Fix sizeof print warnings
 2021-11-16  4:46 UTC 

[PATCH v7 00/15] libtracefs dynamic events support
 2021-11-15 10:45 UTC  (16+ messages)
` [PATCH v7 01/15] libtracefs: New APIs for dynamic events
` [PATCH v7 02/15] libtracefs: New APIs for kprobe allocation
` [PATCH v7 03/15] libtracefs: Remove redundant kprobes APIs
` [PATCH v7 04/15] libtracefs: Reimplement kprobe raw APIs
` [PATCH v7 05/15] libtracefs: Extend kprobes unit test
` [PATCH v7 06/15] libtracefs: Rename tracefs_synth_init API
` [PATCH v7 07/15] libtracefs: Use the internal dynamic events API when creating synthetic events
` [PATCH v7 08/15] libtracefs: Remove instance parameter from synthetic events APIs
` [PATCH v7 09/15] libtracefs: Add unit test for synthetic events
` [PATCH v7 10/15] libtracefs: Update kprobes man pages
` [PATCH v7 11/15] libtracefs: Document dynamic events APIs
` [PATCH v7 12/15] libtracefs: Do not clean sqlhist man page source
` [PATCH v7 13/15] libtracefs: Introduce eprobe API
` [PATCH v7 14/15] libtracefs: Add utest for event probes
` [PATCH v7 15/15] libtracefs: Document eprobe API

[PATCH 1/2] trace-cruncher: More options for stopping data iteration
 2021-11-15  8:55 UTC  (2+ messages)
` [PATCH 2/2] trace-cruncher: Make the tracing of a process stoppable


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).