linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-10-09 02:52:38 to 2023-11-10 00:01:37 UTC [more...]

[RFC 00/52] perf tools: Introduce data type profiling (v2)
 2023-11-10  0:00 UTC  (53+ messages)
` [PATCH 01/52] perf annotate: Pass "-l" option to objdump conditionally
` [PATCH 02/52] perf annotate: Move raw_comment and raw_func_start
` [PATCH 03/52] perf tools: Add util/debuginfo.[ch] files
` [PATCH 04/52] perf dwarf-aux: Fix die_get_typename() for void *
` [PATCH 05/52] perf dwarf-aux: Move #ifdef code to the header file
` [PATCH 06/52] perf dwarf-aux: Add die_get_scopes() helper
` [PATCH 07/52] perf dwarf-aux: Add die_find_variable_by_reg() helper
` [PATCH 08/52] perf build: Add feature check for dwarf_getcfi()
` [PATCH 09/52] perf probe: Convert to check dwarf_getcfi feature
` [PATCH 10/52] perf dwarf-aux: Factor out die_get_typename_from_type()
` [PATCH 11/52] perf dwarf-regs: Add get_dwarf_regnum()
` [PATCH 12/52] perf annotate-data: Add find_data_type()
` [PATCH 13/52] perf annotate-data: Add dso->data_types tree
` [PATCH 14/52] perf annotate: Factor out evsel__get_arch()
` [PATCH 15/52] perf annotate: Check if operand has multiple regs
` [PATCH 16/52] perf annotate: Add annotate_get_insn_location()
` [PATCH 17/52] perf annotate: Implement hist_entry__get_data_type()
` [PATCH 18/52] perf report: Add 'type' sort key
` [PATCH 19/52] perf report: Support data type profiling
` [PATCH 20/52] perf annotate-data: Add member field in the data type
` [PATCH 21/52] perf annotate-data: Update sample histogram for type
` [PATCH 22/52] perf report: Add 'typeoff' sort key
` [PATCH 23/52] perf report: Add 'symoff' "
` [PATCH 24/52] perf annotate: Add --data-type option
` [PATCH 25/52] perf annotate: Support event group display
` [PATCH 26/52] perf annotate: Add --type-stat option for debugging
` [PATCH 27/52] perf annotate: Add --insn-stat "
` [PATCH 28/52] perf annotate-data: Parse 'lock' prefix from llvm-objdump
` [PATCH 29/52] perf annotate-data: Handle macro fusion on x86
` [PATCH 30/52] perf annotate-data: Handle array style accesses
` [PATCH 31/52] perf annotate-data: Add stack operation pseudo type
` [PATCH 32/52] perf dwarf-aux: Add die_find_variable_by_addr()
` [PATCH 33/52] perf annotate-data: Handle PC-relative addressing
` [PATCH 34/52] perf annotate-data: Support global variables
` [PATCH 35/52] perf dwarf-aux: Add die_get_cfa()
` [PATCH 36/52] perf annotate-data: Support stack variables
` [PATCH 37/52] perf dwarf-aux: Check allowed DWARF Ops
` [PATCH 38/52] perf dwarf-aux: Add die_collect_vars()
` [PATCH 39/52] perf dwarf-aux: Handle type transfer for memory access
` [PATCH 40/52] perf annotate-data: Introduce struct data_loc_info
` [PATCH 41/52] perf map: Add map__objdump_2rip()
` [PATCH 42/52] perf annotate: Add annotate_get_basic_blocks()
` [PATCH 43/52] perf annotate-data: Maintain variable type info
` [PATCH 44/52] perf annotate-data: Add update_insn_state()
` [PATCH 45/52] perf annotate-data: Handle global variable access
` [PATCH 46/52] perf annotate-data: Handle call instructions
` [PATCH 47/52] perf annotate-data: Implement instruction tracking
` [PATCH 48/52] perf annotate: Parse x86 segment register location
` [PATCH 49/52] perf annotate-data: Handle this-cpu variables in kernel
` [PATCH 50/52] perf annotate-data: Track instructions with a this-cpu variable
` [PATCH 51/52] perf annotate-data: Add stack canary type
` [PATCH 52/52] perf annotate-data: Add debug message

[RFC 00/48] perf tools: Introduce data type profiling (v1)
 2023-11-09  5:36 UTC  (92+ messages)
