Home
last modified time | relevance | path

Searched refs:GUEST_PAGE_SIZE (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Virtualization/pvmfw/src/
Dmain.rs39 use crate::helpers::GUEST_PAGE_SIZE;
62 const NEXT_BCC_SIZE: usize = GUEST_PAGE_SIZE;
119 let next_bcc = heap::aligned_boxed_slice(NEXT_BCC_SIZE, GUEST_PAGE_SIZE).ok_or_else(|| { in main()
Dhelpers.rs19 pub const GUEST_PAGE_SIZE: usize = SIZE_4KB; constant
Dfdt.rs19 use crate::helpers::GUEST_PAGE_SIZE;
169 if size % GUEST_PAGE_SIZE != 0 { in read_and_validate_memory_range()
170 error!("Memory size {:#x} is not a multiple of page size {:#x}", size, GUEST_PAGE_SIZE); in read_and_validate_memory_range()
785 if size == 0 || (size % GUEST_PAGE_SIZE) != 0 { in validate_swiotlb_info()
790 if let Some(align) = align.filter(|&a| a % GUEST_PAGE_SIZE != 0) { in validate_swiotlb_info()