linux-trace-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-05-30 21:16:58 to 2024-06-04 13:31:26 UTC [more...]

[PATCH 0/6] kernel: Avoid memcpy of task comm
 2024-06-04 13:02 UTC  (27+ messages)
` [PATCH 1/6] fs/exec: Drop task_lock() inside __get_task_comm()
` [PATCH 2/6] tracing: Replace memcpy() with __get_task_comm()
` [PATCH 3/6] auditsc: "
` [PATCH 4/6] security: "
` [PATCH 5/6] bpftool: Make task comm always be NUL-terminated
` [PATCH 6/6] selftests/bpf: Replace memcpy() with __get_task_comm()

[PATCH v4 0/2] Clean up usage of rt_task()
 2024-06-04 12:26 UTC  (5+ messages)
` [PATCH v4 1/2] sched/rt: "
` [PATCH v4 2/2] sched/rt, dl: Convert functions to return bool

[PATCH v3 00/27] function_graph: Allow multiple users for function graph tracing
 2024-06-04 12:18 UTC  (29+ messages)
` [PATCH v3 01/27] function_graph: Convert ret_stack to a series of longs
` [PATCH v3 02/27] fgraph: Use BUILD_BUG_ON() to make sure we have structures divisible by long
` [PATCH v3 03/27] function_graph: Add an array structure that will allow multiple callbacks
` [PATCH v3 04/27] function_graph: Allow multiple users to attach to function graph
` [PATCH v3 05/27] function_graph: Handle tail calls for stack unwinding
` [PATCH v3 06/27] function_graph: Remove logic around ftrace_graph_entry and return
` [PATCH v3 07/27] ftrace/function_graph: Pass fgraph_ops to function graph callbacks
` [PATCH v3 08/27] ftrace: Allow function_graph tracer to be enabled in instances
` [PATCH v3 09/27] ftrace: Allow ftrace startup flags to exist without dynamic ftrace
` [PATCH v3 10/27] ftrace: Add subops logic to allow one ops to manage many
` [PATCH v3 11/27] ftrace: Allow subops filtering to be modified
` [PATCH v3 12/27] function_graph: Have the instances use their own ftrace_ops for filtering
` [PATCH v3 13/27] function_graph: Add pid tracing back to function graph tracer
` [PATCH v3 14/27] function_graph: Use a simple LRU for fgraph_array index number
` [PATCH v3 15/27] function_graph: Add "task variables" per task for fgraph_ops
` [PATCH v3 16/27] function_graph: Move set_graph_function tests to shadow stack global var
` [PATCH v3 17/27] function_graph: Move graph depth stored data "
` [PATCH v3 18/27] function_graph: Move graph notrace bit "
` [PATCH v3 19/27] function_graph: Implement fgraph_reserve_data() and fgraph_retrieve_data()
` [PATCH v3 20/27] function_graph: Add selftest for passing local variables
` [PATCH v3 21/27] ftrace: Add multiple fgraph storage selftest
` [PATCH v3 22/27] function_graph: Use for_each_set_bit() in __ftrace_return_to_handler()
` [PATCH v3 23/27] function_graph: Use bitmask to loop on fgraph entry
` [PATCH v3 24/27] function_graph: Use static_call and branch to optimize entry function
` [PATCH v3 25/27] function_graph: Use static_call and branch to optimize return function
` [PATCH v3 26/27] selftests/ftrace: Add function_graph tracer to func-filter-pid test
` [PATCH v3 27/27] selftests/ftrace: Add fgraph-multi.tc test

[PATCH 0/2] mm/pstore: Reserve named unspecified memory across boots
 2024-06-04 11:08 UTC  (7+ messages)
` [PATCH 1/2] mm/memblock: Add "reserve_mem" to reserved named memory at boot up
` [PATCH 2/2] pstore/ramoops: Add ramoops.mem_name= command line option

[PATCH net-next v10 00/14] Device Memory TCP
 2024-06-04 10:53 UTC  (19+ messages)
` [PATCH net-next v10 01/14] netdev: add netdev_rx_queue_restart()
` [PATCH net-next v10 02/14] net: page_pool: create hooks for custom page providers
` [PATCH net-next v10 05/14] netdev: netdevice devmem allocator
` [PATCH net-next v10 06/14] page_pool: convert to use netmem
` [PATCH net-next v10 10/14] net: add support for skbs with unreadable frags
` [PATCH net-next v10 11/14] tcp: RX path for devmem TCP
` [PATCH net-next v10 13/14] net: add devmem TCP documentation

[PATCH v2 0/4] Fix user stack traces captured from uprobes
 2024-06-04  9:24 UTC  (6+ messages)
` [PATCH v2 3/4] perf,x86: avoid missing caller address in stack traces captured in uprobe
` [PATCH v2 4/4] selftests/bpf: add test validating uprobe/uretprobe stack traces

[PATCH v1 1/1] treewide: Align match_string() with sysfs_match_string()
 2024-06-04  8:28 UTC  (11+ messages)

[PATCH v2 0/3] tracing/probes: Support tracepoint events on modules
 2024-06-03 23:49 UTC  (7+ messages)
