Home
last modified time | relevance | path

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

/DragonOS/kernel/src/filesystem/ramfs/
H A Dmod.rs38 pub struct LockedRamFSInode(pub SpinLock<RamFSInode>); struct
44 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 { implementation
321 let result: Arc<LockedRamFSInode> = Arc::new(LockedRamFSInode(SpinLock::new(RamFSInode { in create_with_data()
357 let other: &LockedRamFSInode = other in link()
[all …]
/DragonOS/kernel/src/filesystem/overlayfs/
H A Dmod.rs5 use super::ramfs::{LockedRamFSInode, RamFSInode};