aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_read.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/syscall/actions/sys_read.c')
-rw-r--r--src/kernel/syscall/actions/sys_read.c21
1 files changed, 3 insertions, 18 deletions
diff --git a/src/kernel/syscall/actions/sys_read.c b/src/kernel/syscall/actions/sys_read.c
index 8931ede..492e5fd 100644
--- a/src/kernel/syscall/actions/sys_read.c
+++ b/src/kernel/syscall/actions/sys_read.c
@@ -1,22 +1,7 @@
#include <stdint.h>
-#include <kernel/fs/vfs.h>
-#include <kernel/fs/ext2.h>
-#include <kernel/lib/stdlib.h>
-#include <kernel/memory/alloc.h>
+#include <kernel/fs/fs.h>
-uint32_t sys_read(char *path, uint32_t offset, uint32_t count, char *buf)
+uint32_t sys_read(char *path, uint32_t offset, uint32_t count, uint8_t *buf)
{
- struct fs_node *node = (struct fs_node *)umalloc(sizeof(struct fs_node));
- strcpy(node->name, path);
- fs_open(node);
- if (node->inode != 0) {
- uint32_t size = ((struct ext2_file *)node->impl)->inode.size;
- fs_read(node, 0, size, buf);
- buf[size - 1] = '\0';
- fs_close(node);
- return size;
- } else {
- fs_close(node);
- return -1;
- }
+ return read(path, offset, count, buf);
} \ No newline at end of file