File: TODO

package info (click to toggle)
linux 6.19.6-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,760,712 kB
  • sloc: ansic: 27,010,185; asm: 273,400; sh: 151,347; python: 81,280; makefile: 58,564; perl: 34,311; xml: 21,064; cpp: 5,986; yacc: 4,841; lex: 2,901; awk: 1,707; sed: 30; ruby: 25
file content (24 lines) | stat: -rw-r--r-- 1,024 bytes parent folder | download | duplicates (44)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
ToDos sorted by priority:

- Use bitmask functions to parse CPU topology more robust
  (current implementation has issues on AMD)
- Try to read out boost states and frequencies on Intel
- Somewhere saw the ability to read power consumption of
  RAM from HW on Intel SandyBridge -> another monitor?
- Add another c1e debug idle monitor
  -> Is by design racy with BIOS, but could be added
     with a --force option and some "be careful" messages
- Add cpu_start()/cpu_stop() callbacks for monitor
  -> This is to move the per_cpu logic from inside the
     monitor to outside it. This can be given higher
     priority in fork_it.
- Fork as many processes as there are CPUs in case the
  per_cpu_schedule flag is set.
  -> Bind forked process to each cpu.
  -> Execute start measures via the forked processes on
     each cpu.
  -> Run test executable in a forked process.
  -> Execute stop measures via the forked processes on
     each cpu.
  This would be ideal as it will not introduce noise in the
  tested executable.