Prev: [PATCH 4/4] omap: cpu: Power tracking support for cgroup cpuacct
Next: [PATCH 6/7] earlyprintk,vga,kdb: Fix \b and \r for earlyprintk=vga with kdb
From: Mike Chan on 18 May 2010 21:40 Rebased onto linux-next. This patch series introduces cpu frequency and power tracking for cpuacct cgroups. A similar patch set was discussed a while back and it was concluded that due to varying architectures (ppc, x86 with overboot) you cannot account for frequencies and their power consumption generically in sched.c, thus we have platform specific hooks the cpuacct can call into (if available). I've implemented all the necessary hooks for OMAP architecture as an example. For the OMAP folks, I?m not sure what the state of the OPP API in mainline, as most of my original work was based off of the omap-pm branch. Mike Chan (4): scheduler: cpuacct: Enable platform hooks to track cpuusage for CPU frequencies omap: cpu: Implement callbacks for cpu frequency tracking in cpuacct scheduler: cpuacct: Enable platform callbacks for cpuacct power tracking omap: cpu: Power tracking support for cgroup cpuacct Documentation/cgroups/cpuacct.txt | 7 ++ arch/arm/plat-omap/cpu-omap.c | 87 ++++++++++++++++++++++++++++- arch/arm/plat-omap/include/plat/omap-pm.h | 1 + include/linux/cpuacct.h | 43 ++++++++++++++ kernel/sched.c | 69 +++++++++++++++++++++++ 5 files changed, 206 insertions(+), 1 deletions(-) create mode 100644 include/linux/cpuacct.h Signed-off-by: Mike Chan <mike(a)android.com> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |