Home
last modified time | relevance | path

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

/DragonOS/docs/kernel/filesystem/
H A Dkernfs.md18 …Inode的PrivateData,使得KernFS能够根据Inode获取到其指向的KObject或者sysfs的attribute。并且在创建KernFSInode的时候,为具体的Inode传入…
/DragonOS/docs/kernel/filesystem/vfs/
H A Ddesign.md58 …为挂载点,并对挂载点进行特殊处理。如果发现操作跨越了具体文件系统的边界,MountFS就会将操作转发给下一个文件系统,并执行Inode替换。这个功能的实现,也是通过在普通的Inode结构体外面,套…
/DragonOS/kernel/src/net/socket/
H A Dunix.rs71 (Ok(len), Endpoint::Inode(self.peer_inode.clone())) in read()
89 if let Endpoint::Inode(inode) = endpoint { in connect()
182 (Ok(len), Endpoint::Inode(self.peer_inode.clone())) in read()
200 if let Endpoint::Inode(inode) = endpoint { in connect()
/DragonOS/kernel/src/net/
H A Dmod.rs47 Inode(Option<Arc<SocketInode>>), enumerator
H A Dsyscall.rs85 .connect(Endpoint::Inode(Some(inode1.clone())))?; in socketpair()
88 .connect(Endpoint::Inode(Some(inode0.clone())))?; in socketpair()
606 return Ok(Endpoint::Inode(socketinode.cloned())); in to_endpoint()
/DragonOS/docs/community/ChangeLog/V0.1.x/
H A DV0.1.10.md831 - 将File端点换成Inode端点