我有兴趣为 Android 开发 CPU 调控器。
我对 Android 应用程序开发相当熟悉,但我对内核开发一无所知。
我找到了几本关于 Linux 内核开发的书,但没有一本是关于调控器的。
谁能指导我如何开始?
Take a look at the kernel documentation for governors. To develop a governor you might need to take a look at cpu frequency too, you'll find it under Documentation/cpu-freq/ directory. Above them all, the most important thing is to read the kernel code, you'll find them under drivers/cpufreq/ directory.
Hope this will help. Happy hacking!