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
Memtis does not demote pages when the top-tier memory is full. Of course, promotions do not occur.
The text was updated successfully, but these errors were encountered:
meta->idx >= memcg->warm_threshold This condition is always true. It prevents Memtis from adding pages to the demote_pages list.
meta->idx >= memcg->warm_threshold
demote_pages
Here:
memtis/linux/mm/htmm_migrater.c
Line 403 in 50560af
Line 408 in 50560af
Sorry, something went wrong.
Underflow of idx occurs when running liblinear with 8 threads.
idx
liblinear
The idx value, 4294967295, is 0xffffffff (-1). It may indicate pages not mapped. If so, we don't need to fix it.
Let's check whether the cooling mechanism works.
No branches or pull requests
Memtis does not demote pages when the top-tier memory is full. Of course, promotions do not occur.
The text was updated successfully, but these errors were encountered: