summaryrefslogtreecommitdiffstats
path: root/kernel/trace/trace_events_hist.c
AgeCommit message (Expand)AuthorFilesLines
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_par...Ammar Faizi1-1/+2
2022-04-26tracing: Separate hist state updates from hist registrationTom Zanussi1-18/+48
2022-04-26tracing: Have existing event_command.parse() implementations use helpersTom Zanussi1-40/+24
2022-04-26tracing: Remove redundant trigger_ops paramsTom Zanussi1-17/+12
2022-04-26tracing: Remove logic for registering multiple event triggers at a timeTom Zanussi1-11/+6
2022-03-23Merge tag 'trace-v5.18' of git://git.kernel.org/pub/scm/linux/kernel/git/rost...Linus Torvalds1-7/+26
2022-03-10tracing: Fix last_cmd_set() string management in histogram codeSteven Rostedt (Google)1-2/+4
2022-03-01tracing/histogram: Fix sorting on old "cpu" valueSteven Rostedt (Google)1-3/+3
2022-02-23tracing: Fix allocation of last_cmd in last_cmd_set()Steven Rostedt (Google)1-3/+4
2022-02-10tracing: Remove size restriction on hist trigger cmd error loggingTom Zanussi1-7/+23
2022-01-27tracing: Propagate is_signed to expressionTom Zanussi1-0/+3
2022-01-27tracing: Fix smatch warning for do while check in event_hist_trigger_parse()Tom Zanussi1-1/+1
2022-01-27tracing: Fix smatch warning for null glob in event_hist_trigger_parse()Tom Zanussi1-1/+3
2022-01-27tracing/histogram: Fix a potential memory leak for kstrdup()Xiaoke Wang1-0/+1
2022-01-10tracing: Remove ops param from event_command reg()/unreg() callbacksTom Zanussi1-5/+5
2022-01-10tracing: Change event_trigger_ops func() to trigger()Tom Zanussi1-6/+6
2022-01-10tracing: Change event_command func() to parse()Tom Zanussi1-13/+13
2021-12-06tracing: Support __rel_loc relative dynamic data location attributeMasami Hiramatsu1-2/+19
2021-12-01tracing/histograms: String compares should not care about signed valuesSteven Rostedt (VMware)1-1/+1
2021-11-18tracing/histogram: Fix UAF in destroy_hist_field()Kalesh Singh1-19/+22
2021-11-14Merge tag 'trace-v5.16-5' of git://git.kernel.org/pub/scm/linux/kernel/git/ro...Linus Torvalds1-2/+7
2021-11-14tracing: Add length protection to histogram string copiesSteven Rostedt (VMware)1-2/+7
2021-11-13Merge tag 'trace-v5.16-4' of git://git.kernel.org/pub/scm/linux/kernel/git/ro...Linus Torvalds1-5/+7
2021-11-12tracing/histogram: Fix check for missing operands in an expressionKalesh Singh1-1/+2
2021-11-12tracing/histogram: Do not copy the fixed-size char array field over the field...Masami Hiramatsu1-4/+5
2021-11-03Merge tag 'trace-v5.16-2' of git://git.kernel.org/pub/scm/linux/kernel/git/ro...Linus Torvalds1-1/+104
2021-11-01Merge tag 'trace-v5.16' of git://git.kernel.org/pub/scm/linux/kernel/git/rost...Linus Torvalds1-86/+329
2021-11-01tracing/histogram: Optimize division by constantsKalesh Singh1-1/+104
2021-10-29tracing/histogram: Fix semicolon.cocci warningskernel test robot1-1/+1
2021-10-26tracing/histogram: Optimize division by a power of 2Kalesh Singh1-0/+4
2021-10-26tracing/histogram: Covert expr to const if both operands are constantsKalesh Singh1-30/+74
2021-10-26tracing/histogram: Simplify handling of .sym-offset in expressionsKalesh Singh1-26/+17
2021-10-26tracing: Fix operator precedence for hist triggers expressionKalesh Singh1-70/+140