linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2019-01-10 13:44:32 to 2019-02-18 14:55:18 UTC [more...]

[RFC PATCH v7 00/13] Add VM kernel tracing over vsockets and FIFOs
 2019-02-18 14:54 UTC  (14+ messages)
` [RFC PATCH v7 01/13] trace-cmd: Minor cleanup in tracecmd_start_recording()
` [RFC PATCH v7 02/13] trace-cmd: Minor cleanup in print_stat()
` [RFC PATCH v7 03/13] trace-cmd: Detect if vsockets are available
` [RFC PATCH v7 04/13] trace-cmd: Add tracecmd_create_recorder_virt function
` [RFC PATCH v7 05/13] trace-cmd: Add TRACE_REQ and TRACE_RESP messages
` [RFC PATCH v7 06/13] trace-cmd: Add buffer instance flags for tracing in guest and agent context
` [RFC PATCH v7 07/13] trace-cmd: Add VM kernel tracing over vsockets transport
` [RFC PATCH v7 08/13] trace-cmd: Use splice(2) for vsockets if available
` [RFC PATCH v7 09/13] trace-cmd: Add `trace-cmd setup-guest` command
` [RFC PATCH v7 10/13] trace-cmd: Try to autodetect number of guest CPUs in setup-guest if not specified
` [RFC PATCH v7 11/13] trace-cmd: Add setup-guest flag for attaching FIFOs to the guest VM config
` [RFC PATCH v7 12/13] trace-cmd: Add splice() recording from FIFO without additional pipe buffer
` [RFC PATCH v7 13/13] trace-cmd: Add VM tracing over FIFOs transport

[RFC PATCH v6 00/11] Add VM kernel tracing over vsockets and FIFOs
 2019-02-18 14:37 UTC  (21+ messages)
` [RFC PATCH v6 01/11] trace-cmd: Detect if vsockets are available
` [RFC PATCH v6 02/11] trace-cmd: Add tracecmd_create_recorder_virt function
` [RFC PATCH v6 03/11] trace-cmd: Add TRACE_REQ and TRACE_RESP messages
` [RFC PATCH v6 04/11] trace-cmd: Add buffer instance flags for tracing in guest and agent context
` [RFC PATCH v6 05/11] trace-cmd: Add VM kernel tracing over vsockets transport
` [RFC PATCH v6 06/11] trace-cmd: Use splice(2) for vsockets if available
` [RFC PATCH v6 07/11] trace-cmd: Add `trace-cmd setup-guest` command
` [RFC PATCH v6 08/11] trace-cmd: Try to autodetect number of guest CPUs in setup-guest if not specified
` [RFC PATCH v6 09/11] trace-cmd: Add setup-guest flag for attaching FIFOs to the guest VM config
` [RFC PATCH v6 10/11] trace-cmd: Add splice() recording from FIFO without additional pipe buffer
` [RFC PATCH v6 11/11] trace-cmd: Add VM tracing over FIFOs transport

[PATCH 1/3] trace-cmd: Fix tracecmd_recorder leaking file descriptors
 2019-02-14 17:32 UTC  (4+ messages)
` [PATCH 2/3] trace-cmd: Add defines for splice() flags on systems with old glibc
` [PATCH 3/3] trace-cmd: Removed some unused #includes

[PATCH] kernel-shark: sched-plugin: Initialize plugin_sched_context_handler to zeros
 2019-02-14 16:51 UTC  (4+ messages)

[PATCH] kernel-shark: Implement proper reser for the OpenGL widget
 2019-02-14 14:04 UTC 

[PATCH 0/8] Various modifications toward KS 1.0
 2019-02-13 16:12 UTC  (9+ messages)
` [PATCH 1/8] kernel-shark: Add more sanity checks for model misbehavior detection
` [PATCH 2/8] kernel-shark: Do not copy the Upper Overflow bin when shifting forward
` [PATCH 3/8] kernel-shark: Check bin 0 for sched_switch event when plotting task graphs
` [PATCH 4/8] kernel-shark: Don't use Data collection when checking if the bin is empty
` [PATCH 5/8] kernel-shark: Make the time labels of the marker more readable
` [PATCH 6/8] kernel-shark: Fix the compile warnings about _GNU_SOURCE being redefined
` [PATCH 7/8] trace-cmd: Fix the printout of the KernelShark executable path
` [PATCH 8/8] kernel-shark: Version 1.0.0

[PATCH 0/5] The right click of the button deselects the marker
 2019-02-13 14:41 UTC  (7+ messages)
