linux-trace-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2023-05-01 15:09:41 to 2023-05-16 07:20:15 UTC [more...]

[PATCH v2 0/4] Make fprobe + rethook immune to recursion
 2023-05-16  7:18 UTC  (5+ messages)
` [PATCH v2 1/4] rethook: use preempt_{disable, enable}_notrace in rethook_trampoline_handler
` [PATCH v2 2/4] fprobe: make fprobe_kprobe_handler recursion free
` [PATCH v2 3/4] fprobe: add recursion detection in fprobe_exit_handler
` [PATCH v2 4/4] rehook, fprobe: do not trace rethook related functions

[PATCH] bpf: reject blacklisted symbols in kprobe_multi to avoid recursive trap
 2023-05-16  5:49 UTC  (19+ messages)

[PATCH 0/4] Make fpobe + rethook immune to recursion
 2023-05-16  5:33 UTC  (11+ messages)
` [PATCH 1/4] rethook: use preempt_{disable, enable}_notrace in rethook_trampoline_handler
` [PATCH 2/4] fprobe: make fprobe_kprobe_handler recursion free
` [PATCH 3/4] fprobe: add recursion detection in fprobe_exit_handler
` [PATCH 4/4] rehook, fprobe: mark rethook related functions notrace

[PATCH] tracing: Replace all non-returning strlcpy with strscpy
 2023-05-16  4:39 UTC 

[PATCH] tracing/user_events: Run BPF program if attached
 2023-05-15 21:57 UTC  (11+ messages)

[RFC PATCH v4 0/2] trace,smp: Add tracepoints for csd
 2023-05-15 18:47 UTC  (4+ messages)
` [RFC PATCH v4 1/2] trace,smp: Add tracepoints around remotelly called functions
` [RFC PATCH v4 2/2] trace,smp: Add tracepoints for scheduling "

[PATCH V10 0/4] riscv: Optimize function trace
 2023-05-15 18:38 UTC  (8+ messages)
` [PATCH V10 1/4] riscv: select FTRACE_MCOUNT_USE_PATCHABLE_FUNCTION_ENTRY
` [PATCH V10 2/4] riscv: ftrace: Add ftrace_graph_func
` [PATCH V10 3/4] riscv: ftrace: Add DYNAMIC_FTRACE_WITH_DIRECT_CALLS support
` [PATCH V10 4/4] samples: ftrace: Add riscv support for SAMPLE_FTRACE_DIRECT[_MULTI]

[RFC PATCH v3 1/1] trace,smp: Add tracepoints around remotelly called functions
 2023-05-15 17:56 UTC  (3+ messages)

[PATCH v10 00/11] tracing: Add fprobe/tracepoint events
 2023-05-15 15:11 UTC  (14+ messages)
` [PATCH v10 01/11] fprobe: Pass return address to the handlers
` [PATCH v10 02/11] tracing/probes: Add fprobe events for tracing function entry and exit
` [PATCH v10 03/11] selftests/ftrace: Add fprobe related testcases
` [PATCH v10 04/11] tracing/probes: Add tracepoint support on fprobe_events
` [PATCH v10 05/11] tracing/probes: Move event parameter fetching code to common parser
` [PATCH v10 06/11] tracing/probes: Support function parameters if BTF is available
` [PATCH v10 07/11] tracing/probes: Add $args meta argument for all function args
` [PATCH v10 08/11] tracing/probes: Add BTF retval type support
` [PATCH v10 09/11] selftests/ftrace: Add tracepoint probe test case
` [PATCH v10 10/11] selftests/ftrace: Add BTF arguments test cases
` [PATCH v10 11/11] Documentation: tracing/probes: Add fprobe event tracing document

[PATCH v2 0/9] tracing: introducing eventfs
 2023-05-15 11:35 UTC  (23+ messages)
` [PATCH v2 1/9] eventfs: introducing struct tracefs_inode
` [PATCH v2 2/9] eventfs: adding eventfs dir add functions
` [PATCH v2 3/9] eventfs: adding eventfs file "
` [PATCH v2 4/9] eventfs: adding eventfs file, directory remove function
` [PATCH v2 5/9] eventfs: adding functions to create eventfs files and directories
` [PATCH v2 6/9] eventfs: adding eventfs lookup, read, open functions
` [PATCH v2 7/9] eventfs: creating tracefs_inode_cache
` [PATCH v2 8/9] eventfs: moving tracing/events to eventfs
` [PATCH v2 9/9] test: ftrace: fix kprobe test for eventfs

[PATCH 1/4] rethook: use preempt_{disable, enable}_notrace in rethook_trampoline_handler
 2023-05-15  3:13 UTC  (4+ messages)
` [PATCH 2/4] fprobe: make fprobe_kprobe_handler recursion free
` [PATCH 3/4] fprobe: add recursion detection in fprobe_exit_handler
` [PATCH 4/4] rehook, fprobe: mark rethook related functions notrace

[PATCH v9.1 00/11] tracing: Add fprobe/tracepoint events
 2023-05-14  4:11 UTC  (22+ messages)
` [PATCH v9.1 01/11] fprobe: Pass return address to the handlers
` [PATCH v9.1 02/11] tracing/probes: Add fprobe events for tracing function entry and exit
` [PATCH v9.1 03/11] selftests/ftrace: Add fprobe related testcases
` [PATCH v9.1 04/11] tracing/probes: Add tracepoint support on fprobe_events
` [PATCH v9.1 05/11] tracing/probes: Move event parameter fetching code to common parser
` [PATCH v9.1 06/11] tracing/probes: Support function parameters if BTF is available
` [PATCH v9.1 07/11] tracing/probes: Add $$args meta argument for all function args
` [PATCH v9.1 08/11] tracing/probes: Add BTF retval type support
` [PATCH v9.1 09/11] selftests/ftrace: Add tracepoint probe test case
` [PATCH v9.1 10/11] selftests/ftrace: Add BTF arguments test cases
` [PATCH v9.1 11/11] Documentation: tracing/probes: Add fprobe event tracing document

