CVE-2026-72143 in the Intel Speed Select Technology (ISST) driver carries a CVSS 7.1 that fundamentally misrepresents the risk. This is not a crash or memory corruption bug—it is a logical asymmetry in the driver state machine that causes persistent, silent performance degradation across non-primary power domains after every resume from suspend.

During suspend, the driver explicitly iterates across all power domains and saves their SST-PP (Speed Select Technology - Performance Profile) control offsets. During resume, the restoration path references a pointer hardcoded to domain 0 only. This means every non-zero power domain carries stale or uninitialized SST-PP configuration after resume, with no error path, warning, or kernel log entry to flag the mismatch.

SST-PP controls directly influence CPU frequency ceilings, uncore frequency, and power allocation budgets per domain. On server-class or workstation systems relying on ISST for performance differentiation across cores—an enterprise configuration—resuming with domain-0 settings forced onto all domains either throttles workloads below their provisioned ceiling or allows thermal/power violations in domains that should be constrained. The symptom space is silent and workload-dependent: you will not see a crash, an oops, or any log message. You will see a system that quietly underperforms since the last resume, with no forensic trail unless you know to compare ISST register state against expected values.

The fix is a one-line variable swap, which is itself the most disturbing signal. The asymmetry was invisible to code review because the suspend path looks correct (it enumerates all domains), creating a false sense of coverage. Reviewers see domain enumeration on save and assume symmetry on restore. No linter catches this; no static analyzer catches this. Only domain-specific testing on multi-domain hardware catches it, and that testing apparently never happened.

You should verify whether your multi-domain ISST hardware exhibits this issue by comparing SST-PP register values across domains before suspend and after resume—if domain 0 values appear in all domains post-resume, you are affected. Beyond this specific CVE, treat any suspend/resume pair in platform drivers where one path enumerates and the other hardcodes as a high-priority audit target. This is a recognized pattern across PCI, cpufreq, and device power management in the kernel—each instance gets patched in isolation while siblings remain undiscovered.