File: ToDo

package info (click to toggle)
linux 5.10.28-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,142,388 kB
  • sloc: ansic: 19,494,753; asm: 263,677; sh: 73,927; makefile: 44,698; perl: 34,644; python: 32,383; cpp: 6,070; yacc: 4,755; lex: 2,742; awk: 1,214; ruby: 25; sed: 5
file content (24 lines) | stat: -rw-r--r-- 1,024 bytes parent folder | download | duplicates (28)
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.