Home
last modified time | relevance | path

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

/DragonOS/user/apps/test_statfs/
H A Dmain.c6 struct statfs diskInfo; in main()
9 statfs("/bin/about.elf", &diskInfo); in main()
/DragonOS/user/dadk/config/
H A Dtest_statfs_0_1_0.dadk4 "description": "测试statfs",
/DragonOS/user/apps/test_fstatfs/
H A Dmain.c11 struct statfs diskInfo; in main()
/DragonOS/kernel/src/syscall/
H A Dmod.rs778 let statfs = args[1] as *mut PosixStatfs; in handle() localVariable
779 Self::statfs(path, statfs) in handle()
784 let statfs = args[1] as *mut PosixStatfs; in handle() localVariable
785 Self::fstatfs(fd, statfs) in handle()
/DragonOS/kernel/src/filesystem/vfs/
H A Dsyscall.rs1365 pub fn statfs(path: *const u8, user_statfs: *mut PosixStatfs) -> Result<usize, SystemError> { in statfs() method
1380 let statfs = PosixStatfs::from(inode.fs().super_block()); in statfs() localVariable
1381 writer.copy_one_to_user(&statfs, 0)?; in statfs()
1393 let statfs = PosixStatfs::from(file.inode().fs().super_block()); in fstatfs() localVariable
1394 writer.copy_one_to_user(&statfs, 0)?; in fstatfs()
/DragonOS/docs/community/ChangeLog/V0.1.x/
H A DV0.1.10.md46 - feat(fs): 新加结构体POSIXSTATFS与SuperBlock用于处理statfs系统调用 (#667)
746 新加结构体POSIXSTATFS与SuperBlock用于处理statfs系统调用 (#667)
748 * 新加结构体POSIXSTATFS与SuperBlock用于处理statfs系统调用