diff options
author | Changbin Du <changbin.du@huawei.com> | 2023-10-17 04:55:24 +0300 |
---|---|---|
committer | Namhyung Kim <namhyung@kernel.org> | 2023-10-17 22:40:51 +0300 |
commit | 9a13ee457a6e7a850ac1d145b0731b1d729b8f42 (patch) | |
tree | 0210b7cbfe2f6771ef3d2164156fbda72daf2298 /tools | |
parent | a20fca2c5db19a09260827e526f37397ba698ce0 (diff) | |
download | linux-9a13ee457a6e7a850ac1d145b0731b1d729b8f42.tar.xz |
perf: script: fix missing ',' for fields option
A comma is missed at the end of line.
Signed-off-by: Changbin Du <changbin.du@huawei.com>
Link: https://lore.kernel.org/r/20231017015524.797065-1-changbin.du@huawei.com
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/builtin-script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c index 517bf25750c8..b1f57401ff23 100644 --- a/tools/perf/builtin-script.c +++ b/tools/perf/builtin-script.c @@ -3899,7 +3899,7 @@ int cmd_script(int argc, const char **argv) "comma separated output fields prepend with 'type:'. " "+field to add and -field to remove." "Valid types: hw,sw,trace,raw,synth. " - "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,dsoff" + "Fields: comm,tid,pid,time,cpu,event,trace,ip,sym,dso,dsoff," "addr,symoff,srcline,period,iregs,uregs,brstack," "brstacksym,flags,data_src,weight,bpf-output,brstackinsn," "brstackinsnlen,brstackoff,callindent,insn,insnlen,synth," |