Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not just write the MSR: instead RDMSR, set bit 0 = 0, then WRMSR #2

Open
xrysf03 opened this issue Jan 5, 2022 · 0 comments
Open

Comments

@xrysf03
Copy link

xrysf03 commented Jan 5, 2022

Note that the single WRMSR is a crude approach.
Optimally, to avoid stomping over other, reserved, flags, you should:

unsigned long data = rdmsr(0x1FC);
data &= 0xFFFFFFFE; // set bit 0 to 0, preserve the rest
wrmsr(0x1FC, data);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant