我已经在 android AVD 上安装了 Ftrace 并尝试使用 Ftrace 的功能,但它不起作用。
以下是我所做的列表:
- 安装 ubuntu 10.04 LTS
- 安装必要的工具,例如 android sdk、toolchain、libs 等
- 下载金鱼内核
参考 - http://blog.markloiseau.com/2012/07/how-to-compile-the-android-goldfish-emulator-kernel/ - 修改内核配置文件(开启 Tracer Options)
- 使用已使用跟踪器选项编译的自定义内核启动金鱼
- 尝试使用 Ftrace 功能
- 内核冻结
这是日志:
\# mount -t debugfs nodev /sys/kernel/debug
\# ls /sys/kernel/debug
sched_features
mmc0
tracing
bdi
\# cd /sys/kernel/debug/tracing
\# ls
events
set_event
available_events
printk_formats
per_cpu
options
saved_cmdlines
trace_marker
buffer_size_kb
trace_pipe
README
tracing_thresh
tracing_max_latency
current_tracer
available_tracers
trace
tracing_cpumask
trace_options
tracing_enabled
tracing_on
set_ftrace_pid
\# cat available_tracers
function_graph function sched_switch nop
\# cat current_tracer
nop
\# echo sched_switch > current_tracer
\# cat current_tracer
sched_switch
\# cat trace | /data/busybox head -10
\# tracer: sched_switch
\#
\# TASK-PID CPU# TIMESTAMP FUNCTION
\# | | | | |
bash-258 [000] 490.261240: 258:120:R + [000] 4:115:S events/0
bash-258 [000] 490.262087: 258:120:S ==> [000] 45:120:R adbd
adbd-45 [000] 490.262318: 45:120:S ==> [000] 4:115:R events/0
events/0-4 [000] 490.262457: 4:115:R + [000] 43:120:S qemud
events/0-4 [000] 490.262492: 4:115:S ==> [000] 43:120:R qemud
qemud-43 [000] 490.262643: 43:120:R + [000] 109:112:S er$SensorThread
\# echo function > current_tracer *<--- this command occur freeze*
如上所示,某些功能运行良好。但是在我打开跟踪功能时,一个关键功能,系统停机了。
我应该怎么办 ?