aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/kernel/trace/trace_events_hist.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2025-05-09tracing: Rename event_trigger_alloc() to trigger_data_alloc()Steven Rostedt1-1/+1
2025-05-06tracing: Add common_comm to histogramsSteven Rostedt1-9/+42
2025-05-06tracing: Move histogram trigger variables from stack to per CPU structureSteven Rostedt1-15/+105
2025-05-06tracing: Always use memcpy() in histogram add_to_key()Steven Rostedt1-4/+2
2025-03-27Merge tag 'trace-v6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-traceLinus Torvalds1-10/+10
2025-03-20tracing: Constify struct event_trigger_opsChristophe JAILLET1-10/+10
2025-03-14tracing: Correct the refcount if the hist/hist_debug file fails to openTengda Wu1-6/+18
2025-02-27tracing: Fix bad hist from corrupting named_triggers listSteven Rostedt1-15/+15
2025-01-07tracing/hist: Support POLLPRI event for poll on histogramMasami Hiramatsu (Google)1-3/+26
2025-01-07tracing/hist: Add poll(POLLIN) support on hist fileMasami Hiramatsu (Google)1-3/+67
2024-12-26tracing: Switch trace_events_hist.c code over to use guard()Steven Rostedt1-22/+10
2024-11-12tracing: Remove redundant check on field->field in histogramsColin Ian King1-4/+1
2024-11-01tracing: Replace strncpy() with strscpy() when copying commJinjie Ruan1-2/+2
2024-10-08tracepoints: Use new static branch APIJosh Poimboeuf1-1/+1
2024-08-07tracing: Have format file honor EVENT_FILE_FL_FREEDSteven Rostedt1-2/+2
2024-01-08tracing histograms: Simplify parse_actions() functionSteven Rostedt (Google)1-25/+24
2023-12-13tracing: Fix uaf issue when open the hist or hist_debug fileZheng Yejian1-4/+8
2023-10-23tracing/histograms: Simplify last_cmd_set()Christophe JAILLET1-9/+2
2023-07-23tracing/histograms: Return an error if we fail to add histogram to hist_vars listMohamed Khalfella1-1/+2
2023-07-12tracing/histograms: Add histograms to hist_vars if they have referenced variablesMohamed Khalfella1-3/+5
2023-05-23tracing: Rename stacktrace field to common_stacktraceSteven Rostedt (Google)1-6/+10
2023-05-23tracing/histograms: Allow variables to have some modifiersSteven Rostedt (Google)1-7/+16
2023-03-09tracing: Check field value in hist_field_name()Steven Rostedt (Google)1-0/+3
2023-03-09tracing: Do not let histogram values have some modifiersSteven Rostedt (Google)1-0/+9
2023-02-16tracing/histogram: Fix stacktrace keyTom Zanussi1-3/+31
2023-02-16tracing/histogram: Fix a few problems with stacktrace variable printingTom Zanussi1-8/+18
2023-02-15tracing: Add BUILD_BUG() to make sure stacktrace fits in stringsSteven Rostedt (Google)1-0/+3
2023-02-15tracing/histogram: Don't use strlen to find length of stacktrace variablesTom Zanussi1-4/+8
2023-01-25tracing/histogram: Add stacktrace typeSteven Rostedt (Google)1-0/+4
2023-01-25tracing: Allow synthetic events to pass around stacktracesSteven Rostedt (Google)1-4/+3
2023-01-25tracing: Allow stacktraces to be saved as histogram variablesSteven Rostedt (Google)1-10/+42
2023-01-24trace_events_hist: add check for return value of 'create_hist_field'Natalia Petrova1-0/+2
2022-12-10tracing/hist: Fix issue of losting command info in error_logZheng Yejian1-1/+1
2022-12-10tracing/hist: Fix out-of-bound write on 'action_data.var_ref_idx'Zheng Yejian1-2/+8
2022-12-10tracing/hist: Fix wrong return value in parse_action_params()Zheng Yejian1-0/+1
2022-12-09tracing: Add nohitcount option for suppressing display of raw hitcountMasami Hiramatsu (Google)1-8/+26
2022-12-09tracing: Add .graph suffix option to histogram valueMasami Hiramatsu (Google)1-16/+61
2022-12-09tracing: Add .percent suffix option to histogram valuesMasami Hiramatsu (Google)1-14/+76
2022-12-09tracing: Allow multiple hitcount values in histogramsTom Zanussi1-3/+9
2022-11-23tracing: Fix race where histograms can be called before the eventSteven Rostedt (Google)1-0/+3
2022-11-22tracing/hist: add in missing * in comment blocksColin Ian King1-2/+2
2022-09-26tracing/hist: Call hist functions directly via a switch statementSteven Rostedt (Google)1-77/+169
2022-07-12tracing/histograms: Simplify create_hist_fields()Zheng Yejian1-3/+2
2022-07-12tracing/histograms: Fix memory leak problemZheng Yejian1-0/+2
2022-05-26tracing: Change "char *" string form to "char []"liqiong1-1/+1
2022-05-26tracing: Fix potential double free in create_var_ref()Keita Suzuki1-0/+3
2022-04-27tracing: Replace usage of found with dedicated list iterator variableJakob Koschel1-8/+7
2022-04-26tracing: Change `if (strlen(glob))` to `if (glob[0])`Ammar Faizi1-1/+1
2022-04-26tracing: Return -EINVAL if WARN_ON(!glob) triggered in event_hist_trigger_parse()Ammar Faizi1-1/+2
2022-04-26tracing: Separate hist state updates from hist registrationTom Zanussi1-18/+48