|
Description
|
With current Nevada, under Xen (and presumably earlier CPUs
without frequency management), I get:
supported_frequencies_Hz null
This is causing hald's parsing to crash, as it's expecting
a single frequency, like this:
supported_frequencies_Hz 2600047000
This appears to be due to the PAD putback:
+void
+cpupm_set_supp_freqs(cpu_t *cp, int *speeds, uint_t nspeeds)
+{
+ char *supp_freqs = NULL;
...
+ if (speeds == NULL) {
+ cpu_set_supp_freqs(cp, supp_freqs);
+ return;
+ }
|