Home
last modified time | relevance | path

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

/DragonOS/kernel/src/mm/
H A Dearly_ioremap.rs98 let slot_idx = i + j; in map() localVariable
99 if slot_guard[slot_idx].start_idx.is_some() { in map()
128 let slot_idx = start_slot + i; in map() localVariable
129 slot_guard[slot_idx].start_idx = Some(start_slot as u32); in map()
132 slot_guard[slot_idx].size = map_size as u32; in map()
133 slot_guard[slot_idx].phys = phys; in map()
161 for slot_idx in 0..Self::SLOT_CNT { in unmap()
162 let slot = &mut slot_guard[slot_idx]; in unmap()
164 if start_idx == slot_idx as u32 { in unmap()
169 idx = Some(slot_idx); in unmap()
[all …]