5 ms·
Does anyone know what the technical change in this patch is? I think of branch prediction as being something the CPU does internally; where does the operating
by ynik 2y ago
Does anyone know what the technical change in this patch is?
I think of branch prediction as being something the CPU does internally; where does the operating system come into play?
- VyseofArcadia 2y agoIf you have a hot path with a lot of branch mispredictions that can impact performance. Could be as simple as Microsoft found a dumb if inside a tight loop.
- cesarb 2y agoI still haven't seen anywhere reporting what, exactly, was the issue, and why would using the "true Administrator" account on Windows (or using Linux) avoid the issue. My own uninformed guess, given that the "true Administrator" account avoids it, would be some sort of security mitigation, for instance flushing the branch predictor state when entering or exiting the kernel unless the current user is SYSTEM or Administrator.