From 1a8563a05608b5b5e27eada44cf4790926001c68 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 6 May 2020 18:16:47 +0200 Subject: Removed vfs - ext2 ftw! I should really start thinking before I implement features. Now I did and I have quite a good plan for the future of Melvix (hint: not unix/posix-compliant!). --- src/kernel/syscall/actions/sys_read.c | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) (limited to 'src/kernel/syscall/actions/sys_read.c') 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 -#include -#include -#include -#include +#include -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 -- cgit v1.2.3