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
The system becomes lag after turning on ept. CPU i9-13980HX with 32GB memory and I set ept_pd_count = 512;
after I splited the first 2mb physical memory into small page, this problem seems not to appear, maybe it's related to MMIO.
I simply add get_ept_pte(ept, 0, true); at prepare_ept(vcpu_ept_data& ept) or reconstruct the first 2mb large page to small page.
get_ept_pte(ept, 0, true);
The text was updated successfully, but these errors were encountered:
Thats actually pretty interesting, thanks. I have something similar on my TODO list already, but haven't gotten around to implementing it yet... https://github.com/jonomango/hv/blob/main/hv/ept.cpp#L42-L44.
Sorry, something went wrong.
No branches or pull requests
The system becomes lag after turning on ept.
CPU i9-13980HX with 32GB memory and I set ept_pd_count = 512;
after I splited the first 2mb physical memory into small page, this problem seems not to appear, maybe it's related to MMIO.
I simply add
get_ept_pte(ept, 0, true);
atprepare_ept(vcpu_ept_data& ept)
or reconstruct the first 2mb large page to small page.
The text was updated successfully, but these errors were encountered: