Home
last modified time | relevance | path

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

/DragonOS/kernel/src/filesystem/overlayfs/
H A Dentry.rs7 use super::{OvlInode, OvlSuperBlock};
29 pub mnt: Arc<OvlInode>, // 挂载点
H A Dmod.rs88 workdir: Arc<OvlInode>,
89 root_inode: Arc<OvlInode>,
93 pub struct OvlInode { struct
102 impl OvlInode { argument
160 mnt: Arc::new(OvlInode::new( in make_overlayfs()
176 mnt: Arc::new(OvlInode::new(dir.clone(), None, Some(lower_inode))), in make_overlayfs()
185 let workdir = Arc::new(OvlInode::new(mount_data.work_dir.clone(), None, None)); in make_overlayfs()
209 impl OvlInode { implementation
246 if let Some(ovl_inode) = inode.as_any_ref().downcast_ref::<OvlInode>() { in has_whiteout()
255 impl IndexNode for OvlInode { implementation
H A Dcopy_up.rs1 use super::OvlInode;
9 impl OvlInode { implementation