We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MSR_IA32_FEATURE_CONTROL.lock[0bit] = 1 is set in kernel version 5.x by default.
MSR_IA32_FEATURE_CONTROL.lock[0bit] = 1
which means no modification to MSRs is allowed until the system reboot.
the code in ksm.c is invalid anymore.
ksm.c
// ksm.c int __ksm_init_cpu(struct ksm *k) feat_ctl = __readmsr(MSR_IA32_FEATURE_CONTROL); if ((feat_ctl & required_feat_bits) != required_feat_bits) {
The text was updated successfully, but these errors were encountered:
No branches or pull requests
MSR_IA32_FEATURE_CONTROL.lock[0bit] = 1
is set in kernel version 5.x by default.which means no modification to MSRs is allowed until the system reboot.
the code in
ksm.c
is invalid anymore.The text was updated successfully, but these errors were encountered: