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 ACS Test hangs depending on the amount of logging. This issue occurs only in the multi-core test case (cmd_multithread_realm_mp).
diff --git a/rmm/src/lib.rs b/rmm/src/lib.rs --- a/rmm/src/lib.rs +++ b/rmm/src/lib.rs pub unsafe fn start(cpu_id: usize, layout: PlatformMemoryLayout) { + error!("Layout {:X?}", layout); setup_mmu_cfg(layout); diff --git a/rmm/src/mm/translation.rs b/rmm/src/mm/translation.rs --- a/rmm/src/mm/translation.rs +++ b/rmm/src/mm/translation.rs +use core::ptr::addr_of; pub fn get_page_table() -> u64 { + unsafe { + error!( + "HEAP {:X} {:X}", + addr_of!(crate::allocator::HEAP) as *const _ as *const usize as usize, + crate::config::RMM_HEAP_SIZE + ); + }; RMM_PAGE_TABLE.lock().get_base_address() as u64 }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The ACS Test hangs depending on the amount of logging.
This issue occurs only in the multi-core test case (cmd_multithread_realm_mp).
Steps to Reproduce:
Trigger hang
The text was updated successfully, but these errors were encountered: