提交 7fb8f617 编写于 作者: xqyjlj's avatar xqyjlj 提交者: guo

feat(components/dfs/filesystems/devfs/devfs.c): add statfs support

上级 cd1e0a79
......@@ -29,6 +29,16 @@ int dfs_device_fs_mount(struct dfs_filesystem *fs, unsigned long rwflag, const v
return RT_EOK;
}
int dfs_device_fs_statfs(struct dfs_filesystem *fs, struct statfs *buf)
{
buf->f_bsize = 512;
buf->f_blocks = 2048 * 64; // 64M
buf->f_bfree = buf->f_blocks;
buf->f_bavail = buf->f_bfree;
return RT_EOK;
}
int dfs_device_fs_ioctl(struct dfs_fd *file, int cmd, void *args)
{
rt_err_t result;
......@@ -391,7 +401,7 @@ static const struct dfs_filesystem_ops _device_fs =
dfs_device_fs_mount,
RT_NULL, /*unmount*/
RT_NULL, /*mkfs*/
RT_NULL, /*statfs*/
dfs_device_fs_statfs,
dfs_device_fs_unlink,
dfs_device_fs_stat,
RT_NULL, /*rename*/
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册