How can it be, that my current cpu frequency (CPU MHz) for my Intel Core2 Duo T9400M is above max MHz while being on high load?
➜ lscpu
[...]
Model name: Intel(R) Core(TM)2 Duo CPU T9400M @ 2.53GHz
Stepping: 10
CPU MHz: 2606.581
CPU max MHz: 2534.0000
CPU min MHz: 800.0000
[...]
This isn't limited to lscpu: I get similar values out of /proc/cpuinfo:
➜ bat /proc/cpuinfo
[...]
model name : Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz
cpu MHz : 2635.237
[...]
I found this out while looking over the Node.js documentation and finding, that the current speed value of os.cpus() - even in the example of the documentation - is above the maximum CPU speed according to the model:
[
{
model: 'Intel(R) Core(TM) i7 CPU 860 @ 2.80GHz',
speed: 2926,
[...]