Home
last modified time | relevance | path

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

/DragonOS/kernel/src/ipc/
H A Dshm.rs166 let mut cur_phys = PhysPageFrame::new(phys_page.0); in add() localVariable
168 let page = Arc::new(Page::new(true, cur_phys.phys_address())); in add()
170 let paddr = cur_phys.phys_address(); in add()
172 cur_phys = cur_phys.next(); in add()
317 let mut cur_phys = PhysPageFrame::new(kernel_shm.shm_start_paddr); in ipc_rmid() localVariable
327 let page = page_manager_guard.get_unwrap(&cur_phys.phys_address()); in ipc_rmid()
330 cur_phys = cur_phys.next(); in ipc_rmid()
338 let paddr = cur_phys.phys_address(); in ipc_rmid()
344 cur_phys = cur_phys.next(); in ipc_rmid()
441 let mut cur_phys = PhysPageFrame::new(self.shm_start_paddr); in map_count() localVariable
[all …]
/DragonOS/kernel/src/perf/
H A Dbpf.rs238 let mut cur_phys = PhysPageFrame::new(phy_addr); in do_mmap() localVariable
240 let page = Arc::new(Page::new(true, cur_phys.phys_address())); in do_mmap()
241 let paddr = cur_phys.phys_address(); in do_mmap()
244 cur_phys = cur_phys.next(); in do_mmap()
268 let mut cur_phys = PhysPageFrame::new(phy_addr); in drop() localVariable
270 page_manager_guard.remove_page(&cur_phys.phys_address()); in drop()
271 cur_phys = cur_phys.next(); in drop()