Linux 性能报告中按自身列排序

Linux 性能报告中按自身列排序,linux,perf,Linux,Perf,如何按perf report输出中的self列进行排序 $ perf --version perf version 4.0.8-300.fc22.x86_64 $ uname -a Linux marko-desktop 4.0.8-300.fc22.x86_64 #1 SMP Fri Jul 10 21:04:56 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux 已使用调用数据 $ perf record -g -p $(pidof node) 默认情况下

如何按
perf report
输出中的
self
列进行排序

$ perf --version
perf version 4.0.8-300.fc22.x86_64

$ uname -a
Linux marko-desktop 4.0.8-300.fc22.x86_64 #1 SMP Fri Jul 10 21:04:56 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
已使用调用数据

$ perf record -g -p $(pidof node)

默认情况下,
perf
接收创建“儿童俯视图”的
--children
参数。因此,只需指定
--no children
开关,就可以切换回“自开销”视图

perf report --no-children 性能报告--无子项
手册页
man perf report

中有关于此主题的讨论,只有最近的手册页有此讨论。我的版本没有提到事件——没有孩子(只有孩子)。答案是正确的,谢谢!
--no children
选项是否可以使用
perf top-g
命令?新鲜人页位于和