Kang Minchul
Kang Minchul
While reading documentaions for the sake of gsoc, I found these small typos in docs. This commit amends those typos. Signed-off-by: Kang Minchul
uftrace used travis CI until recently, but currently github action is added. Newly-added github action workflow still need some improvement including pre-commit, coverity scan, etc. I think it would be...
Like @honggyukim mentioned in [here](https://github.com/namhyung/uftrace/issues/1451), I think it's good to have more fields in like total-avg, self-avg, self-min, self-max in tui too. Currently only three fields(total-time, self-time, address) are supported...
Personally, I use `total-avg`, `total-min`, `total-max`, `self-avg`, `self-min`, `self-max` fields in report command is very usefully. But currently `graph` command only support `total`, `self`, `addr` field. I think it would...
According to this document[1] below, in order to get kernel profiling, raw and ftrace function tracepoint access, etc, `/proc/sys/kernel/perf_event_paranoid` value should be considered. However, `/proc/sys/kernel/perf_event_paranoid` in most systems are set...
Currently there is no official webpage for uftrace (except for slide and man pages). It think we can apply readthedocs like below https://uftrace.readthedocs.io/ or make custom github page for uftrace....
Although Amazon Linux uses yum as package manager[1], current /misc/install-deps.sh cannot install packages because ID of /etc/os-release is "amzn". ``` $ cat /etc/os-release NAME="Amazon Linux" VERSION="2" ID="amzn" ID_LIKE="centos rhel fedora"...
This commit fixes bash completion feature, which is not working right now. misc/bash_completion.sh should be relocated, and we can get recommended location of the script wq!:with `pkg-config --variable=completionsdir bash-completion`. Other...
In order to get kernel information with uftrace without any problem, I think /proc/sys/kernel/perf_event_paranoid should be 2 or less. But many distros nowadays set this value to more than 3...
Here is the environment where the problem occurred: ``` $ uname -a Linux minchul 5.15.0-67-generic #74~20.04.1-Ubuntu SMP Wed Feb 22 14:52:34 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux $ cat /etc/os-release...