Searched refs:LockedRamFSInode (Results 1 – 2 of 2) sorted by relevance
38 pub struct LockedRamFSInode(pub SpinLock<RamFSInode>); struct44 root_inode: Arc<LockedRamFSInode>,56 parent: Weak<LockedRamFSInode>,58 self_ref: Weak<LockedRamFSInode>,60 children: BTreeMap<DName, Arc<LockedRamFSInode>>,137 let root: Arc<LockedRamFSInode> = in new()138 Arc::new(LockedRamFSInode(SpinLock::new(RamFSInode::new()))); in new()172 impl IndexNode for LockedRamFSInode { implementation321 let result: Arc<LockedRamFSInode> = Arc::new(LockedRamFSInode(SpinLock::new(RamFSInode { in create_with_data()357 let other: &LockedRamFSInode = other in link()[all …]
5 use super::ramfs::{LockedRamFSInode, RamFSInode};