` [PATCH v2 1/3] tracepoint: Support iterating over tracepoints "
` [PATCH v2 2/3] tracing/fprobe: Support raw tracepoint events "
` [PATCH v2 3/3] sefltests/tracing: Add a test for "

[PATCH v2 00/27] function_graph: Allow multiple users for function graph tracing
 2024-06-03 23:12 UTC  (41+ messages)
` [PATCH v2 01/27] function_graph: Convert ret_stack to a series of longs
` [PATCH v2 02/27] fgraph: Use BUILD_BUG_ON() to make sure we have structures divisible by long
` [PATCH v2 03/27] function_graph: Add an array structure that will allow multiple callbacks
` [PATCH v2 04/27] function_graph: Allow multiple users to attach to function graph
` [PATCH v2 05/27] function_graph: Handle tail calls for stack unwinding
` [PATCH v2 06/27] function_graph: Remove logic around ftrace_graph_entry and return
` [PATCH v2 07/27] ftrace/function_graph: Pass fgraph_ops to function graph callbacks
` [PATCH v2 08/27] ftrace: Allow function_graph tracer to be enabled in instances
` [PATCH v2 09/27] ftrace: Allow ftrace startup flags to exist without dynamic ftrace
` [PATCH v2 10/27] ftrace: Add subops logic to allow one ops to manage many
` [PATCH v2 11/27] ftrace: Allow subops filtering to be modified
` [PATCH v2 12/27] function_graph: Have the instances use their own ftrace_ops for filtering
` [PATCH v2 13/27] function_graph: Add pid tracing back to function graph tracer
` [PATCH v2 14/27] function_graph: Use a simple LRU for fgraph_array index number
` [PATCH v2 15/27] function_graph: Add "task variables" per task for fgraph_ops
` [PATCH v2 16/27] function_graph: Move set_graph_function tests to shadow stack global var
` [PATCH v2 17/27] function_graph: Move graph depth stored data "
` [PATCH v2 18/27] function_graph: Move graph notrace bit "
` [PATCH v2 19/27] function_graph: Implement fgraph_reserve_data() and fgraph_retrieve_data()
` [PATCH v2 20/27] function_graph: Add selftest for passing local variables
` [PATCH v2 21/27] ftrace: Add multiple fgraph storage selftest
` [PATCH v2 22/27] function_graph: Use for_each_set_bit() in __ftrace_return_to_handler()
` [PATCH v2 23/27] function_graph: Use bitmask to loop on fgraph entry
` [PATCH v2 24/27] function_graph: Use static_call and branch to optimize entry function
` [PATCH v2 25/27] function_graph: Use static_call and branch to optimize return function
` [PATCH v2 26/27] selftests/ftrace: Add function_graph tracer to func-filter-pid test
` [PATCH v2 27/27] selftests/ftrace: Add fgraph-multi.tc test

[PATCH] lib: test_objpool: add missing MODULE_DESCRIPTION() macro
 2024-06-03  6:45 UTC  (2+ messages)

[PATCH RFC 0/4] static key support for error injection functions
 2024-06-02 21:08 UTC  (19+ messages)
` [PATCH RFC 1/4] fault-inject: add support for static keys around fault injection sites
` [PATCH RFC 2/4] error-injection: support static keys around injectable functions
` [PATCH RFC 3/4] mm, slab: add static key for should_failslab()
` [PATCH RFC 4/4] mm, page_alloc: add static key for should_fail_alloc_page()

[syzbot] Monthly trace report (May 2024)
 2024-06-02 21:06 UTC  (4+ messages)

Bug in Kernel 6.8.x, 6.9.x Causing Trace/Panic During Shutdown/Reboot
 2024-06-02  7:32 UTC  (10+ messages)

[PATCH] KUnit: add missing MODULE_DESCRIPTION() macros for lib/test_*.ko
 2024-06-02  3:15 UTC  (3+ messages)

[PATCH 00/20] function_graph: Allow multiple users for function graph tracing
 2024-06-02  2:40 UTC  (9+ messages)
` [PATCH 10/20] function_graph: Have the instances use their own ftrace_ops for filtering

[PATCH] samples: kprobes: add missing MODULE_DESCRIPTION() macros
 2024-06-02  2:30 UTC  (2+ messages)

[PATCH v2] sched/rt: Clean up usage of rt_task()
 2024-06-01 22:31 UTC  (9+ messages)

[PATCH] tracing/fprobe: Support raw tracepoint events on modules
 2024-06-01  1:35 UTC  (3+ messages)

[PATCH] mctp i2c: Add rx trace
 2024-05-31 22:13 UTC  (2+ messages)

[PATCH v11 00/21] GenieZone hypervisor drivers
 2024-05-31 20:36 UTC  (3+ messages)
` [PATCH v11 08/21] virt: geniezone: Add vcpu support

[PATCHv7 bpf-next 0/9] uprobe: uretprobe speed up
 2024-05-31 17:52 UTC  (2+ messages)

[PATCH 0/2] selftests/tracing: Fix ftracetest testcase issues
 2024-05-31 15:00 UTC  (6+ messages)
` [PATCH 1/2] selftests/tracing: Fix event filter test to retry up to 10 times
` [PATCH 2/2] selftests/tracing: Fix to check the required syscall event

[PATCH 0/3] tracing: Fix some selftest issues
 2024-05-31 14:20 UTC  (8+ messages)

[PATCHv6 bpf-next 0/9] uprobe: uretprobe speed up
 2024-05-30 23:04 UTC  (3+ messages)
` [PATCHv6 bpf-next 1/9] x86/shstk: Make return uprobe work with shadow stack

[PATCH 0/4] MCE wrapper and support for new SMCA syndrome MSRs
 2024-05-30 21:16 UTC  (4+ messages)
` [PATCH 2/4] x86/mce, EDAC/mce_amd: Add support for new MCA_SYND{1,2} registers
` [PATCH 3/4] x86/mce/apei: Handle variable register array size
` [PATCH 4/4] EDAC/mce_amd: Add support for FRU Text in MCA


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