Home
last modified time | relevance | path

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

/DragonOS/kernel/src/mm/
H A Dfault.rs311 let cow_page_phys = mapper.allocator_mut().allocate_one(); in do_cow_fault() localVariable
312 if cow_page_phys.is_none() { in do_cow_fault()
315 let cow_page_phys = cow_page_phys.unwrap(); in do_cow_fault() localVariable
317 let cow_page = Arc::new(Page::new(false, cow_page_phys)); in do_cow_fault()
321 let new_frame = MMArch::phys_2_virt(cow_page_phys).unwrap(); in do_cow_fault()
332 page_manager_guard.insert(cow_page_phys, &cow_page); in do_cow_fault()