[PATCH] kprobe: use preempt_{disable, enable}_notrace in kprobe_busy_{begin, end}
 2023-05-13  9:05 UTC 

[PATCH] rethook: use preempt_{disable, enable}_notrace in rethook_trampoline_handler
 2023-05-13  8:23 UTC 

[PATCH] rethook: use preempt_{disable, enable}_notrace in rethook_trampoline_handler
 2023-05-13  8:16 UTC 

[PATCH V8 0/4] riscv: Optimize function trace
 2023-05-13  2:57 UTC  (5+ messages)
` [PATCH V8 1/4] riscv: select FTRACE_MCOUNT_USE_PATCHABLE_FUNCTION_ENTRY
` [PATCH V8 4/4] samples: ftrace: Add riscv support for SAMPLE_FTRACE_DIRECT[_MULTI]

[PATCH v3 0/2] selftests/ftrace: Add tests for kprobes and optimized probes
 2023-05-12 22:15 UTC  (5+ messages)
` [PATCH v3 2/2] selftests/ftrace: Add new test case which checks for "

(no subject)
 2023-05-11 16:46 UTC  (4+ messages)
` [PATCH 1/2] tracing/osnoise: Switch from PF_NO_SETAFFINITY to migrate_disable
` [PATCH 2/2] tracing/osnoise: Skip running osnoise if all instances are off
` Subject: [PATCH 0/2] osnoise improvements

[PATCH] tracing/timerlat: Always wakeup the timerlat thread
 2023-05-11 16:32 UTC 

[PATCH V9 0/4] riscv: Optimize function trace
 2023-05-11 13:30 UTC  (10+ messages)
` [PATCH V9 1/4] riscv: select FTRACE_MCOUNT_USE_PATCHABLE_FUNCTION_ENTRY
` [PATCH V9 2/4] riscv: ftrace: Add ftrace_graph_func
` [PATCH V9 3/4] riscv: ftrace: Add DYNAMIC_FTRACE_WITH_DIRECT_CALLS support
` [PATCH V9 4/4] samples: ftrace: Add riscv support for SAMPLE_FTRACE_DIRECT[_MULTI]

[RFC PATCH 1/1] smp: Add tracepoints for functions called with smp_call_function*()
 2023-05-11  9:25 UTC  (14+ messages)

[PATCH v6] f2fs: add async reset zone command support
 2023-05-11  5:24 UTC  (3+ messages)
    `  "

[RFC PATCH v2 1/1] trace,smp: Add tracepoints around remotelly called functions
 2023-05-10 23:05 UTC  (2+ messages)

[PATCH] selftests/ftrace: Test toplevel-enable for instance
 2023-05-09 20:36 UTC 

[PATCH v2 0/3] Add basic tracing for uclamp and schedutil
 2023-05-09 12:22 UTC  (4+ messages)
` [PATCH v2 1/3] sched/tp: Add new tracepoint to track uclamp set from user-space
` [PATCH v2 2/3] cpufreq: schedutil: Refactor sugov_update_shared() internals
` [PATCH v2 3/3] schedutil: trace: Add tracing to capture filter out requests

[PATCH modules-next v10 00/13] kallsyms: reliable symbol->address lookup with /proc/kallmodsyms
 2023-05-08 22:06 UTC  (2+ messages)

[PATCH v2] selftests/ftrace: Improve integration with kselftest runner
 2023-05-08 17:18 UTC  (2+ messages)

[PATCH] tracing/user_events: Use long vs int for atomic bit ops
 2023-05-05 20:58 UTC 

[PATCH v3 1/3] kasan: switch kunit tests to console tracepoints
 2023-05-05 13:58 UTC  (6+ messages)

[PATCH v5] f2fs: add async reset zone command support
 2023-05-05 11:49 UTC  (2+ messages)

[PATCH] ftrace: Add MODIFIED flag to show if IPMODIFY or direct was attached
 2023-05-05  3:16 UTC  (2+ messages)

[bug report] tracing/user_events: Add ioctl for disabling addresses
 2023-05-04 17:31 UTC  (2+ messages)

[PATCH v4] f2fs: add async reset zone command support
 2023-05-04  2:22 UTC  (4+ messages)
    `  "
      ` (2) "

[PATCH] tracing: Fix permissions for the buffer_percent file
 2023-05-03 16:46 UTC  (2+ messages)

Estimating Services
 2023-05-03 15:10 UTC 

[PATCH] ftrace: Allow inline functions not inlined to be traced
 2023-05-02 22:25 UTC  (2+ messages)

[PATCH v9 00/11] tracing: Add fprobe events
 2023-05-02  0:01 UTC  (11+ messages)
` [PATCH v9 03/11] selftests/ftrace: Add fprobe related testcases
` [PATCH v9 04/11] tracing/probes: Add tracepoint support on fprobe_events
` [PATCH v9 05/11] tracing/probes: Move event parameter fetching code to common parser
` [PATCH v9 06/11] tracing/probes: Support function parameters if BTF is available
` [PATCH v9 07/11] tracing/probes: Add $$args meta argument for all function args
` [PATCH v9 08/11] tracing/probes: Add BTF retval type support
` [PATCH v9 09/11] selftests/ftrace: Add tracepoint probe test case
` [PATCH v9 10/11] selftests/ftrace: Add BTF arguments test cases
` [PATCH v9 11/11] Documentation: tracing/probes: Add fprobe event tracing document
` [v8] Re: [PATCH v9 00/11] tracing: Add fprobe events


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