` [PATCH 01/48] perf annotate: Move raw_comment and raw_func_start
` [PATCH 02/48] perf annotate: Check if operand has multiple regs
` [PATCH 03/48] perf tools: Add util/debuginfo.[ch] files
` [PATCH 04/48] perf dwarf-aux: Fix die_get_typename() for void *
` [PATCH 05/48] perf dwarf-aux: Move #ifdef code to the header file
` [PATCH 06/48] perf dwarf-aux: Add die_get_scopes() helper
` [PATCH 07/48] perf dwarf-aux: Add die_find_variable_by_reg() helper
` [PATCH 08/48] perf dwarf-aux: Factor out __die_get_typename()
` [PATCH 09/48] perf dwarf-regs: Add get_dwarf_regnum()
` [PATCH 10/48] perf annotate-data: Add find_data_type()
` [PATCH 11/48] perf annotate-data: Add dso->data_types tree
` [PATCH 12/48] perf annotate: Factor out evsel__get_arch()
` [PATCH 13/48] perf annotate: Add annotate_get_insn_location()
` [PATCH 14/48] perf annotate: Implement hist_entry__get_data_type()
` [PATCH 15/48] perf report: Add 'type' sort key
` [PATCH 16/48] perf report: Support data type profiling
` [PATCH 17/48] perf annotate-data: Add member field in the data type
` [PATCH 18/48] perf annotate-data: Update sample histogram for type
` [PATCH 19/48] perf report: Add 'typeoff' sort key
` [PATCH 20/48] perf report: Add 'symoff' "
` [PATCH 21/48] perf annotate: Add --data-type option
` [PATCH 22/48] perf annotate: Add --type-stat option for debugging
` [PATCH 23/48] perf annotate: Add --insn-stat "
` [PATCH 24/48] perf annotate-data: Parse 'lock' prefix from llvm-objdump
` [PATCH 25/48] perf annotate-data: Handle macro fusion on x86
` [PATCH 26/48] perf annotate-data: Handle array style accesses
` [PATCH 27/48] perf annotate-data: Add stack operation pseudo type
` [PATCH 28/48] perf dwarf-aux: Add die_find_variable_by_addr()
` [PATCH 29/48] perf annotate-data: Handle PC-relative addressing
` [PATCH 30/48] perf annotate-data: Support global variables
` [PATCH 31/48] perf dwarf-aux: Add die_get_cfa()
` [PATCH 32/48] perf annotate-data: Support stack variables
` [PATCH 33/48] perf dwarf-aux: Check allowed DWARF Ops
` [PATCH 34/48] perf dwarf-aux: Add die_collect_vars()
` [PATCH 35/48] perf dwarf-aux: Handle type transfer for memory access
` [PATCH 36/48] perf annotate-data: Introduce struct data_loc_info
` [PATCH 37/48] perf map: Add map__objdump_2rip()
` [PATCH 38/48] perf annotate: Add annotate_get_basic_blocks()
` [PATCH 39/48] perf annotate-data: Maintain variable type info
` [PATCH 40/48] perf annotate-data: Add update_insn_state()
` [PATCH 41/48] perf annotate-data: Handle global variable access
` [PATCH 42/48] perf annotate-data: Handle call instructions
` [PATCH 43/48] perf annotate-data: Implement instruction tracking
` [PATCH 44/48] perf annotate: Parse x86 segment register location
` [PATCH 45/48] perf annotate-data: Handle this-cpu variables in kernel
` [PATCH 46/48] perf annotate-data: Track instructions with a this-cpu variable
` [PATCH 47/48] perf annotate-data: Add stack canary type
` [PATCH 48/48] perf annotate-data: Add debug message

[PATCH] trace cmd record: Remove extra characters in documentation
 2023-11-07 22:32 UTC 

[PATCH] libtraceeval: Replace hash lookup with red-black tree
 2023-10-19 21:12 UTC 

[PATCH v3] libtracecmd: Use an rbtree for mapping of cache pages
 2023-10-19 20:52 UTC 

[PATCH] libtraceeval: Add traceeval_type_index() API
 2023-10-19 15:30 UTC 

[PATCH 0/2] trace-cmd: Cleanups for --daemonize option
 2023-10-17 23:20 UTC  (3+ messages)
` [PATCH 1/2] trace-cmd record: Use SIGTERM as well for --daemonize
` [PATCH 2/2] trace-cmd record: Cleanup - be consistent with return status variable

