diff options
author | Marvin Borner | 2021-01-07 22:06:24 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-07 22:06:24 +0100 |
commit | 52920b03e996cf60b2665772837bfa0f1661a430 (patch) | |
tree | c1fa3e96cbcc657c7235237abbc860c8bc2c4350 /kernel/inc | |
parent | 80af2772db61a1ae52caf1194dd955d6263441f2 (diff) |
New read parameters
Diffstat (limited to 'kernel/inc')
-rw-r--r-- | kernel/inc/fs.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kernel/inc/fs.h b/kernel/inc/fs.h index 8af28c4..7831603 100644 --- a/kernel/inc/fs.h +++ b/kernel/inc/fs.h @@ -14,8 +14,8 @@ struct device { const char *name; int type; // TODO: Block, char device struct vfs *vfs; - u8 (*read)(u8 *buf, u32 offset, u32 count, struct device *dev); - u8 (*write)(u8 *buf, u32 offset, u32 count, struct device *dev); + u32 (*read)(void *buf, u32 offset, u32 count, struct device *dev); + u32 (*write)(void *buf, u32 offset, u32 count, struct device *dev); }; void device_install(void); @@ -29,8 +29,8 @@ enum vfs_type { VFS_DEVFS, VFS_TMPFS, VFS_PROCFS, VFS_EXT2 }; struct vfs { enum vfs_type type; int flags; - //u8 (*read)(char *, char *, struct device *, void *); - //u8 (*mount)(struct device *, void *); + u32 (*read)(char *path, void *buf, u32 offset, u32 count, struct device *dev); + u32 (*write)(char *path, void *buf, u32 offset, u32 count, struct device *dev); }; struct mount_info { @@ -40,7 +40,7 @@ struct mount_info { void vfs_install(void); -void *vfs_read(char *path); +u32 vfs_read(char *path, void *buf, u32 offset, u32 count); u32 vfs_stat(char *path); /** @@ -134,7 +134,7 @@ struct ext2_file { u32 curr_block_pos; }; -void *ext2_read(char *path); +u32 ext2_read(char *path, void *buf, u32 offset, u32 count, struct device *dev); u32 ext2_stat(char *path); #endif |