Conclusions from Energy Aware Scheduling sessions at the latest Kernel Summit
identified a need for tools that would assess power consumption of the system
These tools would be used to prove efficiency of scheduler patches by
comparing power consumption before and after they were applied.

Attached is the proposal for the idlestat tool. The purpose of this patch
is to solicit feedback on tool's features, possible enhancements, etc.

Source code and sample idlestat report are provided for reference.

Please review and provide comments in anticipation of further development.

Regards, Zoran

Zoran Markovic (2):
  power: Add idlestat tool for benchmarking energy-aware scheduler
  sched: Add documentation for idlestat scheduler benchmarking tool

 Documentation/scheduler/idlestat.txt |   79 +++
 tools/power/idlestat/.gitignore      |   50 ++
 tools/power/idlestat/Makefile        |   34 +
 tools/power/idlestat/idlestat.c      | 1229 ++++++++++++++++++++++++++++++++++
 tools/power/idlestat/idlestat.h      |  106 +++
 tools/power/idlestat/list.h          |  588 ++++++++++++++++
 tools/power/idlestat/topology.c      |  503 ++++++++++++++
 tools/power/idlestat/topology.h      |   77 +++
 tools/power/idlestat/trace.c         |   87 +++
 tools/power/idlestat/trace.h         |   43 ++
 tools/power/idlestat/utils.c         |  115 ++++
 tools/power/idlestat/utils.h         |   35 +
 12 files changed, 2946 insertions(+)
 create mode 100644 Documentation/scheduler/idlestat.txt
 create mode 100644 tools/power/idlestat/.gitignore
 create mode 100644 tools/power/idlestat/Makefile
 create mode 100644 tools/power/idlestat/idlestat.c
 create mode 100644 tools/power/idlestat/idlestat.h
 create mode 100644 tools/power/idlestat/list.h
 create mode 100644 tools/power/idlestat/topology.c
 create mode 100644 tools/power/idlestat/topology.h
 create mode 100644 tools/power/idlestat/trace.c
 create mode 100644 tools/power/idlestat/trace.h
 create mode 100644 tools/power/idlestat/utils.c
 create mode 100644 tools/power/idlestat/utils.h

-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to