[PATCH] libtraceeval: Add traceeval_stat_max/min_timestamp() API
 2023-10-17 18:47 UTC  (4+ messages)

[PATCH] libtracecmd: Add tracecmd_iterate_reset() API
 2023-10-17 15:50 UTC 

[PATCH] libtracecmd: Use an rbtree for mapping of cache pages
 2023-10-17 14:57 UTC  (4+ messages)

[PATCH v2] libtraceeval: Have TRACEEVAL_ARRAY_SIZE() handle NULL pointer
 2023-10-17 14:47 UTC  (4+ messages)

[PATCH v2] libtracecmd: Use an rbtree for mapping of cache pages
 2023-10-17 14:43 UTC 

[PATCH 0/2] libtraceeval: Document traceeval_delta_* functions
 2023-10-13  0:49 UTC  (3+ messages)
` [PATCH 1/2] libtraceeval: Add man pages for traceeval_delta create/start/stop functions
` [PATCH 2/2] libtraceeval: Add man pages for libtraceeval_delta retrieving of deltas

[PATCH] libtraceeval: Add timestamp to traceeval_delta_query()
 2023-10-12 18:51 UTC 

[PATCH] libtraceeval: Remove sizeof() checks from traceeval_data_create_size()
 2023-10-12 18:18 UTC 

[PATCH] libtraceeval task-eval: Simplify logic by adding more helper functions
 2023-10-12 16:40 UTC 

[PATCH] libtraceeval: Remove TIMESTAMP and STAT flags from API
 2023-10-12 14:58 UTC 

[PATCH] libtraceeval: Simplify and correct man page example code
 2023-10-12  2:38 UTC 

[PATCH] libtracefs: Free "followers" when freeing instance
 2023-10-12  2:30 UTC 

[PATCH] libtraceeval: Add traceeval_hitcount() API
 2023-10-11 22:28 UTC 

[PATCH] libtraceeval: Fix timestamp when vals is NULL
 2023-10-11 22:23 UTC 

[PATCH] libtraceeval: Add generic message about bad nr_keys/vals
 2023-10-11 22:07 UTC 

[PATCH] libtraceeval: Add average and standard deviation to stat
 2023-10-11 17:38 UTC 

[PATCH 00/11] libtraceeval task-eval: Updates to evaluate tasks
 2023-10-11  3:25 UTC  (12+ messages)
` [PATCH 01/11] libtraceeval task-eval: Fix naming conventions of variables
` [PATCH 02/11] libtraceeval task-eval: Use "assign_*keys/vals()" helper functions
` [PATCH 03/11] libtraceeval task-eval: Add tracking of priority
` [PATCH 04/11] libtraceeval task-eval: Add way to read trace.dat buffer instances
` [PATCH 05/11] libtraceeval task-eval: Account for ZOMBIE and EXITED states
` [PATCH 06/11] libtraceeval task-eval: Show max, min and count of deltas too
` [PATCH 07/11] libtraceeval task-eval: Add more comments
` [PATCH 08/11] libtraceeval task-eval: Only release results if found
` [PATCH 09/11] libtraceeval task-eval: Do not add pdata to non RUNNING tasks
` [PATCH 10/11] libtraceveal task-eval: Clean up all traceeval_iterators
` [PATCH 11/11] libtraceeval task-evals: Free the libtraceevals

[PATCH] libtraceeval: Fix some missing frees
 2023-10-11  3:08 UTC 

[PATCH] libtraceeval: Do not just copy vals for delta elements
 2023-10-11  3:02 UTC 

[PATCH 1/1] Fix incompatible function pointer types assigning to stream_find_id_func
 2023-10-10 22:34 UTC  (2+ messages)

[PATCH 0/2] libtraceeval: Add warning messages
 2023-10-10 19:55 UTC  (3+ messages)
` [PATCH 1/2] libtraceeval: Add traceeval_vwaring() API
` [PATCH 2/2] libtraceeval: Have various errors print warnings

[PATCH] libtraceeval: Do not update stats if both the timestamp and value are zero
 2023-10-10 19:54 UTC 

[PATCH v3 0/2] libtraceeval: Add delta interface
 2023-10-09  2:53 UTC  (3+ messages)
` [PATCH v3 1/2] libtraceeval: Add traceeval_delta_start/continue/stop() API
` [PATCH v3 2/2] libtraceeval: Add traceeval_iterator_delta_start_get()


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