` [PATCH 1/5] kernel-shark: Customize the marker switching button
` [PATCH 2/5] kernel-shark: Define a method in View for selecting the Passive marker
` [PATCH 3/5] kernel-shark: Define KS_NO_ROW_SELECTED as a negative row index (-1)
` [PATCH 4/5] kernel-shark-qt: Do marker-deselect by right mouse click of the button
` [PATCH 5/5] kernel-shark: Rename the method for deselecting the Active marker

[PATCH 0/4] kernel-shark: Add sched_waking event for sched plugin processing
 2019-02-12 17:09 UTC  (8+ messages)
` [PATCH 1/4] kernel-shark: Remove testing of "success" field of wakeup events
` [PATCH 2/4] kernel-shark: Consolidate duplicate code of the sched_wakeup events
` [PATCH 3/4] kernel-shark: Remove plugin_get_rec_wakeup_pid()
` [PATCH 4/4] kernel-shark: Add sched_waking event processing to sched_waking

Mapping vsock events from guest to host
 2019-02-11 17:50 UTC 

[RFC v3 11/19] kunit: add Python libraries for handing KUnit config and kernel
 2019-02-09  0:40 UTC  (3+ messages)

[PATCH v3 0/7][POC] trace-cmd: Timetamps sync using PTP-like algorithm, relying on vsock events
 2019-02-08 22:46 UTC  (13+ messages)
` [PATCH v3 1/7] trace-cmd: Implemented new lib API: tracecmd_local_events_system()
` [PATCH v3 2/7] trace-cmd: Added support for negative time offsets in trace.dat file
` [PATCH v3 3/7] trace-cmd: Fixed logic in tracecmd_read_page_record()
` [PATCH v3 4/7] trace-cmd: Added implementation of htonll() and ntohll()
` [PATCH v3 5/7] trace-cmd: Refactored make_instances() and tracecmd_remove_instances()
` [PATCH v3 6/7] trace-cmd: Find and store pids of tasks, which run virtual CPUs of given VM
` [PATCH v3 7/7] trace-cmd [POC]: Implemented timestamps synch PTP-like algorithm, using vsock events

[RFC PATCH v5 00/11] Add VM kernel tracing over vsockets and FIFOs
 2019-02-08 21:03 UTC  (13+ messages)
` [RFC PATCH v5 01/11] trace-cmd: Detect if vsockets are available
` [RFC PATCH v5 02/11] trace-cmd: Add tracecmd_create_recorder_virt function
` [RFC PATCH v5 03/11] trace-cmd: Add TRACE_REQ and TRACE_RESP messages
` [RFC PATCH v5 04/11] trace-cmd: Add buffer instance flags for tracing in guest and agent context
` [RFC PATCH v5 05/11] trace-cmd: Add VM kernel tracing over vsockets transport
` [RFC PATCH v5 06/11] trace-cmd: Use splice(2) for vsockets if available
` [RFC PATCH v5 07/11] trace-cmd: Add `trace-cmd setup-guest` command
` [RFC PATCH v5 08/11] trace-cmd: Try to autodetect number of guest CPUs in setup-guest if not specified
` [RFC PATCH v5 09/11] trace-cmd: Make setup-guest auto attach FIFOs to the guest VM config
` [RFC PATCH v5 10/11] trace-cmd: Set both input and output to non-blocking when recording is stopped
` [RFC PATCH v5 11/11] trace-cmd: Add VM tracing over FIFOs transport

[PATCH 0/8] trace-cmd protocol fixes
 2019-02-08 19:34 UTC  (13+ messages)
` [PATCH 1/8] trace-cmd: Remove unused global variable
` [PATCH 2/8] trace-cmd: Rename error_operation_for_server
` [PATCH 3/8] trace-cmd: Remove tracecmd_msg_handle/tracecmd_msg_server distinction
` [PATCH 4/8] trace-cmd: Check if connection is done when reading data in tracecmd_msg_read_data
` [PATCH 5/8] trace-cmd: Fix a memory leak in tracecmd_msg_send_init_data
` [PATCH 6/8] trace-cmd: Make tracecmd_msg_send_close return error code if any
` [PATCH 7/8] trace-cmd: Add tracecmd_msg_wait_close function
` [PATCH 8/8] trace-cmd: Acknowledge unexpected protocol messages

[RESEND BUG REPORT] System hung! Due to ftrace or KASAN?
 2019-02-02 11:52 UTC  (8+ messages)

[PATCH v2 0/6][POC] trace-cmd: Timetamps sync using PTP-like algorithm, relying on vsock events
 2019-02-02  8:05 UTC  (8+ messages)
` [PATCH v2 1/6] trace-cmd: Implemented new lib API: tracecmd_local_events_system()
` [PATCH v2 2/6] trace-cmd: Added support for negative time offsets in trace.dat file
` [PATCH v2 3/6] trace-cmd: Fixed logic in tracecmd_read_page_record()
` [PATCH v2 4/6] trace-cmd: Added implementation of htonll() and ntohll()
` [PATCH v2 5/6] trace-cmd: Refactored make_instances() and tracecmd_remove_instances()
` [PATCH v2 6/6] trace-cmd [POC]: Implemented timestamps synch PTP-like algorithm, using vsock events

[PATCH v3 00/46] Libtraceevent MAN pages
 2019-02-01 11:21 UTC  (10+ messages)
` [PATCH v3 07/46] tools/lib/traceevent: Man page for tep_get_cpus() and tep_set_cpus()
` [PATCH v3 08/46] tools/lib/traceevent: Man page for tep_is_file_bigendian() and tep_set_file_bigendian()
` [PATCH v3 09/46] tools/lib/traceevent: Man page for tep_is_host_bigendian() and tep_set_host_bigendian()
` [PATCH v3 10/46] tools/lib/traceevent: Man page for tep_is_latency_format() and tep_set_latency_format()

[PATCH 0/6] Few patches, backported from Arnaldo's kernel repo
 2019-01-30 10:44 UTC  (7+ messages)
` [PATCH 1/6] trace-cmd: Initialize host_bigendian at tep_handle allocation
` [PATCH 2/6] trace_cmd: Rename struct cmdline to struct tep_cmdline
` [PATCH 3/6] trace-cmd: Changed return logic of trace_seq_printf() and trace_seq_vprintf() APIs
` [PATCH 4/6] trace-cmd: Changed return logic of tep_register_event_handler() API
` [PATCH 5/6] trace-cmd: Rename tep_is_file_bigendian() to tep_file_bigendian()
` [PATCH 6/6] trace-cmd: Remove tep_data_event_from_type() API

[PATCH] trace-cmd: Fix a buffer overrun
 2019-01-25 10:20 UTC 

[PATCH] tools/lib/traceevent: fix a buffer overrun
 2019-01-25 10:20 UTC 

[PATCH v2] trace-cmd: make python work again
 2019-01-24  0:27 UTC  (2+ messages)

[PATCH 0/7] trace-cmd [POC]: Timestamps sync using PTP-like algorithm, relying on vsock events
 2019-01-22 14:14 UTC  (17+ messages)
` [PATCH 1/7] trace-cmd: Implemented new lib API: tracecmd_local_events_system()
` [PATCH 2/7] trace-cmd: Added new option in trace.dat file for negative time offsets
` [PATCH 3/7] trace-cmd: Fixed logic in tracecmd_read_page_record()
` [PATCH 4/7] trace-cmd: Added implementation of htonll() and ntohll()
` [PATCH 5/7] trace-cmd: Added user configured clock to the record context
` [PATCH 6/7] trace-cmd: Refactored make_instances() and tracecmd_remove_instances()
` [PATCH 7/7] trace-cmd [POC]: Implemented timestamps synch PTP-like algorithm, using vsock events

[PATCH] trace-cmd: make python work again
 2019-01-19  9:15 UTC 

trace-cmd python
 2019-01-19  9:12 UTC  (5+ messages)

[PATCH v4 0/8] Add VM kernel tracing over vsock sockets
 2019-01-16 14:19 UTC  (10+ messages)
` [PATCH v4 1/8] trace-cmd: Minor refactoring
` [PATCH v4 2/8] trace-cmd: Detect if vsock sockets are available
` [PATCH v4 3/8] trace-cmd: Add tracecmd_create_recorder_virt function
` [PATCH v4 4/8] trace-cmd: Use unsigned int for trace-cmd client ports
` [PATCH v4 5/8] trace-cmd: Add TRACE_REQ and TRACE_RESP messages
` [PATCH v4 6/8] trace-cmd: Add buffer instance flags for tracing in guest and agent context
` [PATCH v4 7/8] trace-cmd: Add VM kernel tracing over vsock sockets transport
` [PATCH v4 8/8] trace-cmd: Use splice(2) for vsock sockets if available

[PATCH v2] plugin python: Adjust the handling after PyRun_String() failed
 2019-01-16  3:39 UTC 

[PATCH] kernel-shark-qt: Handle the case when the range of the model is too small
 2019-01-15 15:05 UTC  (2+ messages)

[PATCH v3 0/6] Add VM kernel tracing over vsock sockets
 2019-01-15 15:00 UTC  (12+ messages)
` [PATCH v3 1/6] trace-cmd: Minor refactoring
` [PATCH v3 2/6] trace-cmd: Detect if vsock sockets are available
` [PATCH v3 3/6] trace-cmd: Add tracecmd_create_recorder_virt function
` [PATCH v3 4/6] trace-cmd: Add TRACE_REQ and TRACE_RESP messages
` [PATCH v3 5/6] trace-cmd: Add buffer instance flags for tracing in guest and agent context
` [PATCH v3 6/6] trace-cmd: Add VM kernel tracing over vsock sockets transport

Patchwork is live for linux-trace-devel!
 2019-01-11 22:12 UTC 

[PATCH] Fix formatting of fixed-point numbers to not skip zeros
 2019-01-11 15:05 UTC  (6+ messages)
        ` [PATCH v2] "

[PATCH v3] kernel-shark-qt: Fix a bug in the plugin actions execution
 2019-01-10 14:35 UTC  (2+ messages)

[PATCH 0/5] Cosmetic modifications in KsQuickContextMenu
 2019-01-10 14:31 UTC  (5+ messages)
` [PATCH 3/5] kernel-shark-qt: Rearrange the KsQuickContextMenu menu
` [PATCH 4/5] kernel-shark-qt: Add "clear all filters" action to KsQuickContextMenu
` [PATCH 5/5] kernel-shark-qt: Add section separator in KsQuickContextMenu


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).